Skip to content

Commit 5ca774e

Browse files
committed
Analizando el codigo de Teff
1 parent 4774124 commit 5ca774e

File tree

4 files changed

+245
-0
lines changed

4 files changed

+245
-0
lines changed

.gitignore

Lines changed: 245 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/macos,windows,linux,visualstudiocode,node
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,linux,visualstudiocode,node
4+
5+
### Linux ###
6+
*~
7+
8+
# temporary files which can be created if a process still has a handle open of a deleted file
9+
.fuse_hidden*
10+
11+
# KDE directory preferences
12+
.directory
13+
14+
# Linux trash folder which might appear on any partition or disk
15+
.Trash-*
16+
17+
# .nfs files are created when an open file is removed but is still being accessed
18+
.nfs*
19+
20+
### macOS ###
21+
# General
22+
.DS_Store
23+
.AppleDouble
24+
.LSOverride
25+
26+
# Icon must end with two \r
27+
Icon
28+
29+
30+
# Thumbnails
31+
._*
32+
33+
# Files that might appear in the root of a volume
34+
.DocumentRevisions-V100
35+
.fseventsd
36+
.Spotlight-V100
37+
.TemporaryItems
38+
.Trashes
39+
.VolumeIcon.icns
40+
.com.apple.timemachine.donotpresent
41+
42+
# Directories potentially created on remote AFP share
43+
.AppleDB
44+
.AppleDesktop
45+
Network Trash Folder
46+
Temporary Items
47+
.apdisk
48+
49+
### macOS Patch ###
50+
# iCloud generated files
51+
*.icloud
52+
53+
### Node ###
54+
# Logs
55+
logs
56+
*.log
57+
npm-debug.log*
58+
yarn-debug.log*
59+
yarn-error.log*
60+
lerna-debug.log*
61+
.pnpm-debug.log*
62+
63+
# Diagnostic reports (https://nodejs.org/api/report.html)
64+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
65+
66+
# Runtime data
67+
pids
68+
*.pid
69+
*.seed
70+
*.pid.lock
71+
72+
# Directory for instrumented libs generated by jscoverage/JSCover
73+
lib-cov
74+
75+
# Coverage directory used by tools like istanbul
76+
coverage
77+
*.lcov
78+
79+
# nyc test coverage
80+
.nyc_output
81+
82+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
83+
.grunt
84+
85+
# Bower dependency directory (https://bower.io/)
86+
bower_components
87+
88+
# node-waf configuration
89+
.lock-wscript
90+
91+
# Compiled binary addons (https://nodejs.org/api/addons.html)
92+
build/Release
93+
94+
# Dependency directories
95+
node_modules/
96+
jspm_packages/
97+
98+
# Snowpack dependency directory (https://snowpack.dev/)
99+
web_modules/
100+
101+
# TypeScript cache
102+
*.tsbuildinfo
103+
104+
# Optional npm cache directory
105+
.npm
106+
107+
# Optional eslint cache
108+
.eslintcache
109+
110+
# Optional stylelint cache
111+
.stylelintcache
112+
113+
# Microbundle cache
114+
.rpt2_cache/
115+
.rts2_cache_cjs/
116+
.rts2_cache_es/
117+
.rts2_cache_umd/
118+
119+
# Optional REPL history
120+
.node_repl_history
121+
122+
# Output of 'npm pack'
123+
*.tgz
124+
125+
# Yarn Integrity file
126+
.yarn-integrity
127+
128+
# dotenv environment variable files
129+
.env
130+
.env.development.local
131+
.env.test.local
132+
.env.production.local
133+
.env.local
134+
135+
# parcel-bundler cache (https://parceljs.org/)
136+
.cache
137+
.parcel-cache
138+
139+
# Next.js build output
140+
.next
141+
out
142+
143+
# Nuxt.js build / generate output
144+
.nuxt
145+
dist
146+
147+
# Gatsby files
148+
.cache/
149+
# Comment in the public line in if your project uses Gatsby and not Next.js
150+
# https://nextjs.org/blog/next-9-1#public-directory-support
151+
# public
152+
153+
# vuepress build output
154+
.vuepress/dist
155+
156+
# vuepress v2.x temp and cache directory
157+
.temp
158+
159+
# Docusaurus cache and generated files
160+
.docusaurus
161+
162+
# Serverless directories
163+
.serverless/
164+
165+
# FuseBox cache
166+
.fusebox/
167+
168+
# DynamoDB Local files
169+
.dynamodb/
170+
171+
# TernJS port file
172+
.tern-port
173+
174+
# Stores VSCode versions used for testing VSCode extensions
175+
.vscode-test
176+
177+
# yarn v2
178+
.yarn/cache
179+
.yarn/unplugged
180+
.yarn/build-state.yml
181+
.yarn/install-state.gz
182+
.pnp.*
183+
184+
### Node Patch ###
185+
# Serverless Webpack directories
186+
.webpack/
187+
188+
# Optional stylelint cache
189+
190+
# SvelteKit build / generate output
191+
.svelte-kit
192+
193+
### VisualStudioCode ###
194+
.vscode
195+
.vscode/*
196+
!.vscode/settings.json
197+
!.vscode/tasks.json
198+
!.vscode/launch.json
199+
!.vscode/extensions.json
200+
!.vscode/*.code-snippets
201+
202+
# Local History for Visual Studio Code
203+
.history/
204+
205+
# Built Visual Studio Code Extensions
206+
*.vsix
207+
208+
### VisualStudioCode Patch ###
209+
# Ignore all local history of files
210+
.history
211+
.ionide
212+
213+
# Support for Project snippet scope
214+
.vscode/*.code-snippets
215+
216+
# Ignore code-workspaces
217+
*.code-workspace
218+
219+
### Windows ###
220+
# Windows thumbnail cache files
221+
Thumbs.db
222+
Thumbs.db:encryptable
223+
ehthumbs.db
224+
ehthumbs_vista.db
225+
226+
# Dump file
227+
*.stackdump
228+
229+
# Folder config file
230+
[Dd]esktop.ini
231+
232+
# Recycle Bin used on file shares
233+
$RECYCLE.BIN/
234+
235+
# Windows Installer files
236+
*.cab
237+
*.msi
238+
*.msix
239+
*.msm
240+
*.msp
241+
242+
# Windows shortcuts
243+
*.lnk
244+
245+
# End of https://www.toptal.com/developers/gitignore/api/macos,windows,linux,visualstudiocode,node

index.html

Whitespace-only changes.

main.js

Whitespace-only changes.

styles.css

Whitespace-only changes.

0 commit comments

Comments
 (0)