├── .gitignore
├── CSS.textexpander
├── Characters.textexpander
├── Filesystem.textexpander
├── HTML Type Entities.textexpander
├── HTML.textexpander
├── JavaScript.textexpander
├── Markdown.textexpander
├── README.md
└── Utilities.textexpander
/.gitignore:
--------------------------------------------------------------------------------
1 | # OS or Editor Files
2 | .DS_Store
3 | ._*
4 | .cache
5 | .project
6 | .settings
7 | .tmproj
8 | *.sublime-project
9 | *.sublime-workspace
10 |
11 | # Folders to ignore
12 | intermediate
13 | publish
14 | .idea
--------------------------------------------------------------------------------
/CSS.textexpander:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | groupInfo
6 |
7 | expandAfterMode
8 | 0
9 | groupName
10 | CSS
11 |
12 | snippetsTE2
13 |
14 |
15 | abbreviation
16 | ,cssligatures
17 | abbreviationMode
18 | 0
19 | creationDate
20 | 2013-10-05T23:55:10Z
21 | label
22 | OpenType Ligatures
23 | modificationDate
24 | 2013-10-05T23:55:20Z
25 | plainText
26 | -moz-font-feature-settings: "liga=1, dlig=1";
27 | -ms-font-feature-settings: "liga", "dlig";
28 | -webkit-font-feature-settings: "liga", "dlig";
29 | -o-font-feature-settings: "liga", "dlig";
30 | font-feature-settings: "liga", "dlig";
31 | snippetType
32 | 0
33 | uuidString
34 | B7B58C36-904D-40FA-9EFC-9845A38CA4B6
35 |
36 |
37 | abbreviation
38 | ,csshyphen
39 | abbreviationMode
40 | 0
41 | creationDate
42 | 2013-10-05T23:54:26Z
43 | label
44 | Cross Browser Hyphen Support
45 | modificationDate
46 | 2013-10-05T23:55:00Z
47 | plainText
48 | -ms-word-break: break-all;
49 | word-break: break-all;
50 | // Non standard for webkit
51 | word-break: break-word;
52 | -webkit-hyphens: auto;
53 | -moz-hyphens: auto;
54 | hyphens: auto;
55 | -webkit-hyphenate-before: 2;
56 | -webkit-hyphenate-after: 3;
57 | hyphenate-lines: 3;
58 | snippetType
59 | 0
60 | uuidString
61 | 60D24491-A33B-46A2-82E7-D17EDA49346F
62 |
63 |
64 | abbreviation
65 |
66 | abbreviationMode
67 | 0
68 | creationDate
69 | 2013-04-09T02:23:52Z
70 | label
71 | Ampersand Font Stack
72 | modificationDate
73 | 2013-04-09T02:24:18Z
74 | plainText
75 | @font-face {
76 | font-family: 'Ampersand';
77 | src: local('Baskerville'), local('Palatino'), local('Book Antiqua');
78 | unicode-range: U+26;
79 | }
80 | @font-face {
81 | /* Ampersand fallback font */
82 | font-family: 'Ampersand';
83 | src: local('Arial');
84 | unicode-range: U+270C;
85 | }
86 | snippetType
87 | 0
88 | uuidString
89 | 0F589080-CC70-402C-9733-55516BDB9E5A
90 |
91 |
92 | abbreviation
93 | ,,cssreset
94 | abbreviationMode
95 | 0
96 | creationDate
97 | 2011-06-08T23:29:33Z
98 | label
99 | CSS Reset Compressed
100 | modificationDate
101 | 2011-06-08T23:29:50Z
102 | plainText
103 | html,body,div,span,object,iframe,
104 | h1,h2,h3,h4,h5,h6,p,blockquote,pre,
105 | a,abbr,address,cite,code,
106 | del,dfn,em,img,ins,kbd,q,s,samp,
107 | small,strike,strong,sub,sup,var,
108 | b,u,i,
109 | dl,dt,dd,ol,ul,li,
110 | fieldset,form,label,legend,
111 | table,caption,tbody,tfoot,thead,tr,th,td,
112 | article,aside,canvas,details,figcaption,figure,
113 | footer,header,hgroup,menu,nav,section,summary,
114 | time,mark,audio,video{background:transparent;border:0;font-size:100%;margin:0;padding:0;outline:0;vertical-align:baseline;}
115 | article,aside,details,figcaption,figure,
116 | footer,header,hgroup,menu,nav,section{display:block;}
117 | nav ul{list-style:none;}
118 | body{line-height:1;}
119 | ol,ul{list-style:none;}
120 | blockquote,q{quotes:none;}
121 | ins{text-decoration:none;}
122 | del{text-decoration:line-through;}
123 | table{border-collapse:collapse;border-spacing:0;}
124 | input,select{vertical-align:middle;}
125 | hr{border:0;border-top:1px solid #ccc;display:block;height:1px;margin:1em 0;padding:0;}
126 | blockquote:before,blockquote:after,
127 | q:before,q:after{content:'';content:none;}
128 |
129 |
130 | snippetType
131 | 0
132 | uuidString
133 | 4A325EDC-4F21-4668-AA53-44663503CF5E
134 |
135 |
136 | abbreviation
137 | ,rgba
138 | abbreviationMode
139 | 0
140 | creationDate
141 | 2011-04-19T15:54:41Z
142 | label
143 | RGBa
144 | modificationDate
145 | 2011-04-19T15:56:06Z
146 | plainText
147 | rgba(%fill:red%, %fill:green%, %fill:blue%, %fill:alpha%)
148 | snippetType
149 | 0
150 | uuidString
151 | C74BA682-D9FB-49F4-BB48-57D2251D9B2F
152 |
153 |
154 | abbreviation
155 | ,hsla
156 | abbreviationMode
157 | 0
158 | creationDate
159 | 2011-04-19T15:52:00Z
160 | label
161 | HSLa
162 | modificationDate
163 | 2011-04-19T15:52:00Z
164 | plainText
165 | hsla(%fill:Hue%, %fill:Saturation%%, %fill:Lightness%%, %fill:alpha%)
166 | snippetType
167 | 0
168 | uuidString
169 | 00568D44-7097-40B4-95E4-8DD0A4B3993E
170 |
171 |
172 | abbreviation
173 | ,nodrag
174 | abbreviationMode
175 | 0
176 | creationDate
177 | 2011-12-09T08:43:48Z
178 | label
179 | CSS No Drag
180 | modificationDate
181 | 2011-12-09T08:44:01Z
182 | plainText
183 | -webkit-user-drag: none;
184 | -moz-user-drag: -moz-none;
185 | user-drag: none;
186 | snippetType
187 | 0
188 | uuidString
189 | C8B81F6E-B1D9-446A-87FC-89B640230781
190 |
191 |
192 | abbreviation
193 | ,noselect
194 | abbreviationMode
195 | 0
196 | creationDate
197 | 2011-12-09T08:43:07Z
198 | label
199 | CSS Select None
200 | modificationDate
201 | 2011-12-09T08:43:23Z
202 | plainText
203 | -webkit-user-select: none;
204 | -moz-user-select: -moz-none;
205 | user-select: none;
206 | snippetType
207 | 0
208 | uuidString
209 | 8F40E9CF-D6A9-4CDC-98A0-23FDD7EC7900
210 |
211 |
212 | abbreviation
213 | !imp
214 | abbreviationMode
215 | 0
216 | creationDate
217 | 2012-05-02T20:16:48Z
218 | label
219 | !important
220 | modificationDate
221 | 2012-05-02T20:16:57Z
222 | plainText
223 | !important
224 | snippetType
225 | 0
226 | uuidString
227 | 3A7B955A-9F48-446E-9642-E4F5E2D7EEA0
228 |
229 |
230 | abbreviation
231 | ,font-face
232 | abbreviationMode
233 | 0
234 | creationDate
235 | 2011-02-04T05:03:10Z
236 | label
237 | @font-face
238 | modificationDate
239 | 2012-11-11T21:56:14Z
240 | plainText
241 | @font-face {
242 | font-family: 'MyFontFamily';
243 | src: url('%fill:fontname%.eot#') format('eot'),
244 | url('%fill:fontname%.woff') format('woff'),
245 | url('%fill:fontname%.ttf') format('truetype'),
246 | url('%fill:fontname%.svg#%fill:svgFontName%') format('svg');
247 | }
248 | snippetType
249 | 0
250 | uuidString
251 | BA2F5F4A-4280-4BBC-89B5-B19458761AA9
252 |
253 |
254 | abbreviation
255 | ,ff-impact
256 | abbreviationMode
257 | 0
258 | creationDate
259 | 2009-12-21T02:34:07Z
260 | label
261 | Impact Font Family
262 | modificationDate
263 | 2009-12-21T02:34:07Z
264 | plainText
265 | font-family: Impact, "Arial Black", sans-serif;
266 | snippetType
267 | 0
268 | uuidString
269 | 0347142B-BBC5-4FA5-B577-39667238B1BC
270 |
271 |
272 | abbreviation
273 | ,ff-times
274 | abbreviationMode
275 | 0
276 | creationDate
277 | 2009-12-21T02:33:25Z
278 | label
279 | Times Font Family
280 | modificationDate
281 | 2009-12-21T02:50:33Z
282 | plainText
283 | font-family: Times, "Times New Roman", serif;
284 | snippetType
285 | 0
286 | uuidString
287 | FC88614D-4D19-4F6D-BD21-F3CCF6D1C8D1
288 |
289 |
290 | abbreviation
291 | ,ff-lucida
292 | abbreviationMode
293 | 0
294 | creationDate
295 | 2009-12-21T02:33:49Z
296 | label
297 | Lucida Font Family
298 | modificationDate
299 | 2009-12-21T02:34:02Z
300 | plainText
301 | font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
302 | snippetType
303 | 0
304 | uuidString
305 | 20587A38-55C4-4FBC-9111-7EB9DBDD2D97
306 |
307 |
308 | abbreviation
309 | ,clearfix
310 | abbreviationMode
311 | 0
312 | creationDate
313 | 2009-12-21T02:35:29Z
314 | label
315 | ClearFix
316 | modificationDate
317 | 2011-07-19T23:07:59Z
318 | plainText
319 | .cf:before, .cf:after { content:""; display: block; overflow: hidden; }
320 | .cf:after { clear: both; }
321 | .cf { zoom: 1; }
322 | snippetType
323 | 0
324 | uuidString
325 | 756E43D0-04A9-4C44-9D44-751A07807235
326 |
327 |
328 | abbreviation
329 | ,ff-helvetica
330 | abbreviationMode
331 | 0
332 | creationDate
333 | 2009-12-21T02:34:25Z
334 | label
335 | Helvetica Font Family
336 | modificationDate
337 | 2012-05-20T20:27:34Z
338 | plainText
339 | font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
340 | font-weight: 300;
341 | snippetType
342 | 0
343 | uuidString
344 | 757CA644-4BF1-462A-A15D-9EDFFD891348
345 |
346 |
347 | abbreviation
348 | ,csstitle
349 | abbreviationMode
350 | 0
351 | creationDate
352 | 2009-12-21T02:31:54Z
353 | label
354 | Category Title
355 | modificationDate
356 | 2009-12-21T02:31:54Z
357 | plainText
358 | /* %|
359 | ----------------------------------------------------------- */
360 | snippetType
361 | 0
362 | uuidString
363 | 1225E4B2-0D0F-4C98-AB6C-3CEE349D787E
364 |
365 |
366 |
367 |
368 |
--------------------------------------------------------------------------------
/Characters.textexpander:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | groupInfo
6 |
7 | expandAfterMode
8 | 0
9 | groupName
10 | Characters
11 |
12 | snippetsTE2
13 |
14 |
15 | abbreviation
16 | ,shrug
17 | abbreviationMode
18 | 0
19 | creationDate
20 | 2012-10-02T23:34:08Z
21 | label
22 | Shrug
23 | modificationDate
24 | 2012-10-02T23:34:08Z
25 | plainText
26 | ¯\_(ツ)_/¯
27 | snippetType
28 | 0
29 | uuidString
30 | 9AC1258A-91C7-42CD-A5C5-10CFB2D2CDBF
31 |
32 |
33 | abbreviation
34 | ,unfliptable
35 | abbreviationMode
36 | 0
37 | creationDate
38 | 2012-09-28T19:24:51Z
39 | label
40 | Set Table Down
41 | modificationDate
42 | 2012-09-28T19:25:03Z
43 | plainText
44 | ┬──┬◡o(° -°`` )
45 | snippetType
46 | 0
47 | uuidString
48 | 3357335E-E59A-40D1-8895-29A45FEDFA87
49 |
50 |
51 | abbreviation
52 | ,wideyed
53 | abbreviationMode
54 | 0
55 | creationDate
56 | 2012-09-27T06:13:08Z
57 | label
58 | Wide Eyed
59 | modificationDate
60 | 2012-09-27T06:13:21Z
61 | plainText
62 | ๏_๏
63 | snippetType
64 | 0
65 | uuidString
66 | EE574658-DF9B-4C4D-A220-6E018D8E531D
67 |
68 |
69 | abbreviation
70 | ,fliptable
71 | abbreviationMode
72 | 0
73 | creationDate
74 | 2011-10-16T21:26:38Z
75 | label
76 | Flip Table
77 | modificationDate
78 | 2011-10-16T21:26:50Z
79 | plainText
80 | (╯°□°)╯︵ ┻━┻
81 | snippetType
82 | 0
83 | uuidString
84 | C939058E-CB7E-4960-A228-B16946BBC364
85 |
86 |
87 | abbreviation
88 | ,rface
89 | abbreviationMode
90 | 0
91 | creationDate
92 | 2011-10-16T21:25:38Z
93 | label
94 | Disapproval
95 | modificationDate
96 | 2011-10-16T21:26:00Z
97 | plainText
98 | ಠ_ಠ
99 | snippetType
100 | 0
101 | uuidString
102 | 8B3D4CE7-4A75-43C1-9695-03B627715C94
103 |
104 |
105 | abbreviation
106 | ,?
107 | abbreviationMode
108 | 0
109 | creationDate
110 | 2012-05-25T00:14:00Z
111 | label
112 | Irony Punctuation
113 | modificationDate
114 | 2012-05-25T00:14:10Z
115 | plainText
116 | ⸮
117 | snippetType
118 | 0
119 | uuidString
120 | 73ED4547-B093-4B66-92CD-A823AC96996C
121 |
122 |
123 | abbreviation
124 | ,,enter
125 | abbreviationMode
126 | 0
127 | creationDate
128 | 2011-03-22T18:16:18Z
129 | label
130 |
131 | modificationDate
132 | 2011-03-22T18:16:30Z
133 | plainText
134 | ↩
135 | snippetType
136 | 0
137 | uuidString
138 | 6F7764C4-4958-4429-9E5F-13416AC81975
139 |
140 |
141 | abbreviation
142 | ,,end
143 | abbreviationMode
144 | 0
145 | creationDate
146 | 2011-03-22T18:16:00Z
147 | label
148 |
149 | modificationDate
150 | 2011-03-22T18:16:05Z
151 | plainText
152 | ↘
153 | snippetType
154 | 0
155 | uuidString
156 | 8B96CB4C-33E8-446E-B5CC-A17AA6BD58C6
157 |
158 |
159 | abbreviation
160 | ,,home
161 | abbreviationMode
162 | 0
163 | creationDate
164 | 2011-03-22T18:15:48Z
165 | label
166 |
167 | modificationDate
168 | 2011-03-22T18:15:55Z
169 | plainText
170 | ↖
171 | snippetType
172 | 0
173 | uuidString
174 | 9471792C-D98F-4DB7-974A-55D77A5AB8AE
175 |
176 |
177 | abbreviation
178 | ,,esc
179 | abbreviationMode
180 | 0
181 | creationDate
182 | 2011-03-22T18:15:33Z
183 | label
184 |
185 | modificationDate
186 | 2011-03-22T18:15:33Z
187 | plainText
188 | ⎋
189 | snippetType
190 | 0
191 | uuidString
192 | 130BA97D-7417-433B-BFED-A8F03E91FEB6
193 |
194 |
195 | abbreviation
196 | ,,del
197 | abbreviationMode
198 | 0
199 | creationDate
200 | 2011-03-22T18:15:10Z
201 | label
202 |
203 | modificationDate
204 | 2011-03-22T18:15:22Z
205 | plainText
206 | ⌫
207 | snippetType
208 | 0
209 | uuidString
210 | 18937368-1CC8-4D9E-86CD-79CC5F1ED112
211 |
212 |
213 | abbreviation
214 | ,,tab
215 | abbreviationMode
216 | 0
217 | creationDate
218 | 2011-03-22T18:04:23Z
219 | label
220 |
221 | modificationDate
222 | 2011-03-22T18:04:51Z
223 | plainText
224 | ⇥
225 | snippetType
226 | 0
227 | uuidString
228 | B2920B0A-800A-4B3E-BBCD-CD12FB1CC073
229 |
230 |
231 | abbreviation
232 | ,,ctrl
233 | abbreviationMode
234 | 0
235 | creationDate
236 | 2009-10-28T10:45:51Z
237 | label
238 | ^
239 | modificationDate
240 | 2011-03-17T10:00:07Z
241 | plainText
242 | ^
243 | snippetType
244 | 0
245 | uuidString
246 | 80895D7B-6D20-4F4F-B58E-193B921465B2
247 |
248 |
249 | abbreviation
250 | ,,line
251 | abbreviationMode
252 | 0
253 | creationDate
254 | 2011-03-20T16:48:33Z
255 | label
256 |
257 | modificationDate
258 | 2011-03-20T16:49:03Z
259 | plainText
260 | ⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯
261 | snippetType
262 | 0
263 | uuidString
264 | 53F88713-2CD3-47D4-AD1A-0FED8B8742EA
265 |
266 |
267 | abbreviation
268 | ,,fatright
269 | abbreviationMode
270 | 0
271 | creationDate
272 | 2011-03-20T16:46:16Z
273 | label
274 |
275 | modificationDate
276 | 2011-03-20T16:46:16Z
277 | plainText
278 | ➜
279 | snippetType
280 | 0
281 | uuidString
282 | 96F1E20C-71D1-4199-9E66-AB7A56FF2901
283 |
284 |
285 | abbreviation
286 | ,,starc
287 | abbreviationMode
288 | 0
289 | creationDate
290 | 2011-03-20T16:45:48Z
291 | label
292 |
293 | modificationDate
294 | 2011-03-20T16:45:48Z
295 | plainText
296 | ✪
297 | snippetType
298 | 0
299 | uuidString
300 | 4C3EE011-309A-49EE-BA3D-D50F034EEF7D
301 |
302 |
303 | abbreviation
304 | ,,starw
305 | abbreviationMode
306 | 0
307 | creationDate
308 | 2011-03-20T16:45:36Z
309 | label
310 |
311 | modificationDate
312 | 2011-03-20T16:45:36Z
313 | plainText
314 | ✩
315 | snippetType
316 | 0
317 | uuidString
318 | 00C5CCE3-3B61-4F4C-A671-C6B04873374A
319 |
320 |
321 | abbreviation
322 | ,,starb
323 | abbreviationMode
324 | 0
325 | creationDate
326 | 2011-03-20T16:45:20Z
327 | label
328 |
329 | modificationDate
330 | 2011-03-20T16:45:32Z
331 | plainText
332 | ★
333 | snippetType
334 | 0
335 | uuidString
336 | D31CA1CA-A85A-446A-89A0-AF9639A35CF6
337 |
338 |
339 | abbreviation
340 | ,,nuke
341 | abbreviationMode
342 | 0
343 | creationDate
344 | 2011-03-20T16:43:44Z
345 | label
346 |
347 | modificationDate
348 | 2011-03-20T16:43:44Z
349 | plainText
350 | ☣
351 | snippetType
352 | 0
353 | uuidString
354 | BCDC57BD-47C6-4383-8776-1890EE91E284
355 |
356 |
357 | abbreviation
358 | ,,skull
359 | abbreviationMode
360 | 0
361 | creationDate
362 | 2011-03-20T16:43:27Z
363 | label
364 |
365 | modificationDate
366 | 2011-03-20T16:43:27Z
367 | plainText
368 | ☠
369 | snippetType
370 | 0
371 | uuidString
372 | D58D0938-66ED-4F05-B6A3-B08B639CB07C
373 |
374 |
375 | abbreviation
376 | ,,smil
377 | abbreviationMode
378 | 0
379 | creationDate
380 | 2011-03-20T16:42:58Z
381 | label
382 |
383 | modificationDate
384 | 2011-03-20T16:42:58Z
385 | plainText
386 | ☺
387 | snippetType
388 | 0
389 | uuidString
390 | 8FC17DA5-92D1-461E-8C80-3D907BF3306B
391 |
392 |
393 | abbreviation
394 | ,,heart
395 | abbreviationMode
396 | 0
397 | creationDate
398 | 2011-03-20T16:42:35Z
399 | label
400 |
401 | modificationDate
402 | 2011-03-20T16:42:47Z
403 | plainText
404 | ♥
405 | snippetType
406 | 0
407 | uuidString
408 | E4872523-5CA5-4857-A39F-E86CF8B56C44
409 |
410 |
411 | abbreviation
412 | ,,ccw
413 | abbreviationMode
414 | 0
415 | creationDate
416 | 2009-10-28T10:45:51Z
417 | label
418 | Control-Command-W
419 | modificationDate
420 | 2010-10-27T14:56:30Z
421 | plainText
422 | ^⌘W
423 | snippetType
424 | 0
425 | uuidString
426 | F46CE3A8-C631-4C89-99DD-0AE5CAD1DD9B
427 |
428 |
429 | abbreviation
430 | ,,comm
431 | abbreviationMode
432 | 0
433 | creationDate
434 | 2008-04-20T08:37:23Z
435 | label
436 |
437 | modificationDate
438 | 2010-10-27T14:56:10Z
439 | plainText
440 | ⌘
441 | snippetType
442 | 0
443 | uuidString
444 | 11EF2D52-7B2D-4444-9A08-8277F499794F
445 |
446 |
447 | abbreviation
448 | ,,down
449 | abbreviationMode
450 | 0
451 | creationDate
452 | 2008-04-20T08:36:12Z
453 | label
454 |
455 | modificationDate
456 | 2010-10-27T14:56:13Z
457 | plainText
458 | ↓
459 | snippetType
460 | 0
461 | uuidString
462 | 4DEB8796-BFEB-49C2-A74B-1EB9A566A8D5
463 |
464 |
465 | abbreviation
466 | ,,left
467 | abbreviationMode
468 | 0
469 | creationDate
470 | 2008-04-20T08:35:41Z
471 | label
472 |
473 | modificationDate
474 | 2010-10-27T14:56:15Z
475 | plainText
476 | ←
477 | snippetType
478 | 0
479 | uuidString
480 | 82EFFB6A-7AA8-4299-803F-92612399D020
481 |
482 |
483 | abbreviation
484 | ,,opt
485 | abbreviationMode
486 | 0
487 | creationDate
488 | 2008-04-20T08:36:34Z
489 | label
490 |
491 | modificationDate
492 | 2011-03-20T16:48:29Z
493 | plainText
494 | ⌥
495 | snippetType
496 | 0
497 | uuidString
498 | AC8ABBD5-109D-4BA4-88AA-4B2D8EA59773
499 |
500 |
501 | abbreviation
502 | ,,right
503 | abbreviationMode
504 | 0
505 | creationDate
506 | 2008-04-20T08:34:54Z
507 | label
508 |
509 | modificationDate
510 | 2010-10-27T14:56:21Z
511 | plainText
512 | →
513 | snippetType
514 | 0
515 | uuidString
516 | DEA70E3A-BAD6-403F-A501-DC6D49B771B5
517 |
518 |
519 | abbreviation
520 | ,,shift
521 | abbreviationMode
522 | 0
523 | creationDate
524 | 2008-07-24T15:05:05Z
525 | label
526 | ⇧
527 | modificationDate
528 | 2010-10-27T14:56:23Z
529 | plainText
530 | ⇧
531 | snippetType
532 | 0
533 | uuidString
534 | A5703DBE-E919-4619-9837-00F165AFA52C
535 |
536 |
537 | abbreviation
538 | ,,up
539 | abbreviationMode
540 | 0
541 | creationDate
542 | 2008-04-20T08:35:30Z
543 | label
544 |
545 | modificationDate
546 | 2010-10-27T14:56:26Z
547 | plainText
548 | ↑
549 | snippetType
550 | 0
551 | uuidString
552 | 98EA6E7F-B587-4E91-89B5-CA08C2A99ED8
553 |
554 |
555 |
556 |
557 |
--------------------------------------------------------------------------------
/Filesystem.textexpander:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | groupInfo
6 |
7 | expandAfterMode
8 | 2
9 | groupName
10 | Filesystem
11 |
12 | snippetsTE2
13 |
14 |
15 | abbreviation
16 | ~"apps
17 | abbreviationMode
18 | 0
19 | creationDate
20 | 2011-02-08T17:21:52Z
21 | label
22 | App Support, Quoted
23 | modificationDate
24 | 2011-09-02T04:10:58Z
25 | plainText
26 | "~/Library/Application Support/"
27 | snippetType
28 | 0
29 | uuidString
30 | 0E1F7AE4-4842-45B5-AA00-2E3959DCEAD6
31 |
32 |
33 | abbreviation
34 | ~si
35 | abbreviationMode
36 | 0
37 | creationDate
38 | 2011-04-23T08:52:00Z
39 | label
40 | Sites
41 | modificationDate
42 | 2011-09-02T04:10:06Z
43 | plainText
44 | ~/Sites
45 | snippetType
46 | 0
47 | uuidString
48 | 94BB8552-E5AD-44E2-B6C4-0FAF862752DE
49 |
50 |
51 | abbreviation
52 | ~apps
53 | abbreviationMode
54 | 0
55 | creationDate
56 | 2011-02-08T17:21:52Z
57 | label
58 | App Support
59 | modificationDate
60 | 2011-09-02T04:10:11Z
61 | plainText
62 | ~/Library/Application Support/
63 | snippetType
64 | 0
65 | uuidString
66 | C1C31A47-2DA7-4424-B164-63184D627E6F
67 |
68 |
69 | abbreviation
70 | ~lib
71 | abbreviationMode
72 | 0
73 | creationDate
74 | 2011-02-08T17:21:52Z
75 | label
76 | User Library
77 | modificationDate
78 | 2011-09-02T04:10:33Z
79 | plainText
80 | ~/Library/
81 | snippetType
82 | 0
83 | uuidString
84 | 2EDC32E6-D95F-40B5-BED8-53D467C8610E
85 |
86 |
87 | abbreviation
88 | ~scr
89 | abbreviationMode
90 | 0
91 | creationDate
92 | 2011-02-08T17:21:52Z
93 | label
94 | User Scripts
95 | modificationDate
96 | 2011-09-02T04:10:27Z
97 | plainText
98 | ~/Library/Scripts/
99 | snippetType
100 | 0
101 | uuidString
102 | F1C6090C-1E4B-490B-9AAA-3A5797D4DD74
103 |
104 |
105 |
106 |
107 |
--------------------------------------------------------------------------------
/HTML Type Entities.textexpander:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | groupInfo
6 |
7 | expandAfterMode
8 | 2
9 | groupName
10 | HTML Type Entities
11 |
12 | snippetsTE2
13 |
14 |
15 | abbreviation
16 | ,h>
17 | abbreviationMode
18 | 0
19 | creationDate
20 | 2012-04-19T18:25:21Z
21 | label
22 | Greater Than >
23 | modificationDate
24 | 2012-11-11T21:33:18Z
25 | plainText
26 | >
27 | snippetType
28 | 0
29 | uuidString
30 | 51A0AAC9-452E-4B2A-B771-C354B4C6FC30
31 |
32 |
33 | abbreviation
34 | ,h<
35 | abbreviationMode
36 | 0
37 | creationDate
38 | 2012-04-19T18:25:03Z
39 | label
40 | Less Than <
41 | modificationDate
42 | 2012-11-11T21:33:22Z
43 | plainText
44 | <
45 | snippetType
46 | 0
47 | uuidString
48 | E04F5001-2D50-4089-A8CC-2B72CA70F003
49 |
50 |
51 | abbreviation
52 | ,hellip
53 | abbreviationMode
54 | 0
55 | creationDate
56 | 2012-02-06T15:50:29Z
57 | label
58 | Ellipses Symbol
59 | modificationDate
60 | 2012-11-11T21:30:35Z
61 | plainText
62 | …
63 | snippetType
64 | 0
65 | uuidString
66 | 8A7184DB-8D7F-4DA1-A346-EA203F80A7BA
67 |
68 |
69 | abbreviation
70 | ,hdeg
71 | abbreviationMode
72 | 0
73 | creationDate
74 | 2012-02-06T15:47:18Z
75 | label
76 | Degree Symbol
77 | modificationDate
78 | 2012-11-11T21:30:53Z
79 | plainText
80 | °
81 | snippetType
82 | 0
83 | uuidString
84 | F009EC50-DFAD-4D21-8F71-618F7E3D4350
85 |
86 |
87 | abbreviation
88 | ,hcent
89 | abbreviationMode
90 | 0
91 | creationDate
92 | 2012-02-06T15:46:53Z
93 | label
94 | Cents Symbol
95 | modificationDate
96 | 2012-11-11T21:31:00Z
97 | plainText
98 | ¢
99 | snippetType
100 | 0
101 | uuidString
102 | 66E21D5C-DACE-4192-A2A3-EBDCD99E4F9C
103 |
104 |
105 | abbreviation
106 | ,hfrac
107 | abbreviationMode
108 | 0
109 | creationDate
110 | 2012-02-06T15:46:36Z
111 | label
112 | Fraction Symbol
113 | modificationDate
114 | 2012-11-11T21:31:06Z
115 | plainText
116 | ½
117 | snippetType
118 | 0
119 | uuidString
120 | E3E5AFC9-CD1A-45D0-9874-9246EC5F345B
121 |
122 |
123 | abbreviation
124 | ,htimes
125 | abbreviationMode
126 | 0
127 | creationDate
128 | 2012-02-06T15:46:11Z
129 | label
130 | Multiplication Symbol
131 | modificationDate
132 | 2012-11-11T21:31:17Z
133 | plainText
134 | ×
135 | snippetType
136 | 0
137 | uuidString
138 | 841D1139-3E5B-4A77-B7DA-0FDF4F5057B9
139 |
140 |
141 | abbreviation
142 | ,hminus
143 | abbreviationMode
144 | 0
145 | creationDate
146 | 2012-02-06T15:45:56Z
147 | label
148 | Minus Symbol
149 | modificationDate
150 | 2012-11-11T21:31:36Z
151 | plainText
152 | −
153 | snippetType
154 | 0
155 | uuidString
156 | A222E73E-B0E0-403B-9AAB-98C300CA6E78
157 |
158 |
159 | abbreviation
160 | ,hsquoopen
161 | abbreviationMode
162 | 0
163 | creationDate
164 | 2012-02-06T15:42:47Z
165 | label
166 | Open Single Quote
167 | modificationDate
168 | 2012-11-11T21:32:27Z
169 | plainText
170 | ‘
171 | snippetType
172 | 0
173 | uuidString
174 | 92D99172-91A4-473D-A23B-AA1434B5C67D
175 |
176 |
177 | abbreviation
178 | ,hsquoclose
179 | abbreviationMode
180 | 0
181 | creationDate
182 | 2012-02-06T15:42:32Z
183 | label
184 | Close Single Quote
185 | modificationDate
186 | 2012-11-11T21:32:17Z
187 | plainText
188 | ’
189 | snippetType
190 | 0
191 | uuidString
192 | 8AA3C8D3-EE5F-445F-A57F-F2B8BAF2A8EA
193 |
194 |
195 | abbreviation
196 | ,hquoopen
197 | abbreviationMode
198 | 0
199 | creationDate
200 | 2012-02-06T15:42:21Z
201 | label
202 | Open Quotation
203 | modificationDate
204 | 2012-11-11T21:32:49Z
205 | plainText
206 | “
207 | snippetType
208 | 0
209 | uuidString
210 | D28E3EB3-2D81-4D39-9E77-E9C477BA6DAA
211 |
212 |
213 | abbreviation
214 | ,hquoclose
215 | abbreviationMode
216 | 0
217 | creationDate
218 | 2012-02-06T15:42:01Z
219 | label
220 | Close Quotation
221 | modificationDate
222 | 2012-11-11T21:32:55Z
223 | plainText
224 | ”
225 | snippetType
226 | 0
227 | uuidString
228 | E7FC3B00-C6F0-43E0-A8CC-440A53157264
229 |
230 |
231 |
232 |
233 |
--------------------------------------------------------------------------------
/HTML.textexpander:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | groupInfo
6 |
7 | expandAfterMode
8 | 0
9 | groupName
10 | HTML
11 |
12 | snippetsTE2
13 |
14 |
15 | abbreviation
16 | ,ytthumb
17 | abbreviationMode
18 | 0
19 | creationDate
20 | 2013-04-12T16:05:20Z
21 | label
22 | YouTube Thumbnail
23 | modificationDate
24 | 2013-04-12T16:06:57Z
25 | plainText
26 | http://img.youtube.com/vi/%filltext:name=videoID%/%fillpopup:name=Images:default.jpg:hqdefault.jpg:mqdefault.jpg:maxresdefault.jpg%
27 | snippetType
28 | 0
29 | uuidString
30 | 929472C4-B3C9-43F6-A20C-F17DAB58E44B
31 |
32 |
33 | abbreviation
34 | ,,a
35 | abbreviationMode
36 | 0
37 | creationDate
38 | 2011-06-08T20:37:10Z
39 | label
40 | Clipboard Link
41 | modificationDate
42 | 2011-06-08T20:37:25Z
43 | plainText
44 | <a href="%clipboard">%|</a>
45 | snippetType
46 | 0
47 | uuidString
48 | 7915F919-AB50-467E-BCED-BCA9A0AFD554
49 |
50 |
51 | abbreviation
52 | ,,img
53 | abbreviationMode
54 | 0
55 | creationDate
56 | 2011-10-02T00:15:30Z
57 | label
58 | Placehold.it
59 | modificationDate
60 | 2016-06-28T21:59:28Z
61 | plainText
62 | <img src="http://placehold.it/%fill:width%x%fill:height%" />
63 | snippetType
64 | 0
65 | uuidString
66 | 1F25FC99-5D6A-45A9-96A9-C62D935064CC
67 |
68 |
69 | abbreviation
70 | ,checkbox
71 | abbreviationMode
72 | 2
73 | creationDate
74 | 2009-05-31T02:19:20Z
75 | label
76 |
77 | modificationDate
78 | 2009-05-31T02:19:20Z
79 | plainText
80 | <input type="checkbox" name="%|" value="" />
81 | snippetType
82 | 0
83 | uuidString
84 | CC4AA73C-58D9-402E-93F9-804BFDDA3681
85 |
86 |
87 | abbreviation
88 | ,hidden
89 | abbreviationMode
90 | 2
91 | creationDate
92 | 2009-05-31T02:19:20Z
93 | label
94 |
95 | modificationDate
96 | 2009-05-31T02:19:20Z
97 | plainText
98 | <input type="hidden" name="%|" value="" />
99 | snippetType
100 | 0
101 | uuidString
102 | 88A01493-8303-4CAD-A5E3-6CD6D0BBCBFD
103 |
104 |
105 | abbreviation
106 | ,radio
107 | abbreviationMode
108 | 2
109 | creationDate
110 | 2009-05-31T02:19:20Z
111 | label
112 |
113 | modificationDate
114 | 2009-05-31T02:19:20Z
115 | plainText
116 | <input type="radio" name="%|" value="" />
117 | snippetType
118 | 0
119 | uuidString
120 | 9EC9C693-32FC-4995-99D5-E52BBBB76297
121 |
122 |
123 | abbreviation
124 | ,reset
125 | abbreviationMode
126 | 2
127 | creationDate
128 | 2009-05-31T02:19:20Z
129 | label
130 |
131 | modificationDate
132 | 2009-05-31T02:19:20Z
133 | plainText
134 | <input type="reset" value="%|" />
135 | snippetType
136 | 0
137 | uuidString
138 | AD0B6B38-3946-4FF8-BBCB-1732831C9565
139 |
140 |
141 | abbreviation
142 | ,em
143 | abbreviationMode
144 | 2
145 | creationDate
146 | 2009-05-31T02:19:20Z
147 | label
148 |
149 | modificationDate
150 | 2009-05-31T02:19:20Z
151 | plainText
152 | <em>%|</em>
153 | snippetType
154 | 0
155 | uuidString
156 | 4DCB17D6-4A51-4E13-BAD5-4E4DD58DA9AE
157 |
158 |
159 | abbreviation
160 | ,form
161 | abbreviationMode
162 | 2
163 | creationDate
164 | 2009-05-31T02:19:20Z
165 | label
166 |
167 | modificationDate
168 | 2009-05-31T02:19:20Z
169 | plainText
170 | <form action="%|" method="">
171 | </form>
172 |
173 | snippetType
174 | 0
175 | uuidString
176 | 590C2EE5-558D-4903-9756-B8C7766BB39D
177 |
178 |
179 | abbreviation
180 | ,textfield
181 | abbreviationMode
182 | 2
183 | creationDate
184 | 2009-05-31T02:19:20Z
185 | label
186 |
187 | modificationDate
188 | 2012-03-29T01:12:39Z
189 | plainText
190 | <input type="text" name="%|" value=""/>
191 | snippetType
192 | 0
193 | uuidString
194 | 645A7832-3306-4C2C-982E-CD61532E34FA
195 |
196 |
197 | abbreviation
198 | ,button
199 | abbreviationMode
200 | 2
201 | creationDate
202 | 2009-05-31T02:19:20Z
203 | label
204 |
205 | modificationDate
206 | 2009-05-31T02:19:20Z
207 | plainText
208 | <button type="submit" name="submit" value="submit">
209 | <img src="%|" width="" height="" alt="" />
210 | </button>
211 |
212 | snippetType
213 | 0
214 | uuidString
215 | F4ED7015-1C51-4139-B101-F0213284EF19
216 |
217 |
218 | abbreviation
219 | ,textarea
220 | abbreviationMode
221 | 2
222 | creationDate
223 | 2009-05-31T02:19:20Z
224 | label
225 |
226 | modificationDate
227 | 2009-05-31T02:19:20Z
228 | plainText
229 | <textarea name="textarea" rows="" cols="" wrap="wrap">%|</textarea>
230 | snippetType
231 | 0
232 | uuidString
233 | 60A12C6C-A903-47F8-BA76-CCE0EE70CADD
234 |
235 |
236 | abbreviation
237 | ,select
238 | abbreviationMode
239 | 2
240 | creationDate
241 | 2009-05-31T02:19:20Z
242 | label
243 |
244 | modificationDate
245 | 2010-06-10T03:29:22Z
246 | plainText
247 | <select name="%|">
248 | <option value=""></option>
249 | <option value=""></option>
250 | <option value=""></option>
251 | </select>
252 | snippetType
253 | 0
254 | uuidString
255 | 05F0D1B6-BDD5-463F-8A04-E121D0299069
256 |
257 |
258 | abbreviation
259 | ,script
260 | abbreviationMode
261 | 2
262 | creationDate
263 | 2009-05-31T02:19:20Z
264 | label
265 |
266 | modificationDate
267 | 2009-05-31T02:19:20Z
268 | plainText
269 | <script type="text/javascript" language="Javascript" src="%|"></script>
270 | snippetType
271 | 0
272 | uuidString
273 | 4A474C50-4E5C-4A5C-8B11-EDDDBD232227
274 |
275 |
276 | abbreviation
277 | ,table
278 | abbreviationMode
279 | 2
280 | creationDate
281 | 2009-05-31T02:19:20Z
282 | label
283 |
284 | modificationDate
285 | 2012-03-19T21:45:23Z
286 | plainText
287 | <table border="0" width="">
288 | <tr>
289 | <td>%|</td>
290 | </tr>
291 | </table>
292 | snippetType
293 | 0
294 | uuidString
295 | 02FEE9FC-D650-4D21-A29E-7E7AA9D8D8A5
296 |
297 |
298 | abbreviation
299 | ,td
300 | abbreviationMode
301 | 2
302 | creationDate
303 | 2009-05-31T02:19:20Z
304 | label
305 |
306 | modificationDate
307 | 2009-05-31T02:19:20Z
308 | plainText
309 | <td>%|</td>
310 | snippetType
311 | 0
312 | uuidString
313 | E2F48E8F-9EB7-4316-B97A-008E775C651D
314 |
315 |
316 | abbreviation
317 | ,dt
318 | abbreviationMode
319 | 2
320 | creationDate
321 | 2009-05-31T02:19:20Z
322 | label
323 |
324 | modificationDate
325 | 2010-06-10T03:29:35Z
326 | plainText
327 | <dt>%|</dt>
328 | snippetType
329 | 0
330 | uuidString
331 | E7BA0047-0CA9-44D8-B708-1ECA2D325BC8
332 |
333 |
334 | abbreviation
335 | ,dd
336 | abbreviationMode
337 | 2
338 | creationDate
339 | 2009-05-31T02:19:20Z
340 | label
341 |
342 | modificationDate
343 | 2010-06-10T03:29:38Z
344 | plainText
345 | <dd>%|</dd>
346 | snippetType
347 | 0
348 | uuidString
349 | 1A9E807C-13B6-47EC-BEA4-232E662E9639
350 |
351 |
352 | abbreviation
353 | ,submit
354 | abbreviationMode
355 | 2
356 | creationDate
357 | 2009-05-31T02:19:20Z
358 | label
359 |
360 | modificationDate
361 | 2009-05-31T02:19:20Z
362 | plainText
363 | <input type="submit" value="%|" />
364 | snippetType
365 | 0
366 | uuidString
367 | 24443B69-6D4A-46EE-A2A0-5ACCE8369B52
368 |
369 |
370 | abbreviation
371 | ,dl
372 | abbreviationMode
373 | 2
374 | creationDate
375 | 2009-05-31T02:19:20Z
376 | label
377 |
378 | modificationDate
379 | 2010-06-10T03:30:10Z
380 | plainText
381 | <dl>
382 | <dt>%|</dt>
383 | <dd></dd>
384 | <dt></dt>
385 | <dd></dd>
386 | </dl>
387 | snippetType
388 | 0
389 | uuidString
390 | C9D385CD-14B4-4F09-83BE-468FBB06088E
391 |
392 |
393 | abbreviation
394 | ,img
395 | abbreviationMode
396 | 2
397 | creationDate
398 | 2009-05-31T02:19:20Z
399 | label
400 |
401 | modificationDate
402 | 2009-05-31T02:19:20Z
403 | plainText
404 | <img src="%|" alt="" width="" height="" border="0" />
405 | snippetType
406 | 0
407 | uuidString
408 | E1081EAD-49D5-41BA-B559-B3AF3EAD796E
409 |
410 |
411 | abbreviation
412 | ,html
413 | abbreviationMode
414 | 0
415 | creationDate
416 | 2012-06-23T09:32:39Z
417 | label
418 | HTML Template
419 | modificationDate
420 | 2012-11-11T22:53:12Z
421 | plainText
422 | <!DOCTYPE html>
423 | <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
424 | <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
425 | <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
426 | <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
427 | <head>
428 | <meta charset="utf-8">
429 | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
430 |
431 | <title></title>
432 | <meta name="description" content="">
433 | <meta name="viewport" content="width=device-width">
434 |
435 | <link rel="sitemap" type="application/xml" title="Sitemap" href="/sitemap.xml" />
436 | <link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" />
437 | <link rel="author" href="/humans.txt" />
438 |
439 | <link rel="stylesheet" href="/css/main.css">
440 | <script src="/js/vendor/modernizr-2.5.3.min.js"></script>
441 | </head>
442 | <body>
443 | <!--[if lt IE 7]><p class="chromeframe">Your browser is <em>ancient!</em> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p><![endif]-->
444 |
445 |
446 | <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
447 | <script>window.jQuery || document.write('<script src="/js/vendor/jquery-1.7.2.min.js"><\/script>')</script>
448 |
449 | <script src="/js/plugins.js"></script>
450 | <script src="/js/main.js"></script>
451 |
452 | <script>
453 | var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
454 | (function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
455 | g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
456 | s.parentNode.insertBefore(g,s)}(document,'script'));
457 | </script>
458 | </body>
459 | </html>
460 | snippetType
461 | 0
462 | uuidString
463 | C569CCC9-630C-410E-9B88-71F27A5C39EE
464 |
465 |
466 | abbreviation
467 | ,a
468 | abbreviationMode
469 | 2
470 | creationDate
471 | 2009-05-31T02:19:20Z
472 | label
473 |
474 | modificationDate
475 | 2009-05-31T02:19:20Z
476 | plainText
477 | <a href="%|"></a>
478 | snippetType
479 | 0
480 | uuidString
481 | 1974BAE6-D763-472C-86EB-CF9783F54E96
482 |
483 |
484 | abbreviation
485 | ,ol
486 | abbreviationMode
487 | 2
488 | creationDate
489 | 2009-05-31T02:19:20Z
490 | label
491 | <ol>
492 | modificationDate
493 | 2012-06-23T09:13:23Z
494 | plainText
495 | <ol>
496 | <li>%|</li>
497 | </ol>
498 | snippetType
499 | 0
500 | uuidString
501 | AB199A1B-5BE4-4FF4-9ACB-FF529BDC276C
502 |
503 |
504 | abbreviation
505 | ,header
506 | abbreviationMode
507 | 0
508 | creationDate
509 | 2012-06-23T09:11:51Z
510 | label
511 | <header>
512 | modificationDate
513 | 2012-06-23T09:13:27Z
514 | plainText
515 | <header>%|</header>
516 | snippetType
517 | 0
518 | uuidString
519 | 87812D29-5E42-4155-B3CA-ECF0733BE54D
520 |
521 |
522 | abbreviation
523 | ,strong
524 | abbreviationMode
525 | 2
526 | creationDate
527 | 2009-05-31T02:19:20Z
528 | label
529 | <strong>
530 | modificationDate
531 | 2012-06-23T09:12:22Z
532 | plainText
533 | <strong>%|</strong>
534 | snippetType
535 | 0
536 | uuidString
537 | F2A9CD6E-3B77-43E1-ABE8-3DF998CB712E
538 |
539 |
540 | abbreviation
541 | ,span
542 | abbreviationMode
543 | 2
544 | creationDate
545 | 2009-05-31T02:19:20Z
546 | label
547 | <span>
548 | modificationDate
549 | 2012-06-23T09:12:29Z
550 | plainText
551 | <span>%|</span>
552 | snippetType
553 | 0
554 | uuidString
555 | 28F62B7D-4C41-4E2B-A333-EEEA7BA32CBB
556 |
557 |
558 | abbreviation
559 |
560 | abbreviationMode
561 | 2
562 | creationDate
563 | 2009-05-31T02:19:20Z
564 | label
565 |
566 | modificationDate
567 | 2012-07-13T00:26:47Z
568 | plainText
569 | <br />
570 | snippetType
571 | 0
572 | uuidString
573 | 0176E21A-84BA-4619-B119-F9784A087221
574 |
575 |
576 | abbreviation
577 | ,div
578 | abbreviationMode
579 | 2
580 | creationDate
581 | 2009-05-31T02:19:20Z
582 | label
583 | <div>
584 | modificationDate
585 | 2012-06-23T09:12:34Z
586 | plainText
587 | <div>%|</div>
588 | snippetType
589 | 0
590 | uuidString
591 | 2E5CCC51-C09E-43E6-836D-7AD6A73CD827
592 |
593 |
594 | abbreviation
595 | ,p
596 | abbreviationMode
597 | 2
598 | creationDate
599 | 2009-05-31T02:19:20Z
600 | label
601 | <p>
602 | modificationDate
603 | 2012-06-23T09:12:37Z
604 | plainText
605 | <p>%|</p>
606 | snippetType
607 | 0
608 | uuidString
609 | BC5F1897-75CB-458B-8AD9-15329240AE28
610 |
611 |
612 | abbreviation
613 | ,ul
614 | abbreviationMode
615 | 2
616 | creationDate
617 | 2009-05-31T02:19:20Z
618 | label
619 | <ul>
620 | modificationDate
621 | 2012-06-23T09:12:42Z
622 | plainText
623 | <ul>
624 | <li>%|</li>
625 | </ul>
626 | snippetType
627 | 0
628 | uuidString
629 | 474A1397-2108-4935-8439-9359EBB74E19
630 |
631 |
632 | abbreviation
633 | ,li
634 | abbreviationMode
635 | 2
636 | creationDate
637 | 2009-05-31T02:19:20Z
638 | label
639 | <li>
640 | modificationDate
641 | 2012-06-23T09:12:48Z
642 | plainText
643 | <li>%|</li>
644 | snippetType
645 | 0
646 | uuidString
647 | 0F264DF1-BC9B-45E5-9B9A-7675C6C2886C
648 |
649 |
650 | abbreviation
651 | ,h6
652 | abbreviationMode
653 | 2
654 | creationDate
655 | 2009-05-31T02:19:20Z
656 | label
657 | <h6>
658 | modificationDate
659 | 2012-06-23T09:12:52Z
660 | plainText
661 | <h6>%|</h6>
662 | snippetType
663 | 0
664 | uuidString
665 | 61917B69-B576-41AB-BD2C-1481EB462DA8
666 |
667 |
668 | abbreviation
669 | ,h5
670 | abbreviationMode
671 | 2
672 | creationDate
673 | 2009-05-31T02:19:20Z
674 | label
675 | <h5>
676 | modificationDate
677 | 2012-06-23T09:12:56Z
678 | plainText
679 | <h5>%|</h5>
680 | snippetType
681 | 0
682 | uuidString
683 | AC94A17E-9BFB-4F95-8D93-9B740E373A2A
684 |
685 |
686 | abbreviation
687 | ,h1
688 | abbreviationMode
689 | 2
690 | creationDate
691 | 2009-05-31T02:19:20Z
692 | label
693 | <h1>
694 | modificationDate
695 | 2012-06-23T09:12:59Z
696 | plainText
697 | <h1>%|</h1>
698 | snippetType
699 | 0
700 | uuidString
701 | C523E028-3CDF-48DD-8703-2C24EDC28E36
702 |
703 |
704 | abbreviation
705 | ,h3
706 | abbreviationMode
707 | 2
708 | creationDate
709 | 2009-05-31T02:19:20Z
710 | label
711 | <h3>
712 | modificationDate
713 | 2012-06-23T09:13:03Z
714 | plainText
715 | <h3>%|</h3>
716 | snippetType
717 | 0
718 | uuidString
719 | 309281A8-8ECD-43B2-89FA-227F6932C6CA
720 |
721 |
722 | abbreviation
723 | ,h4
724 | abbreviationMode
725 | 2
726 | creationDate
727 | 2009-05-31T02:19:20Z
728 | label
729 | <h4>
730 | modificationDate
731 | 2012-06-23T09:13:06Z
732 | plainText
733 | <h4>%|</h4>
734 | snippetType
735 | 0
736 | uuidString
737 | 00521335-E53B-486B-BA07-51557F81E4E0
738 |
739 |
740 | abbreviation
741 | ,h2
742 | abbreviationMode
743 | 2
744 | creationDate
745 | 2009-05-31T02:19:20Z
746 | label
747 | <h2>
748 | modificationDate
749 | 2012-06-23T09:13:08Z
750 | plainText
751 | <h2>%|</h2>
752 | snippetType
753 | 0
754 | uuidString
755 | 4AC4ABC9-844F-41B7-A66E-FA7518E4F186
756 |
757 |
758 | abbreviation
759 | ,,unimg
760 | abbreviationMode
761 | 0
762 | creationDate
763 | 2014-09-06T20:04:05Z
764 | label
765 | Unsplash
766 | modificationDate
767 | 2014-09-06T20:05:51Z
768 | plainText
769 | <img src="http://unsplash.it/%fill:width%/%fill:height%" />
770 | snippetType
771 | 0
772 | uuidString
773 | 894D1066-25BF-4880-A196-1CF0723EFB9B
774 |
775 |
776 |
777 |
778 |
--------------------------------------------------------------------------------
/JavaScript.textexpander:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | groupInfo
6 |
7 | expandAfterMode
8 | 0
9 | groupName
10 | JavaScript
11 |
12 | snippetsTE2
13 |
14 |
15 | abbreviation
16 | ,jsextend
17 | abbreviationMode
18 | 0
19 | creationDate
20 | 2014-02-12T18:47:51Z
21 | label
22 |
23 | modificationDate
24 | 2014-02-12T18:47:55Z
25 | plainText
26 | function extend(destination, source) {
27 | var toString = Object.prototype.toString,
28 | objTest = toString.call({});
29 | for (var property in source) {
30 | if (source[property] && objTest == toString.call(source[property])) {
31 | destination[property] = destination[property] || {};
32 | extend(destination[property], source[property]);
33 | } else {
34 | destination[property] = source[property];
35 | }
36 | }
37 | return destination;
38 | };
39 | snippetType
40 | 0
41 | uuidString
42 | 8A7EA0E5-1144-4CC7-8440-9D7868953840
43 |
44 |
45 | abbreviation
46 | ,jspreventhover
47 | abbreviationMode
48 | 0
49 | creationDate
50 | 2013-12-02T18:21:14Z
51 | label
52 | Prevent Hover On Scroll
53 | modificationDate
54 | 2013-12-02T18:21:37Z
55 | plainText
56 | var body = document.body,
57 | scrollTimer;
58 |
59 | window.addEventListener('scroll', function() {
60 | clearTimeout(scrollTimer);
61 | if(!body.classList.contains('disable-hover')) {
62 | body.classList.add('disable-hover');
63 | }
64 |
65 | scrollTimer = setTimeout(function(){
66 | body.classList.remove('disable-hover');
67 | }, 500);
68 | }, false);
69 |
70 | /*
71 | .disable-hover,
72 | .disable-hover * {
73 | pointer-events: none !important;
74 | }
75 | */
76 | snippetType
77 | 0
78 | uuidString
79 | D13D46F5-313F-4284-B790-5FA1CB8F3686
80 |
81 |
82 | abbreviation
83 | ,jsaddcssrule
84 | abbreviationMode
85 | 0
86 | creationDate
87 | 2013-09-12T21:29:31Z
88 | label
89 |
90 | modificationDate
91 | 2013-09-12T21:30:32Z
92 | plainText
93 | function addCssRule(sheet, selector, rules, index) {
94 | if(sheet.insertRule) {
95 | sheet.insertRule(selector + "{" + rules + "}", index);
96 | }
97 | else {
98 | sheet.addRule(selector, rules, index);
99 | }
100 | }
101 |
102 | // addCssRule(document.styleSheets[0], '', '');
103 | snippetType
104 | 0
105 | uuidString
106 | E4D8D038-5DC6-45EB-A52C-AC926FD3214F
107 |
108 |
109 | abbreviation
110 | ,jsevtdel
111 | abbreviationMode
112 | 0
113 | creationDate
114 | 2013-09-12T21:19:49Z
115 | label
116 | Event Delegation
117 | modificationDate
118 | 2013-09-12T21:20:10Z
119 | plainText
120 | el.addEventListener("click",function(e) {
121 | if(e.target && e.target.nodeName == "%|") {
122 | // ...
123 | }
124 | });
125 | snippetType
126 | 0
127 | uuidString
128 | E86E58EF-2226-420E-8DE8-FD41A549E024
129 |
130 |
131 | abbreviation
132 | ,jsajaxcache
133 | abbreviationMode
134 | 0
135 | creationDate
136 | 2013-08-09T17:29:20Z
137 | label
138 | jQuery Ajax Cache
139 | modificationDate
140 | 2013-11-14T22:06:03Z
141 | plainText
142 | var ajaxCache = {};
143 |
144 | $('#ajaxForm').on('submit', function(e) {
145 | var key = $('#field').val(); // get a key to store/cache for lookup
146 |
147 | if ( !ajaxCache[key] ) {
148 | ajaxCache[key] = $.ajax({
149 | url: 'http://',
150 | dataType: 'jsonp',
151 | data: {},
152 | timeout: 15000
153 | });
154 | }
155 | ajaxCache[key].done().fail().always();
156 |
157 | e.preventDefault();
158 | });
159 | snippetType
160 | 0
161 | uuidString
162 | 86EF88FB-1AF0-4A89-86B0-AB9BCD74C03F
163 |
164 |
165 | abbreviation
166 | ,keycheck
167 | abbreviationMode
168 | 0
169 | creationDate
170 | 2013-08-09T17:09:36Z
171 | label
172 | Key Check
173 | modificationDate
174 | 2016-06-28T21:49:00Z
175 | plainText
176 | if("%filltext:name=Feature%" in navigator) {
177 | %|
178 | }
179 |
180 | snippetType
181 | 0
182 | uuidString
183 | 555CAB89-4565-4FB7-9D17-0DA205E282BE
184 |
185 |
186 | abbreviation
187 | ,jstypeof
188 | abbreviationMode
189 | 0
190 | creationDate
191 | 2013-06-27T22:00:34Z
192 | label
193 | typeOf
194 | modificationDate
195 | 2013-06-27T22:00:45Z
196 | plainText
197 | function typeOf(value) {
198 | var s = typeof value;
199 | if (s === 'object') {
200 | if (value) {
201 | if (value instanceof Array) {
202 | s = 'array';
203 | }
204 | } else {
205 | s = 'null';
206 | }
207 | }
208 | return s;
209 | }
210 | snippetType
211 | 0
212 | uuidString
213 | 36543182-D0A5-4CD7-93DA-528E03CC325A
214 |
215 |
216 | abbreviation
217 | ,jsrect
218 | abbreviationMode
219 | 0
220 | creationDate
221 | 2013-05-14T16:41:00Z
222 | label
223 | Get el bounding rect
224 | modificationDate
225 | 2016-06-28T21:49:46Z
226 | plainText
227 | var %filltext:name=elRect% = document.querySelector('%|').getBoundingClientRect();
228 | snippetType
229 | 0
230 | uuidString
231 | 650178F4-D28D-464B-B388-65834F6A4BCB
232 |
233 |
234 | abbreviation
235 | ,jshintrc
236 | abbreviationMode
237 | 0
238 | creationDate
239 | 2013-05-10T17:29:41Z
240 | label
241 | JSHint Config File
242 | modificationDate
243 | 2013-05-10T17:30:34Z
244 | plainText
245 | {
246 | // JSHint Default Configuration File (as on JSHint website)
247 | // See http://jshint.com/docs/ for more details
248 |
249 | "maxerr" : 50, // {int} Maximum error before stopping
250 |
251 | // Enforcing
252 | "bitwise" : true, // true: Prohibit bitwise operators (&, |, ^, etc.)
253 | "camelcase" : false, // true: Identifiers must be in camelCase
254 | "curly" : true, // true: Require {} for every new block or scope
255 | "eqeqeq" : true, // true: Require triple equals (===) for comparison
256 | "forin" : true, // true: Require filtering for..in loops with obj.hasOwnProperty()
257 | "immed" : false, // true: Require immediate invocations to be wrapped in parens e.g. `(function () { } ());`
258 | "indent" : 4, // {int} Number of spaces to use for indentation
259 | "latedef" : false, // true: Require variables/functions to be defined before being used
260 | "newcap" : false, // true: Require capitalization of all constructor functions e.g. `new F()`
261 | "noarg" : true, // true: Prohibit use of `arguments.caller` and `arguments.callee`
262 | "noempty" : true, // true: Prohibit use of empty blocks
263 | "nonew" : false, // true: Prohibit use of constructors for side-effects (without assignment)
264 | "plusplus" : false, // true: Prohibit use of `++` & `--`
265 | "quotmark" : false, // Quotation mark consistency:
266 | // false : do nothing (default)
267 | // true : ensure whatever is used is consistent
268 | // "single" : require single quotes
269 | // "double" : require double quotes
270 | "undef" : true, // true: Require all non-global variables to be declared (prevents global leaks)
271 | "unused" : true, // true: Require all defined variables be used
272 | "strict" : true, // true: Requires all functions run in ES5 Strict Mode
273 | "trailing" : false, // true: Prohibit trailing whitespaces
274 | "maxparams" : false, // {int} Max number of formal params allowed per function
275 | "maxdepth" : false, // {int} Max depth of nested blocks (within functions)
276 | "maxstatements" : false, // {int} Max number statements per function
277 | "maxcomplexity" : false, // {int} Max cyclomatic complexity per function
278 | "maxlen" : false, // {int} Max number of characters per line
279 |
280 | // Relaxing
281 | "asi" : false, // true: Tolerate Automatic Semicolon Insertion (no semicolons)
282 | "boss" : false, // true: Tolerate assignments where comparisons would be expected
283 | "debug" : false, // true: Allow debugger statements e.g. browser breakpoints.
284 | "eqnull" : false, // true: Tolerate use of `== null`
285 | "es5" : false, // true: Allow ES5 syntax (ex: getters and setters)
286 | "esnext" : false, // true: Allow ES.next (ES6) syntax (ex: `const`)
287 | "moz" : false, // true: Allow Mozilla specific syntax (extends and overrides esnext features)
288 | // (ex: `for each`, multiple try/catch, function expression…)
289 | "evil" : false, // true: Tolerate use of `eval` and `new Function()`
290 | "expr" : false, // true: Tolerate `ExpressionStatement` as Programs
291 | "funcscope" : false, // true: Tolerate defining variables inside control statements"
292 | "globalstrict" : false, // true: Allow global "use strict" (also enables 'strict')
293 | "iterator" : false, // true: Tolerate using the `__iterator__` property
294 | "lastsemic" : false, // true: Tolerate omitting a semicolon for the last statement of a 1-line block
295 | "laxbreak" : false, // true: Tolerate possibly unsafe line breakings
296 | "laxcomma" : false, // true: Tolerate comma-first style coding
297 | "loopfunc" : false, // true: Tolerate functions being defined in loops
298 | "multistr" : false, // true: Tolerate multi-line strings
299 | "proto" : false, // true: Tolerate using the `__proto__` property
300 | "scripturl" : false, // true: Tolerate script-targeted URLs
301 | "smarttabs" : false, // true: Tolerate mixed tabs/spaces when used for alignment
302 | "shadow" : false, // true: Allows re-define variables later in code e.g. `var x=1; x=2;`
303 | "sub" : false, // true: Tolerate using `[]` notation when it can still be expressed in dot notation
304 | "supernew" : false, // true: Tolerate `new function () { ... };` and `new Object;`
305 | "validthis" : false, // true: Tolerate using this in a non-constructor function
306 |
307 | // Environments
308 | "browser" : true, // Web Browser (window, document, etc)
309 | "couch" : false, // CouchDB
310 | "devel" : true, // Development/debugging (alert, confirm, etc)
311 | "dojo" : false, // Dojo Toolkit
312 | "jquery" : false, // jQuery
313 | "mootools" : false, // MooTools
314 | "node" : false, // Node.js
315 | "nonstandard" : false, // Widely adopted globals (escape, unescape, etc)
316 | "prototypejs" : false, // Prototype and Scriptaculous
317 | "rhino" : false, // Rhino
318 | "worker" : false, // Web Workers
319 | "wsh" : false, // Windows Scripting Host
320 | "yui" : false, // Yahoo User Interface
321 |
322 | // Legacy
323 | "nomen" : false, // true: Prohibit dangling `_` in variables
324 | "onevar" : false, // true: Allow only one `var` statement per function
325 | "passfail" : false, // true: Stop on first error
326 | "white" : false, // true: Check against strict whitespace and indentation rules
327 |
328 | // Custom Globals
329 | "predef" : [ ] // additional predefined global variables
330 | }
331 | snippetType
332 | 0
333 | uuidString
334 | 2059833F-B82E-4828-9D14-306E79D8FA5F
335 |
336 |
337 | abbreviation
338 | ,jsdelete
339 | abbreviationMode
340 | 0
341 | creationDate
342 | 2013-04-28T19:45:25Z
343 | label
344 | Remove Elem
345 | modificationDate
346 | 2016-06-28T21:50:16Z
347 | plainText
348 | document.querySelector('%filltext:name=elem%').parentNode.removeChild(document.querySelector('%filltext:name=elem%'))
349 | snippetType
350 | 0
351 | uuidString
352 | 1FF05B09-932D-4BB5-A37E-03D6F52D7B0B
353 |
354 |
355 | abbreviation
356 | ,jsafter
357 | abbreviationMode
358 | 0
359 | creationDate
360 | 2013-04-28T19:44:58Z
361 | label
362 | Add After Elem
363 | modificationDate
364 | 2016-06-28T21:50:25Z
365 | plainText
366 | document.querySelector('%|').insertAdjacentHTML('afterend', '<div></div>')
367 | snippetType
368 | 0
369 | uuidString
370 | 031A3C35-B1E7-4734-9CEB-43A5700898DC
371 |
372 |
373 | abbreviation
374 | ,jsbefore
375 | abbreviationMode
376 | 0
377 | creationDate
378 | 2013-04-28T19:44:23Z
379 | label
380 | Add Before Elem
381 | modificationDate
382 | 2016-06-28T21:50:46Z
383 | plainText
384 | document.querySelector('%|').insertAdjacentHTML('beforebegin', '<div></div>')
385 | snippetType
386 | 0
387 | uuidString
388 | D6C8711B-C193-46B5-A4C7-62F14676F713
389 |
390 |
391 | abbreviation
392 | ,jsprepend
393 | abbreviationMode
394 | 0
395 | creationDate
396 | 2013-04-28T19:43:54Z
397 | label
398 | Prepend Elem
399 | modificationDate
400 | 2016-06-28T21:50:55Z
401 | plainText
402 | document.querySelector('%|').insertAdjacentHTML('afterbegin', '<div></div>')
403 | snippetType
404 | 0
405 | uuidString
406 | C4578DE8-08B4-4BF0-86D1-509F9DAC00EB
407 |
408 |
409 | abbreviation
410 | ,jsappend
411 | abbreviationMode
412 | 0
413 | creationDate
414 | 2013-04-28T19:43:27Z
415 | label
416 | Append Elem
417 | modificationDate
418 | 2016-06-28T21:51:02Z
419 | plainText
420 | document.querySelector('%|').insertAdjacentHTML('beforeend', '<div></div>')
421 | snippetType
422 | 0
423 | uuidString
424 | 4B609346-453F-4480-9DD9-C503EC1DEC0F
425 |
426 |
427 | abbreviation
428 | ,jstoggleclass
429 | abbreviationMode
430 | 0
431 | creationDate
432 | 2013-04-28T19:43:00Z
433 | label
434 | Toggle Class
435 | modificationDate
436 | 2013-04-28T19:43:00Z
437 | plainText
438 | function toggleClass(elem, className) {
439 | var newClass = ' ' + elem.className.replace( /[\t\r\n]/g, ' ' ) + ' ';
440 | if (hasClass(elem, className)) {
441 | while (newClass.indexOf(' ' + className + ' ') >= 0 ) {
442 | newClass = newClass.replace( ' ' + className + ' ' , ' ' );
443 | }
444 | elem.className = newClass.replace(/^\s+|\s+$/g, '');
445 | } else {
446 | elem.className += ' ' + className;
447 | }
448 | }
449 | snippetType
450 | 0
451 | uuidString
452 | 492435ED-180D-4374-8266-8DEE4C3FE191
453 |
454 |
455 | abbreviation
456 | ,jsnext
457 | abbreviationMode
458 | 0
459 | creationDate
460 | 2013-04-28T19:37:29Z
461 | label
462 | Next Sibling
463 | modificationDate
464 | 2016-06-28T21:52:16Z
465 | plainText
466 | var next = document.querySelector('%|').nextSibling;
467 | while( next.nodeType > 1 ) next = next.nextSibling
468 | snippetType
469 | 0
470 | uuidString
471 | 74B6898E-F3C4-48E4-A41E-6A54B524DAB9
472 |
473 |
474 | abbreviation
475 | ,jsparent
476 | abbreviationMode
477 | 0
478 | creationDate
479 | 2013-04-28T19:37:04Z
480 | label
481 | Parent Node
482 | modificationDate
483 | 2016-06-28T21:52:26Z
484 | plainText
485 | document.querySelector('%|').parentNode
486 | snippetType
487 | 0
488 | uuidString
489 | C6751016-D563-4F84-B38B-9C3BDF6626ED
490 |
491 |
492 | abbreviation
493 | ,jsidelem
494 | abbreviationMode
495 | 0
496 | creationDate
497 | 2013-04-28T19:36:01Z
498 | label
499 | getElementById
500 | modificationDate
501 | 2013-04-28T19:36:01Z
502 | plainText
503 | document.getElementById('%|');
504 | snippetType
505 | 0
506 | uuidString
507 | 36BEEB70-1394-47D5-832B-DCA6E90E229B
508 |
509 |
510 | abbreviation
511 | ,jsquery
512 | abbreviationMode
513 | 0
514 | creationDate
515 | 2013-04-28T19:35:33Z
516 | label
517 | querySelectorAll
518 | modificationDate
519 | 2013-04-28T19:46:26Z
520 | plainText
521 | document.querySelectorAll('%|');
522 | snippetType
523 | 0
524 | uuidString
525 | 58BA30D4-582C-47EE-9254-7C55B7AC8B39
526 |
527 |
528 | abbreviation
529 |
530 | abbreviationMode
531 | 0
532 | creationDate
533 | 2013-04-27T06:54:02Z
534 | label
535 | Remove Hover Styles on iOS
536 | modificationDate
537 | 2013-04-27T06:54:09Z
538 | plainText
539 | if ('createTouch' in document)
540 | {
541 | try
542 | {
543 | var ignore = /:hover/;
544 | for (var i=0; i<document.styleSheets.length; i++)
545 | {
546 | var sheet = document.styleSheets[i];
547 | for (var j=sheet.cssRules.length-1; j>=0; j--)
548 | {
549 | var rule = sheet.cssRules[j];
550 | if (rule.type === CSSRule.STYLE_RULE && ignore.test(rule.selectorText))
551 | {
552 | sheet.deleteRule(j);
553 | }
554 | }
555 | }
556 | }
557 | catch(e){}
558 | }
559 | snippetType
560 | 0
561 | uuidString
562 | FA1CA9E7-5BAF-4178-8BC9-D2F125C0897E
563 |
564 |
565 | abbreviation
566 | ,congroup
567 | abbreviationMode
568 | 0
569 | creationDate
570 | 2013-03-30T21:00:02Z
571 | label
572 | console.group()
573 | modificationDate
574 | 2013-09-06T17:20:46Z
575 | plainText
576 | console.group('%|');
577 | // ...
578 | console.groupEnd();
579 | snippetType
580 | 0
581 | uuidString
582 | 080EA584-C95E-437E-A83B-76B752F64A2A
583 |
584 |
585 | abbreviation
586 | ,contime
587 | abbreviationMode
588 | 0
589 | creationDate
590 | 2013-03-30T20:58:53Z
591 | label
592 | console.time()
593 | modificationDate
594 | 2013-09-06T17:20:42Z
595 | plainText
596 | console.time('%filltext:name=label%');
597 | // … %|
598 | console.timeEnd('%filltext:name=label%');
599 | snippetType
600 | 0
601 | uuidString
602 | D002082B-7286-47C5-809D-3B466D5FA086
603 |
604 |
605 | abbreviation
606 | ,conassert
607 | abbreviationMode
608 | 0
609 | creationDate
610 | 2013-03-30T20:58:31Z
611 | label
612 | console.assert()
613 | modificationDate
614 | 2013-09-06T17:20:31Z
615 | plainText
616 | console.assert(condition, '');
617 | snippetType
618 | 0
619 | uuidString
620 | 82698DED-95EB-4D72-A760-DB16D7269610
621 |
622 |
623 | abbreviation
624 | ,conerror
625 | abbreviationMode
626 | 0
627 | creationDate
628 | 2013-03-30T20:57:40Z
629 | label
630 | console.error()
631 | modificationDate
632 | 2013-09-06T17:20:27Z
633 | plainText
634 | console.error('%|');
635 | snippetType
636 | 0
637 | uuidString
638 | E8A1FA7F-03CA-4A48-BD2A-87DE80869253
639 |
640 |
641 | abbreviation
642 | ,conwarn
643 | abbreviationMode
644 | 0
645 | creationDate
646 | 2013-03-30T20:57:22Z
647 | label
648 | console.warn()
649 | modificationDate
650 | 2013-09-06T17:20:23Z
651 | plainText
652 | console.warn('%|');
653 | snippetType
654 | 0
655 | uuidString
656 | DD4C2A22-D5DD-4336-80BF-4101B6552405
657 |
658 |
659 | abbreviation
660 | ,Oconlog
661 | abbreviationMode
662 | 0
663 | creationDate
664 | 2013-03-30T20:56:51Z
665 | label
666 | console.log() JS object
667 | modificationDate
668 | 2013-09-06T17:20:19Z
669 | plainText
670 | console.log('%O', %|);
671 | snippetType
672 | 0
673 | uuidString
674 | 2DA72793-3FB1-4C81-834F-E739117D1E11
675 |
676 |
677 | abbreviation
678 | ,oconlog
679 | abbreviationMode
680 | 0
681 | creationDate
682 | 2013-03-30T20:56:06Z
683 | label
684 | console.log() DOM element
685 | modificationDate
686 | 2013-09-06T17:20:14Z
687 | plainText
688 | console.log('%o', %|);
689 | snippetType
690 | 0
691 | uuidString
692 | 06FC6112-906D-4B9A-8D7E-688A3EA04E6E
693 |
694 |
695 | abbreviation
696 | ,cconlog
697 | abbreviationMode
698 | 0
699 | creationDate
700 | 2013-03-30T20:55:30Z
701 | label
702 | console.log() Styled
703 | modificationDate
704 | 2013-09-06T17:20:10Z
705 | plainText
706 | console.log('%c%|', 'color: blue;');
707 | snippetType
708 | 0
709 | uuidString
710 | AECD1D5C-4895-4D9B-AE38-CCB27FE713E8
711 |
712 |
713 | abbreviation
714 | ,conlog
715 | abbreviationMode
716 | 0
717 | creationDate
718 | 2013-03-30T20:55:06Z
719 | label
720 | console.log()
721 | modificationDate
722 | 2013-09-06T17:20:00Z
723 | plainText
724 | console.log('%|');
725 | snippetType
726 | 0
727 | uuidString
728 | A72DBF08-9D2D-403C-B788-55E6E9A21107
729 |
730 |
731 | abbreviation
732 | ,eprevent
733 | abbreviationMode
734 | 0
735 | creationDate
736 | 2013-02-19T15:31:39Z
737 | label
738 | PreventDefault
739 | modificationDate
740 | 2013-02-19T15:31:51Z
741 | plainText
742 | e.preventDefault();
743 | snippetType
744 | 0
745 | uuidString
746 | 9522592E-04B9-4C4B-B6E9-0C0979535323
747 |
748 |
749 | abbreviation
750 | ,objtemplate
751 | abbreviationMode
752 | 0
753 | creationDate
754 | 2013-02-19T15:30:32Z
755 | label
756 | Object Template
757 | modificationDate
758 | 2016-06-28T21:53:40Z
759 | plainText
760 | var obj = {
761 | init: function( config ) {
762 | this.config = config;
763 |
764 | this.cache();
765 | this.bindEvents();
766 |
767 | //...
768 | },
769 |
770 | cache: function() {
771 | // this.container = $('div');
772 | },
773 |
774 | bindEvents: function() {
775 | // on click/change/etc methods
776 | }
777 | }
778 | snippetType
779 | 0
780 | uuidString
781 | 4F7B1F54-75C4-4BE7-A0F7-430B4C444EF8
782 |
783 |
784 | abbreviation
785 | ,usestrict
786 | abbreviationMode
787 | 0
788 | creationDate
789 | 2013-02-10T23:28:24Z
790 | label
791 | Use Strict
792 | modificationDate
793 | 2013-09-06T17:19:49Z
794 | plainText
795 | 'use strict';
796 | snippetType
797 | 0
798 | uuidString
799 | 56215D41-1E2B-4693-B235-5DB4656AE3A3
800 |
801 |
802 | abbreviation
803 | ,docready
804 | abbreviationMode
805 | 0
806 | creationDate
807 | 2010-06-10T03:55:51Z
808 | label
809 |
810 | modificationDate
811 | 2010-06-10T03:56:15Z
812 | plainText
813 | $(document).ready(function(){
814 | %|
815 | });
816 | snippetType
817 | 0
818 | uuidString
819 | 344F334A-135A-4CFC-A599-6DB8486C23CE
820 |
821 |
822 | abbreviation
823 | ,siaf
824 | abbreviationMode
825 | 0
826 | creationDate
827 | 2012-04-29T20:24:58Z
828 | label
829 | selfInvokingFunction
830 | modificationDate
831 | 2013-10-09T16:26:12Z
832 | plainText
833 | (function() {
834 |
835 | }());
836 | snippetType
837 | 0
838 | uuidString
839 | A890DC7E-FA65-4203-8E0B-13FF4293B5CB
840 |
841 |
842 | abbreviation
843 | ,es6objtemplate
844 | abbreviationMode
845 | 0
846 | creationDate
847 | 2013-02-19T15:30:32Z
848 | label
849 | Object Template ES6
850 | modificationDate
851 | 2016-06-28T21:55:20Z
852 | plainText
853 | var %| = {
854 | init() {
855 | this.cache();
856 | this.bindEvents();
857 | }
858 |
859 | cache() {
860 |
861 | }
862 |
863 | bindEvents() {
864 |
865 | }
866 | }
867 | snippetType
868 | 0
869 | uuidString
870 | 7F3B2AEB-D3A0-4585-BBD5-3F3036D8A09B
871 |
872 |
873 | abbreviation
874 | ,tmto
875 | abbreviationMode
876 | 0
877 | creationDate
878 | 2016-06-28T22:04:03Z
879 | label
880 | TweenMax.to
881 | modificationDate
882 | 2016-06-28T22:05:15Z
883 | plainText
884 | TweenMax.to(%filltext:name=el%, %filltext:name=time:default=0.2%, {
885 | %|
886 | });
887 | snippetType
888 | 0
889 | uuidString
890 | AA8DEA64-216E-4C51-AF54-E1102A30B778
891 |
892 |
893 |
894 |
895 |
--------------------------------------------------------------------------------
/Markdown.textexpander:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | groupInfo
6 |
7 | expandAfterMode
8 | 0
9 | groupName
10 | Markdown
11 |
12 | snippetsTE2
13 |
14 |
15 | abbreviation
16 | ,mdlink
17 | abbreviationMode
18 | 0
19 | creationDate
20 | 2011-02-17T16:21:30Z
21 | label
22 |
23 | modificationDate
24 | 2012-06-23T09:03:41Z
25 | plainText
26 | [%|](%clipboard)
27 | snippetType
28 | 0
29 | uuidString
30 | 1B502493-8615-489F-9B5E-177846D89096
31 |
32 |
33 | abbreviation
34 | ""
35 | abbreviationMode
36 | 0
37 | creationDate
38 | 2011-02-17T16:23:56Z
39 | label
40 |
41 | modificationDate
42 | 2011-02-18T14:15:16Z
43 | plainText
44 | "%|"
45 | snippetType
46 | 0
47 | uuidString
48 | ED2B2C7F-53AF-41BE-9614-76A981160A48
49 |
50 |
51 | abbreviation
52 | c"
53 | abbreviationMode
54 | 0
55 | creationDate
56 | 2011-02-17T16:24:16Z
57 | label
58 |
59 | modificationDate
60 | 2011-02-17T16:24:16Z
61 | plainText
62 | "%clipboard"
63 | snippetType
64 | 0
65 | uuidString
66 | 0F445249-9BB0-42B2-90AB-8081AEBB7FC8
67 |
68 |
69 | abbreviation
70 | c<
71 | abbreviationMode
72 | 0
73 | creationDate
74 | 2011-02-17T16:26:35Z
75 | label
76 |
77 | modificationDate
78 | 2011-02-17T16:26:35Z
79 | plainText
80 | <%clipboard>
81 | snippetType
82 | 0
83 | uuidString
84 | 7E3C1183-BE55-4F73-9835-8CBD2ED9B1B1
85 |
86 |
87 | abbreviation
88 | c(
89 | abbreviationMode
90 | 0
91 | creationDate
92 | 2011-02-17T16:26:53Z
93 | label
94 |
95 | modificationDate
96 | 2011-02-17T16:26:53Z
97 | plainText
98 | (%clipboard)
99 | snippetType
100 | 0
101 | uuidString
102 | E47539DB-96C0-47DE-B440-FDDF2486B628
103 |
104 |
105 | abbreviation
106 | ((
107 | abbreviationMode
108 | 0
109 | creationDate
110 | 2011-02-17T16:27:06Z
111 | label
112 |
113 | modificationDate
114 | 2011-02-17T16:27:06Z
115 | plainText
116 | (%|)
117 | snippetType
118 | 0
119 | uuidString
120 | D54CC3E9-CA84-4316-8BA1-38BBAC91023A
121 |
122 |
123 | abbreviation
124 | ''
125 | abbreviationMode
126 | 0
127 | creationDate
128 | 2011-02-17T16:27:24Z
129 | label
130 |
131 | modificationDate
132 | 2011-02-18T14:14:25Z
133 | plainText
134 | '%|'
135 | snippetType
136 | 0
137 | uuidString
138 | D4AC6522-6ED5-4F87-A7AD-27B377269316
139 |
140 |
141 | abbreviation
142 | [[
143 | abbreviationMode
144 | 0
145 | creationDate
146 | 2011-02-17T16:27:40Z
147 | label
148 |
149 | modificationDate
150 | 2011-02-17T16:27:40Z
151 | plainText
152 | [%|]
153 | snippetType
154 | 0
155 | uuidString
156 | 50801A24-93D6-46B8-A776-A79B6FD2DA5D
157 |
158 |
159 | abbreviation
160 | <<
161 | abbreviationMode
162 | 0
163 | creationDate
164 | 2011-02-17T16:29:02Z
165 | label
166 |
167 | modificationDate
168 | 2011-02-17T16:29:02Z
169 | plainText
170 | <%|>
171 | snippetType
172 | 0
173 | uuidString
174 | 912F060F-9020-4C6B-9C4F-B85F49BE6E62
175 |
176 |
177 | abbreviation
178 | c[
179 | abbreviationMode
180 | 0
181 | creationDate
182 | 2011-02-17T16:31:36Z
183 | label
184 |
185 | modificationDate
186 | 2011-02-17T16:31:36Z
187 | plainText
188 | [%clipboard]
189 | snippetType
190 | 0
191 | uuidString
192 | DB22C24B-D55B-4A7F-B421-C02680BBC5C3
193 |
194 |
195 |
196 |
197 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # TextExpander Snippets
2 |
3 | Collection of my TextExpander snippets used for daily coding and what-not.
4 |
5 | ## Snippet Groups
6 |
7 | #### Characters
8 |
9 | Set of characters or silly emoticons. Inspired from Brett Terpstra's with a few of my own thrown in.
10 |
11 | Personal favorite being: (╯°□°)╯︵ ┻━┻
12 |
13 | #### HTML
14 |
15 | Snippets for basic markup. Like the CSS group, not commonly used while working in Sublime or other IDEs, but useful nonetheless.
16 |
17 | #### HTML Type Entities
18 |
19 | Collection of HTML entities for correctly rendering out quotation, math symbols and more.
20 |
21 | #### CSS
22 |
23 | Shortcuts for different css props.
24 |
25 | #### JavaScript
26 |
27 | Simple patterns and snippets used in everyday js development. Basic object template, self-invoking anon function, jQuery doc ready and the wide range of console.log uses included.
28 |
29 | #### Filesystem
30 |
31 | Shortcuts for moving around the system while working within the Terminal.
32 |
33 | #### Markdown
34 |
35 | I write a lot using Markdown.
36 |
37 | #### Utilities
38 |
39 | Basic shortcuts for things like spitting out times and dates, fetching my internal or external IP, git commit template, etc.
40 |
--------------------------------------------------------------------------------
/Utilities.textexpander:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | groupInfo
6 |
7 | expandAfterMode
8 | 0
9 | groupName
10 | Utilities
11 |
12 | snippetsTE2
13 |
14 |
15 | abbreviation
16 | ,hta-socialredirect
17 | abbreviationMode
18 | 0
19 | creationDate
20 | 2013-05-14T19:08:53Z
21 | label
22 | Apache Social Redirects
23 | modificationDate
24 | 2013-05-14T19:09:46Z
25 | plainText
26 | <IfModule mod_alias.c>
27 | Redirect permanent /@ https://twitter.com/:you
28 | Redirect permanent /~ https://github.com/:you
29 | Redirect permanent /+ https://plus.google.com/:you
30 | Redirect permanent /f https://facebook.com/:you
31 | Redirect permanent /in https://linkedin.com/in/:you
32 | </IfModule>
33 | snippetType
34 | 0
35 | uuidString
36 | 08BD9DAA-9229-424B-AA14-09306A1E2354
37 |
38 |
39 | abbreviation
40 | ,hta-hotlinking
41 | abbreviationMode
42 | 0
43 | creationDate
44 | 2011-12-09T18:41:40Z
45 | label
46 | .htaccess - Prevent hotlinking
47 | modificationDate
48 | 2012-11-11T03:13:42Z
49 | plainText
50 | RewriteEngine On
51 | #Replace ?mysite\.com/ with your blog url
52 | RewriteCond %{HTTP_REFERER} !^http://(.+\.)?mysite\.com/ [NC]
53 | RewriteCond %{HTTP_REFERER} !^$
54 | #Replace /images/nohotlink.jpg with your "don't hotlink" image url
55 | RewriteRule .*\.(jpe?g|gif|bmp|png)$ /images/nohotlink.jpg [L]
56 | snippetType
57 | 0
58 | uuidString
59 | 0352928A-30C6-4419-A0E9-71685D421C33
60 |
61 |
62 | abbreviation
63 | ,httpdre
64 | abbreviationMode
65 | 0
66 | creationDate
67 | 2012-08-24T18:34:14Z
68 | label
69 |
70 | modificationDate
71 | 2012-08-24T18:34:14Z
72 | plainText
73 | /etc/init.d/httpd reload
74 | snippetType
75 | 0
76 | uuidString
77 | F9A8A837-0BD3-4C6F-9597-7B911FDAC5AA
78 |
79 |
80 | abbreviation
81 | ,simplehtaccess
82 | abbreviationMode
83 | 0
84 | creationDate
85 | 2012-10-11T17:41:38Z
86 | label
87 | Simple Rewrite
88 | modificationDate
89 | 2012-11-11T03:13:17Z
90 | plainText
91 | RewriteEngine on
92 | RewriteCond %{REQUEST_FILENAME} !-d
93 | RewriteCond %{REQUEST_FILENAME}\.html -f
94 | RewriteRule ^([^/]+)/$ $1.html
95 |
96 | # Forces a trailing slash to be added
97 | RewriteCond %{REQUEST_FILENAME} !-f
98 | RewriteCond %{REQUEST_FILENAME} !-d
99 | RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
100 | RewriteRule (.*)$ /$1/ [R=301,L]
101 | snippetType
102 | 0
103 | uuidString
104 | F4020D2A-9369-4581-A01A-F510A045882C
105 |
106 |
107 | abbreviation
108 | ,editorconfig
109 | abbreviationMode
110 | 0
111 | creationDate
112 | 2012-09-06T04:03:58Z
113 | label
114 | .editorconfig
115 | modificationDate
116 | 2012-09-06T04:04:22Z
117 | plainText
118 | # editorconfig.org
119 | root = true
120 |
121 | [*]
122 | indent_style = space
123 | indent_size = 2
124 | end_of_line = lf
125 | charset = utf-8
126 | trim_trailing_whitespace = true
127 | insert_final_newline = true
128 | snippetType
129 | 0
130 | uuidString
131 | 831D59EB-166D-43F0-AD2D-CA2B2B88706A
132 |
133 |
134 | abbreviation
135 | fdate
136 | abbreviationMode
137 | 0
138 | creationDate
139 | 2010-03-15T17:58:49Z
140 | label
141 | Finder Friendly Date
142 | modificationDate
143 | 2010-03-15T17:59:07Z
144 | plainText
145 | %Y-%m-%d
146 | snippetType
147 | 0
148 | uuidString
149 | E262062C-A60F-4E58-A703-E5139600229B
150 |
151 |
152 | abbreviation
153 | ddate
154 | abbreviationMode
155 | 0
156 | creationDate
157 | 2009-05-25T07:35:44Z
158 | label
159 |
160 | modificationDate
161 | 2009-05-25T07:35:44Z
162 | plainText
163 | %B %e, %Y
164 | snippetType
165 | 0
166 | uuidString
167 | 1439FACF-93A6-4BFB-973A-46AC9F6810D2
168 |
169 |
170 | abbreviation
171 | ttime
172 | abbreviationMode
173 | 0
174 | creationDate
175 | 2009-05-25T07:35:44Z
176 | label
177 |
178 | modificationDate
179 | 2009-05-25T07:35:44Z
180 | plainText
181 | %1I:%M %p
182 | snippetType
183 | 0
184 | uuidString
185 | 82D4C176-0506-4745-B373-AB2BA3CF5B7F
186 |
187 |
188 | abbreviation
189 | ftdate
190 | abbreviationMode
191 | 0
192 | creationDate
193 | 2012-09-20T21:59:28Z
194 | label
195 | Full Date + Time
196 | modificationDate
197 | 2012-09-20T22:00:38Z
198 | plainText
199 | %Y-%m-%d %H:%M:%S
200 | snippetType
201 | 0
202 | uuidString
203 | DBD1B51D-12E8-41E2-AD97-99A3720D8046
204 |
205 |
206 | abbreviation
207 | ,myip
208 | abbreviationMode
209 | 0
210 | creationDate
211 | 2012-10-05T07:49:49Z
212 | label
213 | Ext IP
214 | modificationDate
215 | 2012-10-05T07:50:24Z
216 | plainText
217 | #!/bin/sh
218 | /bin/echo -n `curl http://api.externalip.net/ip/`
219 | snippetType
220 | 3
221 | uuidString
222 | 9E379299-6B32-4E6A-BBD7-52D5C646AEBC
223 |
224 |
225 | abbreviation
226 | ,wifiip
227 | abbreviationMode
228 | 0
229 | creationDate
230 | 2012-10-05T07:47:48Z
231 | label
232 | Wifi IP
233 | modificationDate
234 | 2012-10-05T07:47:48Z
235 | plainText
236 | #!/bin/sh
237 | /bin/echo -n `ipconfig getifaddr en1`
238 | snippetType
239 | 3
240 | uuidString
241 | 8485F458-AD3E-4ECA-9CF0-E7CF30CEBFD8
242 |
243 |
244 | abbreviation
245 | ,ethip
246 | abbreviationMode
247 | 0
248 | creationDate
249 | 2012-10-05T07:47:08Z
250 | label
251 | Ethernet IP
252 | modificationDate
253 | 2012-10-05T07:47:46Z
254 | plainText
255 | #!/bin/sh
256 | /bin/echo -n `ipconfig getifaddr en4`
257 | snippetType
258 | 3
259 | uuidString
260 | 9C57A920-2800-434B-AA5F-7FF1D940CECE
261 |
262 |
263 | abbreviation
264 | ,showhidden
265 | abbreviationMode
266 | 0
267 | creationDate
268 | 2012-09-24T17:55:59Z
269 | label
270 | Show Mac OS X Hidden Files
271 | modificationDate
272 | 2012-09-24T17:56:15Z
273 | plainText
274 | defaults write com.apple.Finder AppleShowAllFiles YES
275 | snippetType
276 | 0
277 | uuidString
278 | AC842922-8DE1-4969-8CF0-A0995ED4EE3F
279 |
280 |
281 | abbreviation
282 | ,refreshhosts
283 | abbreviationMode
284 | 0
285 | creationDate
286 | 2015-09-11T04:57:45Z
287 | label
288 | Refresh Hosts
289 | modificationDate
290 | 2015-09-11T04:57:58Z
291 | plainText
292 | dscacheutil -flushcache; sudo killall -HUP mDNSResponder
293 | snippetType
294 | 0
295 | uuidString
296 | A766F63D-E76A-4B54-AA3B-57909573D8E7
297 |
298 |
299 | abbreviation
300 | ,gitc
301 | abbreviationMode
302 | 0
303 | creationDate
304 | 2015-07-26T23:34:01Z
305 | label
306 | Git Commit Template
307 | modificationDate
308 | 2016-02-16T23:57:48Z
309 | plainText
310 | [%fillpopup:name=type:default=Feature:Update:Fix:Docs:Style:Refactor:Test:Chore:RELEASE%] %filltext:name=subject%
311 |
312 | %fillarea:name=body%
313 |
314 | %fillpart:name=GitHub Issue:default=no%GitHub-Issue: %filltext:name=Github Issue%%fillpartend%
315 | %fillpart:name=Ticket:default=no%Tickets: %filltext:name=Ticket ID%%fillpartend%
316 | %fillpart:name=Additional Notes:default=no%See-Also: %filltext:name=See Also Notes%%fillpartend%
317 | %fillpart:name=Fixes:default=no%Fixes: %filltext:name=Tickets Fixed%%fillpartend%
318 | %fillpart:name=Resolves:default=no%Resolves: %filltext:name=Tickets Resolved%%fillpartend%
319 | %fillpart:name=Closes:default=no%Closes: %filltext:name=Tickets Closed%%fillpartend%
320 |
321 | snippetType
322 | 0
323 | uuidString
324 | 80D3B1CF-42F0-4C5A-A006-0D1C5417869C
325 |
326 |
327 |
328 |
329 |
--------------------------------------------------------------------------------