forked from wesbos/wesbos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tips.js
2024 lines (2024 loc) Β· 81.9 KB
/
tips.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const tips = [
{
text:
'π₯ Hot Tip: On any GitHub repo, hit t to filter for files by name - no more clicking through nested directories. http://t.co/Ec2BgoZXZW',
url: 'https://twitter.com/wesbos/status/598135346220703744',
time: 1431441554000,
},
{
text:
'π₯ Completions for all possible flags and descriptions for ls by typing ls - + tab in Oh-My-Zsh http://t.co/AkuJMo1qE2',
url: 'https://twitter.com/wesbos/status/601073643318280192',
time: 1432142098000,
},
{
text:
'π₯ Use the tree command to visually list directories. Add t() to .zshrc file for quick + easy defaults. http://t.co/R2nZdazEWW',
url: 'https://twitter.com/wesbos/status/601426471240998912',
time: 1432226219000,
},
{
text:
'π₯ CheatSheet is a free app that pops up shortcuts for any application when you hold β http://t.co/lztlLDa6OI http://t.co/rJkP7ZTjcM',
url: 'https://twitter.com/wesbos/status/601771346113200129',
time: 1432308443000,
},
{
text:
'π₯ Max out your keyboard, trackpad & mouse. Speed up and keep carpel tunnel at bay by minimizing repetitive movements. http://t.co/QMyi7Zvz3m',
url: 'https://twitter.com/wesbos/status/602853362321723393',
time: 1432566416000,
},
{
text:
'π₯ Checkout the pure ZSH prompt from @sindresorhus https://t.co/tCfGtzwrwx http://t.co/KI0kSvyvAN',
url: 'https://twitter.com/wesbos/status/603246877346267136',
time: 1432660238000,
},
{
text:
'π₯ Primer for Sublime Text is a really nice and refreshing light theme + colour scheme. https://t.co/lu8wo7zDp4 http://t.co/rTItkgyg5O',
url: 'https://twitter.com/wesbos/status/603632694413635585',
time: 1432752223000,
},
{
text:
'π₯ Here are the Web Development focused Google #io15 talks that will be live streamed today and tomorrow. http://t.co/moqzAk85Gw',
url: 'https://twitter.com/wesbos/status/603940617228394496',
time: 1432825638000,
},
{
text:
"π₯ BrowserRemote - Debug your user's browser remotely via Chrome DevTools.\n\nhttps://t.co/BRExyDWQaS http://t.co/BDbYU21x3R",
url: 'https://twitter.com/wesbos/status/605747005671882753',
time: 1433256315000,
},
{
text:
'π₯Protip: Use CSS :not() instead of applying and unapplying borders on navigations. Supported wherever last-child is http://t.co/HPJ1Rw3jZH',
url: 'https://twitter.com/wesbos/status/606144483562913792',
time: 1433351081000,
},
{
text:
'π₯ Check out the Dracula colour scheme for Sublime Text, ZSH, Atom, Vim + more https://t.co/rRIYNUaZLC http://t.co/63Y6vw5zdU',
url: 'https://twitter.com/wesbos/status/606525749672181760',
time: 1433441982000,
},
{
text: 'π₯ NPM protip: --save-dev in can be replaced with just -D',
url: 'https://twitter.com/wesbos/status/606567770398932992',
time: 1433452000000,
},
{
text:
'π₯ Shortcut querySelector to familiar function names with .bind() http://t.co/VZjZ7XflqX',
url: 'https://twitter.com/wesbos/status/608341616173182977',
time: 1433874918000,
},
{
text:
'π₯ You can now write gulpfiles in ES6/7 by naming it gulpfile.babel.js. Nice example: https://t.co/HtxY6Ofpi6 http://t.co/3LwevcdH0J',
url: 'https://twitter.com/wesbos/status/608987962370424832',
time: 1434029019000,
},
{
text:
'π₯ Oceanic Next theme for Sublime Text is both gorgeous and optimized for ES6 + JSX π\n\nhttps://t.co/YINM8Zey03 http://t.co/pArCWgnDV3',
url: 'https://twitter.com/wesbos/status/609058219755831296',
time: 1434045770000,
},
{
text:
'π₯ ES6 Features - a set of simple code examples detailing how to use new JavaScript features https://t.co/DcncW1p1Dl http://t.co/O31EIxolFw',
url: 'https://twitter.com/wesbos/status/609388024422477825',
time: 1434124401000,
},
{
text:
'π₯ Purify CSS detects unused CSS in your app. Works with dyanmically generated classes from jQuery/angular/react//js https://t.co/jPFXNNJ9O6',
url: 'https://twitter.com/wesbos/status/610496447117529088',
time: 1434388670000,
},
{
text:
'π₯ Fantastic guide β React.js for Angular devs http://t.co/L7YlsDEXPT http://t.co/iE66za55po',
url: 'https://twitter.com/wesbos/status/611194247782404096',
time: 1434555038000,
},
{
text:
'π₯ Everything you need to know about SVG on the web https://t.co/5KdqoSt1yZ http://t.co/wXq6uD4Tvt',
url: 'https://twitter.com/wesbos/status/613381353111851008',
time: 1435076485000,
},
{
text:
'π₯ Project not setup for ES6? Dip your toes into ES6 by using `template strings` in debugging http://t.co/SWpB8jtxsl',
url: 'https://twitter.com/wesbos/status/614117527115964417',
time: 1435252002000,
},
{
text:
'π₯ JavaScript in one pic https://t.co/nXRvLPoaDY http://t.co/MSSVavARGq',
url: 'https://twitter.com/wesbos/status/614821701730222080',
time: 1435419891000,
},
{
text:
'π₯ Coverr is unsplash for big, beautiful, free background videos. 7 new videos every monday! http://t.co/YokYbxMOQe http://t.co/pNwHRbsdhw',
url: 'https://twitter.com/wesbos/status/615886819452792832',
time: 1435673835000,
},
{
text:
'π₯ Dead simple explanation of async and defer on script tags http://t.co/78B4h2zazj http://t.co/izYaci5O2r',
url: 'https://twitter.com/wesbos/status/618205379533475840',
time: 1436226622000,
},
{
text:
'π₯ My Smashing Mag article on the command line is up! \n\nhttp://t.co/QdJfhm8Yvv http://t.co/LJVyb6HMI6',
url: 'https://twitter.com/wesbos/status/620618452223430656',
time: 1436801944000,
},
{
text:
'π₯ Styl_s - A WordPress Starter Theme Using Underscores & Stylus by @luclemo https://t.co/sSWTC9rW0U http://t.co/q9QUc3LNZX',
url: 'https://twitter.com/wesbos/status/620979985214410757',
time: 1436888140000,
},
{
text:
'π₯ CSS Quantity Query Generator http://t.co/lHw1Zxy207 http://t.co/L5LY3fv8fQ',
url: 'https://twitter.com/wesbos/status/621341602443739136',
time: 1436974356000,
},
{
text:
"π₯ Remap your caps lock key for window mgmt. I've been using this for a year and I love it!\n\nhttp://t.co/HvLRhBPNz5 http://t.co/l0fq2EZfj8",
url: 'https://twitter.com/wesbos/status/622042590876008448',
time: 1437141485000,
},
{
text:
'π₯CSS Protip: Use negative nth-child to select items 1 through n http://t.co/WjOEDaNy6S',
url: 'https://twitter.com/wesbos/status/622054570240282624',
time: 1437144341000,
},
{
text:
'π₯ Theia checks node apps for required packages, adds them to package.json and installs them for you.\n\nhttps://t.co/8I1xvLVWew\n\nπ @wisamjs',
url: 'https://twitter.com/wesbos/status/622093598197088256',
time: 1437153646000,
},
{
text:
'π₯ Little @CodePen demo on how to select items X β Y with CSS:\n\nhttp://t.co/Uu0XApaQSQ',
url: 'https://twitter.com/wesbos/status/623213659360096256',
time: 1437420689000,
},
{
text:
'π₯ SlackerYou - A simple, real time chatroom built with Firebase and jQuery.\n\nhttps://t.co/QhZ5rUDVrd http://t.co/SVwd0eIbAG',
url: 'https://twitter.com/wesbos/status/623509075054100480',
time: 1437491122000,
},
{
text:
'π₯ Use Ctrl + M to jump between open+close brackets in Sublime Text! http://t.co/T2es4wvJoS',
url: 'https://twitter.com/wesbos/status/624229106821902336',
time: 1437662791000,
},
{
text:
'π₯ Slack protip: @here notifies only the people who are currently online and available',
url: 'https://twitter.com/wesbos/status/625680774516228097',
time: 1438008895000,
},
{
text:
'π₯ Terminal Tip: Use Option + Click to make your cursor go where you want. No more holding down arrow keys! http://t.co/yQNTIBV7gW',
url: 'https://twitter.com/wesbos/status/626055204488658944',
time: 1438098166000,
},
{
text:
'π₯ New bite-sized podcast on front end development β https://t.co/7SDrrFiTOv http://t.co/gYCeX1ezzD',
url: 'https://twitter.com/wesbos/status/630747600451317760',
time: 1439216921000,
},
{
text:
'π₯ PostCSS: The Future is Here. A nice talk from @harismahmood89 \n\nhttp://t.co/5QshzBmP1r',
url: 'https://twitter.com/wesbos/status/631452921993887745',
time: 1439385083000,
},
{
text:
"π₯ Flexbox makes this left/right/vertical center 'menu' layout super easy without floats. http://t.co/iD6CiAgGFb http://t.co/GvfwlyuUDH",
url: 'https://twitter.com/wesbos/status/631890355810467840',
time: 1439489375000,
},
{
text:
"π₯ Dead simple explanation of JavaScript's .bind() and how to use it to change what `this` refers to. π @dave_lunny \n\nhttps://t.co/Bt7mGOZOOd",
url: 'https://twitter.com/wesbos/status/632182782974816257',
time: 1439559095000,
},
{
text:
"π₯ Use Lodash's _.has() to easily check for nested property existence http://t.co/lBmjsfNfn8",
url: 'https://twitter.com/wesbos/status/633301405445427200',
time: 1439825795000,
},
{
text:
'π₯ Press ? in any Google application to quickly toggle a list of keyboard shortcuts. http://t.co/5waBVPVJ3a',
url: 'https://twitter.com/wesbos/status/634000703367680001',
time: 1439992521000,
},
{
text:
'π₯ Delete word-by-word in Sublime Text by holding ALT when hitting backspace. http://t.co/dUYLPPiQf8',
url: 'https://twitter.com/wesbos/status/634366483594739712',
time: 1440079730000,
},
{
text:
'π₯ Use Ctrl + Backspace to delete word-by-word in a camelCaseString #SublimeText http://t.co/6diLlOE0Ju',
url: 'https://twitter.com/wesbos/status/634389009540624385',
time: 1440085100000,
},
{
text:
'π₯ Highlight CSS colors and Sass/Stylus/Less variables in Sublime Text http://t.co/eDD0jvm7XW http://t.co/n9KWNWHGRE',
url: 'https://twitter.com/wesbos/status/634747120860438530',
time: 1440170481000,
},
{
text:
'π₯ Use flexbox space-between to get rid of nth/first/last-child margin hacks when working with column gutters. http://t.co/K1EFYZK1jf',
url: 'https://twitter.com/wesbos/status/635853983144243200',
time: 1440434377000,
},
{
text:
'π₯ DevTools Tips For Sublime Text Users. A new post I worked on with @addyosmani \n\nhttps://t.co/uJJJUSnCHs http://t.co/kvsOwFyXGQ',
url: 'https://twitter.com/wesbos/status/635887965709860864',
time: 1440442479000,
},
{
text:
'π₯ Text Pastry allows you to insert incremental numbers for each cursor in Sublime Text http://t.co/sRVGOXlaZD',
url: 'https://twitter.com/wesbos/status/636552982608244736',
time: 1440601032000,
},
{
text:
'π₯ Watch me try (and succeed) at fixing my poor Google Page Speed score. \n\nhttp://t.co/ivIE3wKXsV http://t.co/DzjIYDiDd8',
url: 'https://twitter.com/wesbos/status/636609558253711361',
time: 1440614520000,
},
{
text:
'π₯gulp-shell is a handy utility that lets you run shell commands right from inside your gulp tasks\n\nhttps://t.co/mUtleqAaDT',
url: 'https://twitter.com/wesbos/status/639453200412749825',
time: 1441292498000,
},
{
text:
'π₯ ES6 destructuring lets you to create and assign multiple variables at once http://t.co/3CIJlV0wTa',
url: 'https://twitter.com/wesbos/status/639817631512424448',
time: 1441379385000,
},
{
text:
'π₯ With ES6, we can finally set default parameter values in JavaScript\n\nhttp://t.co/CxJ7uhQeXV http://t.co/iNnRvG5cqK',
url: 'https://twitter.com/wesbos/status/639862224278810624',
time: 1441390016000,
},
{
text:
'π₯ Handy command for when you have changed your .gitignore _after_ you have added / committed files http://t.co/VPafQJwNQZ',
url: 'https://twitter.com/wesbos/status/641261433938968576',
time: 1441723614000,
},
{
text:
'π₯ Better console gives you easy-on-the-eyes debugging in Node.js by improving default console methods. http://t.co/0v38ZmnoG2',
url: 'https://twitter.com/wesbos/status/643501524480561153',
time: 1442257693000,
},
{
text:
"π₯ Use twitter's api entirely client side by hijacking their own embed code. \n\nhttp://t.co/eFTeF4tRnI http://t.co/hUlUWrK4w4",
url: 'https://twitter.com/wesbos/status/644202200495878144',
time: 1442424747000,
},
{
text:
"π₯ Three less JavaScript Regexes you'll have to write with ES6 startsWith(), endsWith() and includes() http://t.co/XVTAFMZOho",
url: 'https://twitter.com/wesbos/status/644897369000030209',
time: 1442590489000,
},
{
text:
'π₯ Return multiple values from a function with ES6 destructuring http://t.co/FlQX8C4yYV',
url: 'https://twitter.com/wesbos/status/645956967660294145',
time: 1442843117000,
},
{
text:
'π₯ Turn any Google Spreadsheet into a JSON API with Sheetsu\n\nhttp://t.co/WqMSQt6WG9',
url: 'https://twitter.com/wesbos/status/646000814767517697',
time: 1442853571000,
},
{
text:
'π₯ Pick + choose which variables get created from a returned object with ES6 destructing http://t.co/w2YqbHUESX',
url: 'https://twitter.com/wesbos/status/646319161086341120',
time: 1442929470000,
},
{
text:
'π₯ Say goodbye to indexOf() and use ES7 .includes() to check if an item is inside an array http://t.co/D3NaiJo3ra',
url: 'https://twitter.com/wesbos/status/646684687465758721',
time: 1443016618000,
},
{
text:
'π₯Quickly change the case of a string in Sublime Text. Handy when you are using file names in descriptions: http://t.co/xYRAMj3jst',
url: 'https://twitter.com/wesbos/status/647048635817984000',
time: 1443103391000,
},
{
text:
'π₯ Pipe your Emmet shortcuts into |bem to automatically get Block, Element, Modifier markup! http://t.co/H7DNaeIGvi',
url: 'https://twitter.com/wesbos/status/648907410929664000',
time: 1443546557000,
},
{
text:
'π₯ Slides for my #fronteers15 talk on Modern Workflow & Tooling! Video of the talk to come β http://t.co/UIzXMZtkLc',
url: 'https://twitter.com/wesbos/status/652412833272057856',
time: 1444382315000,
},
{
text:
'π₯ How do you get the most out of a tech conference? \n\nhttp://t.co/nDY0bmSUDy',
url: 'https://twitter.com/wesbos/status/654349474962083840',
time: 1444844046000,
},
{
text:
'π₯ ncu checks for npm module updates and will update your package.json for you. \n\nhttps://t.co/DM5CfXTmRB http://t.co/r4Pks4gryG',
url: 'https://twitter.com/wesbos/status/655116993847160833',
time: 1445027037000,
},
{
text:
'π₯ Bracketless ES6 arrow functions allow for clean, single line functions without an explicit return http://t.co/uzDC08wGSL',
url: 'https://twitter.com/wesbos/status/656142886057062400',
time: 1445271629000,
},
{
text:
'π₯ Understanding ES6 Arrow Functions for jQuery Developers https://t.co/bSFZctmH4a',
url: 'https://twitter.com/wesbos/status/656178022286954496',
time: 1445280006000,
},
{
text:
'π₯ Easily swap two JavaScript Variables with ES6 Destructuring https://t.co/rHNvsxqU6E',
url: 'https://twitter.com/wesbos/status/657228855917150208',
time: 1445530544000,
},
{
text:
'π₯You can style ALT text on broken or blocked images. Handy for HTML emails.\n\nhttps://t.co/cz5P4EzMyX https://t.co/Vhjw3Os9d3',
url: 'https://twitter.com/wesbos/status/657299554530824193',
time: 1445547400000,
},
{
text:
'π₯ Keep a tidy console β group together console data with https://t.co/o64SR1bMYz() and console.groupEnd() https://t.co/WyDDAC4Lru',
url: 'https://twitter.com/wesbos/status/658636908302610432',
time: 1445866250000,
},
{
text:
'π₯ Use an ES6 Spread to quickly convert a NodeList to a real Array. https://t.co/cVy6RpkBgv',
url: 'https://twitter.com/wesbos/status/659370653850599425',
time: 1446041189000,
},
{
text:
'π₯ Increase the number of "Recent Places" osx shows in save dialogs. \n\nhttps://t.co/Q8CruJWyOt https://t.co/8aUwJ35j6o',
url: 'https://twitter.com/wesbos/status/659732671002578944',
time: 1446127500000,
},
{
text:
'π₯ Announcing React For Beginners! Level up your JavaScript skills β learn React.js with me! https://t.co/bZMbvTjPtQ https://t.co/4t1F0wNqyy',
url: 'https://twitter.com/wesbos/status/661551827301695492',
time: 1446561221000,
},
{
text:
'π₯ Use ES6 `Template Strings` for easy, library free HTML templating in JavaScript https://t.co/NtgqIAlLOr',
url: 'https://twitter.com/wesbos/status/664094742947323904',
time: 1447167499000,
},
{
text:
'π₯ The proper way to use Emmet expansions and get className working in React JSX \n\nhttps://t.co/oStsCeQcxp @emmetio https://t.co/NhFNRQhcVF',
url: 'https://twitter.com/wesbos/status/666340543740309504',
time: 1447702940000,
},
{
text:
'π₯ You can use square brackets to reference a JavaScript method stored in a variable https://t.co/QzL7M5cyvX',
url: 'https://twitter.com/wesbos/status/666386685844848640',
time: 1447713941000,
},
{
text:
'π₯ My talk on Modern Workflow & Tooling is up! π₯\n\nhttps://t.co/GAwOMGJBLo https://t.co/He7waza0Dc',
url: 'https://twitter.com/wesbos/status/666638394932510720',
time: 1447773953000,
},
{
text:
'π₯ New tool: CSS Cursor quick reference + visualizer. https://t.co/FvjXe10JZ2 https://t.co/13UNTkOKaV',
url: 'https://twitter.com/wesbos/status/667391012541599744',
time: 1447953391000,
},
{
text:
'π₯ Use AlignTab in Sublime Text to quickly align content based on common separators or even a regex! https://t.co/odCQlWvwwp',
url: 'https://twitter.com/wesbos/status/667725319546101761',
time: 1448033096000,
},
{
text: 'π₯ Β© 2015',
url: 'https://twitter.com/wesbos/status/667756154391388160',
time: 1448040448000,
},
{
text:
'π₯ The new Chrome Dev Tools UI for mobile emulation is a huge step up. Currently available in Canary. https://t.co/xyduq64jHG',
url: 'https://twitter.com/wesbos/status/668071689985458176',
time: 1448115677000,
},
{
text:
'π₯Clearing the air: Is WordPress being rewritten in Node.js and React?\n\nhttps://t.co/AuVZ1Glr7D',
url: 'https://twitter.com/wesbos/status/669175837808320512',
time: 1448378927000,
},
{
text:
"π₯ ES6 improved object syntax is great when an object's property is named the same as the variable it's being set to https://t.co/wzDJnLdMKA",
url: 'https://twitter.com/wesbos/status/670255569811341312',
time: 1448636355000,
},
{
text:
'π₯ CSS4 is getting case insensitive matching on attribute selectors! https://t.co/7LQBi2VUcL',
url: 'https://twitter.com/wesbos/status/672139536680398848',
time: 1449085527000,
},
{
text:
'π₯ ES6 Easy Wins β a talk by @RChristiani \n\nhttps://t.co/p8szuQYH3d',
url: 'https://twitter.com/wesbos/status/674607938242142208',
time: 1449674040000,
},
{
text:
'π₯ An Intro to using npm and ES6 Modules for Front End Development\n\nhttps://t.co/x3zALgB1Mb',
url: 'https://twitter.com/wesbos/status/676462961066553344',
time: 1450116312000,
},
{
text:
'π₯ Open all merge conflicts or currently changed files in Sublime Text, Atom or Vim\n\nPut alias in .zshrc or .bashrc https://t.co/lkvz9VRKFO',
url: 'https://twitter.com/wesbos/status/684375042101137408',
time: 1452002699000,
},
{
text:
'π₯ MoveTab for Sublime Text will let you re-order your tabs with your keyboard. https://t.co/FqfWzJUodU https://t.co/j3o7RwVt7B',
url: 'https://twitter.com/wesbos/status/687647017485479936',
time: 1452782799000,
},
{
text:
'π₯ Include directories when creating a new file in Sublime Text to quickly scaffold nested folder structure https://t.co/Gxd8mD3nZX',
url: 'https://twitter.com/wesbos/status/689174685842460672',
time: 1453147024000,
},
{
text:
"π₯ You can now use autoprefixer based on your own site's Google Analytics data https://t.co/3bWx2pkQ7h https://t.co/CsOEtGxC9w",
url: 'https://twitter.com/wesbos/status/689468957057687553',
time: 1453217183000,
},
{
text:
'π₯ CSS Highlight on Hover Code Along π½ https://t.co/8WYyaFRKlm https://t.co/gD52BfxwOj',
url: 'https://twitter.com/wesbos/status/689863542355329024',
time: 1453311260000,
},
{
text:
'π₯ Quickly hack on and share React examples with https://t.co/EiwHcr5SzH\n\nhttps://t.co/Q6jobn3wmB',
url: 'https://twitter.com/wesbos/status/690198083486007296',
time: 1453391021000,
},
{
text:
'π₯ Use Emmet in JavaScript to quickly value bump variables https://t.co/dceui0AGKH',
url: 'https://twitter.com/wesbos/status/690548776524734464',
time: 1453474632000,
},
{
text:
'π₯ View your recently used branches with `git latest`. \n\nπ Add this to your ~/.gitconfig https://t.co/4JQDlQEl0E',
url: 'https://twitter.com/wesbos/status/692012780598112256',
time: 1453823678000,
},
{
text:
'π₯ CSS background-position accepts 4 values to allow you to anchor a background image and position it from there https://t.co/N7yxn6udGx',
url: 'https://twitter.com/wesbos/status/692425353495736322',
time: 1453922043000,
},
{
text:
'π₯ Need to log lots of arguments? Use console.table with an ES6 enhanced object literal. https://t.co/qsnjX8p2NZ',
url: 'https://twitter.com/wesbos/status/694229929332908032',
time: 1454352287000,
},
{
text:
"π₯ CSS variables can be updated with JavaScript. Something you can't do with Sass! \n\nDemo: https://t.co/9I0Y3uFlkv https://t.co/vmd88AKvky",
url: 'https://twitter.com/wesbos/status/697059929136328704',
time: 1455027012000,
},
{
text:
'π₯ CSS variables can also be used in animations and transitions! \n\nDemo: https://t.co/SaQm9DDsQe https://t.co/AVd7hr7ZAr',
url: 'https://twitter.com/wesbos/status/697808716905652224',
time: 1455205537000,
},
{
text:
'π₯ Text Expander will match the case of your abbreviation. Super handy for when you use snippets to start a sentence. https://t.co/RQUu68KJF9',
url: 'https://twitter.com/wesbos/status/699591752806629376',
time: 1455630646000,
},
{
text:
'π₯ Chrome Dev Tools now has color palettes for Material Design, custom swatches, similar shades and document colors! https://t.co/UYUwGYFz0J',
url: 'https://twitter.com/wesbos/status/699662688683692032',
time: 1455647558000,
},
{
text:
'π₯ JavaScript Challenge #2\n\nReplicate this filter functionality. Stay sharp and good luck!\n\nhttps://t.co/VkAJgkJZ86 https://t.co/Oqt9xLjLoL',
url: 'https://twitter.com/wesbos/status/699967550621380608',
time: 1455720243000,
},
{
text:
'π₯ I documented my Animated Gif workflow for everyone who has been asking\n\nhttps://t.co/lqYxrjOWuH https://t.co/c4aKNaJHCJ',
url: 'https://twitter.com/wesbos/status/700380565833412608',
time: 1455818713000,
},
{
text:
'π₯ iTerm3 has some nice new features - the best one is the ability to view inline images. https://t.co/KtRgiOW4lx https://t.co/yf0M3sdKnA',
url: 'https://twitter.com/wesbos/status/700684778811498497',
time: 1455891244000,
},
{
text:
'π₯ Use a variable to hold and call your methods instead of using if statements #javascript https://t.co/rH2ygKeBSr',
url: 'https://twitter.com/wesbos/status/701450025944145920',
time: 1456073693000,
},
{
text:
'π₯ Mistype a git command? Immediately re-run the correct command with\n\ngit config --global help.autocorrect -1 https://t.co/Fuqg01ZE3Z',
url: 'https://twitter.com/wesbos/status/701864888818208768',
time: 1456172604000,
},
{
text:
'π₯ Most text editors will wrap highlighted selections when typing the quote or bracket you need. https://t.co/IXVoLNs2wV',
url: 'https://twitter.com/wesbos/status/702541523523649538',
time: 1456333926000,
},
{
text:
"π₯ What's the deal with const objects in JavaScript? https://t.co/vsju6g77nW",
url: 'https://twitter.com/wesbos/status/704328255436939264',
time: 1456759916000,
},
{
text:
'π₯ β + Click URLs and file paths in iTerm to open them in your editor or browser. https://t.co/hNBo4pybbD',
url: 'https://twitter.com/wesbos/status/704678249477992448',
time: 1456843361000,
},
{
text:
'π₯ Announcing Mastering Markdown β a free mini-series to learn Markdown and related tooling! https://t.co/rNnqm0PyTf https://t.co/iO4DvmCecG',
url: 'https://twitter.com/wesbos/status/705768641401331712',
time: 1457103331000,
},
{
text:
'π₯ Use console.time() and console.timeEnd() to easily time any type of operation https://t.co/I8HcEMyDPZ',
url: 'https://twitter.com/wesbos/status/707598960223981569',
time: 1457539713000,
},
{
text: 'π₯ Git Hot Tips\n\nhttps://t.co/4XmQAKQM7N',
url: 'https://twitter.com/wesbos/status/707932134523084800',
time: 1457619148000,
},
{
text:
'π₯ π Slides for my Workflow + Tooling talk at #SmashingConf. Thanks to everyone who came out! \n\nhttps://t.co/C4Z7mWTyCk',
url: 'https://twitter.com/wesbos/status/710158577068068866',
time: 1458149973000,
},
{
text:
'π₯ Independent Properties for CSS Transforms are coming! You can use Post CSS in the mean time. https://t.co/Hk2Pu1Ty5D',
url: 'https://twitter.com/wesbos/status/711942951446781953',
time: 1458575401000,
},
{
text:
'π₯ Simple example on how to use Browsersync to expose your realtime localhost to the world \n\nhttps://t.co/tAuWbamJ8o https://t.co/RxF57j5jnJ',
url: 'https://twitter.com/wesbos/status/712312163323420672',
time: 1458663428000,
},
{
text:
'π₯ Use ES6 destructuring to easily assign nested data to variables. https://t.co/kOYP7nAmUD',
url: 'https://twitter.com/wesbos/status/712753264257662976',
time: 1458768595000,
},
{
text:
'π₯ One of my most used plugins β ChangeQuotes for Sublime Text swaps and escapes between single and double quotes https://t.co/3sNLCt64R9',
url: 'https://twitter.com/wesbos/status/714462848810745857',
time: 1459176191000,
},
{
text:
'π₯Terminal Tip: Use curly brackets to speed up the creation of multiple files with similar names: https://t.co/yYMkknvFoV',
url: 'https://twitter.com/wesbos/status/714479411593142272',
time: 1459180140000,
},
{
text:
'π₯ Use `git push origin head` if you have hard to type or long branch names https://t.co/4WupZuHtSp',
url: 'https://twitter.com/wesbos/status/714905092445618176',
time: 1459281630000,
},
{
text:
'π₯ CSS4 is getting media queries for elements https://t.co/YxVezTcdV8',
url: 'https://twitter.com/wesbos/status/715891994355220480',
time: 1459516926000,
},
{
text:
"π₯ Use JSON.stringify()'s third param to pretty print an object to your page https://t.co/N8OLllUhVa",
url: 'https://twitter.com/wesbos/status/715939096934350850',
time: 1459528156000,
},
{
text:
'π₯ ES6 Tip: Use Destructuring to create multiple variables from an array of data: https://t.co/wO3wWFEpVX',
url: 'https://twitter.com/wesbos/status/717018537806708738',
time: 1459785515000,
},
{
text:
'π₯Use `mix-blend-mode:multiply;` in your CSS to knock out white backgrounds from images\n\nPen: https://t.co/vE9cmxaG5K https://t.co/v5VQEDoVH3',
url: 'https://twitter.com/wesbos/status/717052613934649344',
time: 1459793640000,
},
{
text:
'π₯ ChangeQuotes now supports backticks as well https://t.co/WHBFeHDWA9',
url: 'https://twitter.com/wesbos/status/717387374095761408',
time: 1459873453000,
},
{
text:
'π₯ Use the npm `open` package to open the your default browser to localhost when starting up an express server https://t.co/c0Rtf8a4QZ',
url: 'https://twitter.com/wesbos/status/717436062596001796',
time: 1459885061000,
},
{
text:
'π₯ 15 Slack tips in 5 minutes \nhttps://t.co/qspdZVcvBK https://t.co/1vBg3IWniW',
url: 'https://twitter.com/wesbos/status/717458051163365376',
time: 1459890303000,
},
{
text:
'π₯ With ES6, your JavaScript functions can have default parameter values https://t.co/qLN0XASRNP',
url: 'https://twitter.com/wesbos/status/718078725208690692',
time: 1460038284000,
},
{
text:
'π₯Use the `tree` command to pretty print your directory listing. I use `t` with some nice defaults: https://t.co/d0fR36208Y',
url: 'https://twitter.com/wesbos/status/718448514846625792',
time: 1460126448000,
},
{
text:
'π₯ Here is everything we are getting in ES7: https://t.co/PRzZlG5ogq',
url: 'https://twitter.com/wesbos/status/720325814605127680',
time: 1460574031000,
},
{
text:
'π₯ Pop an echo in front of your commands to do a "test run" before running a command with brace expansion https://t.co/wscietCha4',
url: 'https://twitter.com/wesbos/status/720676684232593408',
time: 1460657685000,
},
{
text:
'π₯ Slides from my @industryconf talk: Start Using ES6 Today!\n\nhttps://t.co/sRMrihrMw5 https://t.co/XBRPyJqWky',
url: 'https://twitter.com/wesbos/status/722788398008651776',
time: 1461161157000,
},
{
text:
'π₯ My @onedayoutconf talk on creating products will be streaming live at 8:45AM EST #ODO16 https://t.co/3FjElMjZ5a',
url: 'https://twitter.com/wesbos/status/726018425768783872',
time: 1461931256000,
},
{
text:
'π₯ Use brew cask to install desktop applications via the command line https://t.co/ePwMoQXy3y',
url: 'https://twitter.com/wesbos/status/727833672590598144',
time: 1462364044000,
},
{
text:
'π₯ CSS calc() _is_ whitespace sensitive, so commit this to memory and your future self will thank you. https://t.co/BkfrDd4P8I',
url: 'https://twitter.com/wesbos/status/729687284937850880',
time: 1462805980000,
},
{
text:
'π₯ DevTools Tips For Sublime Text Users. A gif-filled article by @addyosmani\nand I \nhttps://t.co/Rrs3Wv6tch https://t.co/6NZdYkw3tK',
url: 'https://twitter.com/wesbos/status/730016241323278336',
time: 1462884409000,
},
{
text:
'π₯ JavaScript Challenge! Sort this list of band names, but ignore articles "a" and "the". \n\nhttps://t.co/f1HmAty7yy https://t.co/JMtKgeNQty',
url: 'https://twitter.com/wesbos/status/730061721356906497',
time: 1462895252000,
},
{
text:
'π₯Whipped up a quick Gulp script to write and inline emails written in Jade and Stylus https://t.co/y67dXypt5N https://t.co/eGvq9HW37J',
url: 'https://twitter.com/wesbos/status/730828395450384384',
time: 1463078042000,
},
{
text:
'π₯ You can use font css on broken or blocked images to style the alt text in HTML emails https://t.co/hEQYYfy3dw',
url: 'https://twitter.com/wesbos/status/731180258787893248',
time: 1463161933000,
},
{
text:
"π₯ Announcing Learn Redux! My latest video course on React + Redux. Grab it now, it's free! https://t.co/jG3uoKJGZU https://t.co/EUpu7dn9NN",
url: 'https://twitter.com/wesbos/status/732217248090329088',
time: 1463409170000,
},
{
text:
'π₯ Use .every() and .some() to check if array items meet your needs https://t.co/v8dGZE52Q8',
url: 'https://twitter.com/wesbos/status/735109695908814848',
time: 1464098783000,
},
{
text:
'π₯ You can run JS right inside of ES6 Template strings. Handy for ternary operators: https://t.co/lTr9AIGnWI',
url: 'https://twitter.com/wesbos/status/735528285204054017',
time: 1464198583000,
},
{
text:
'π₯ Use ES6 Modules, npm and Babel without tooling overhead. SystemJS runs in the browser β perfect for quick examples https://t.co/Dpfz1CCE5K',
url: 'https://twitter.com/wesbos/status/738012845296787457',
time: 1464790948000,
},
{
text:
'π₯ CSS4 might be getting selectors for drag + drop items \n\nhttps://t.co/TuvY4QKRmg https://t.co/oM0OHvYvrF',
url: 'https://twitter.com/wesbos/status/739833468092350464',
time: 1465225018000,
},
{
text:
'π₯ Reminder: Flexbox treats flex-container :before and :after as first class flex-items. They can really goof up alignment + centering',
url: 'https://twitter.com/wesbos/status/743861247486099456',
time: 1466185316000,
},
{
text:
'π₯ New 5 min video: How To Manually Fix Git Merge Conflicts \n\nhttps://t.co/q5d64hLEom',
url: 'https://twitter.com/wesbos/status/748172037458436096',
time: 1467213088000,
},
{
text:
'π₯ Public APIs: a community curated list of over 200 open + free JSON APIs. \n\nhttps://t.co/vu27UUxAee https://t.co/IZTX8pIm66',
url: 'https://twitter.com/wesbos/status/748512912319385600',
time: 1467294359000,
},
{
text:
'π₯ ESLint Plugins to lint JavaScript inside of HTML <script> tags or markdown code blocks \n\nhttps://t.co/3H96UZPBZr\nhttps://t.co/dTxC1WVNQp',
url: 'https://twitter.com/wesbos/status/750328183921061888',
time: 1467727154000,
},
{
text:
'π₯ You can format currency with .toLocaleString() https://t.co/Dagiw1QcNM',
url: 'https://twitter.com/wesbos/status/750423643323297792',
time: 1467749913000,
},
{
text: 'π₯ Object.freeze() vs Object.seal() https://t.co/ZaX6FXhJbZ',
url: 'https://twitter.com/wesbos/status/751440102367326209',
time: 1467992256000,
},
{
text:
'π₯ In CSS you can set multiple backgrounds each with their own size property https://t.co/Pjlw6Rz5qL',
url: 'https://twitter.com/wesbos/status/753234911549587457',
time: 1468420171000,
},
{
text:
'π₯ Announcing ES6 for Everyone!\n\nStrengthen your core JavaScript skills\nand master ES6 β https://t.co/TKXb11wZJO https://t.co/YtmsHOeCqv',
url: 'https://twitter.com/wesbos/status/755086023420444672',
time: 1468861511000,
},
{
text:
'π₯ Use β + Shift + V to paste and strip formatting + indentation. Works everywhere! https://t.co/MakEymw36L',
url: 'https://twitter.com/wesbos/status/760103025541259264',
time: 1470057657000,
},
{
text:
'π₯ Use ES6 destructuring to pull Promise.all() data into their own variables. https://t.co/Mgq9WOtLp4',
url: 'https://twitter.com/wesbos/status/760941806515355649',
time: 1470257638000,
},
{
text:
'π₯ You can use ES6 destructuring inside of Jade/Pug templates too! https://t.co/4pd2B7lFhN',
url: 'https://twitter.com/wesbos/status/761201915069927425',
time: 1470319653000,
},
{
text:
'π₯ If you have dropped IE8, you can move to using the Date.now() static method to get timestamps. https://t.co/WMeoALztYT',
url: 'https://twitter.com/wesbos/status/762642338262814722',
time: 1470663077000,
},
{
text:
'π₯ The ZSH Syntax Highlighting plugin gives great visual feedback in real time: https://t.co/scD5dVKsc1',
url: 'https://twitter.com/wesbos/status/762693805707497472',
time: 1470675348000,
},
{
text:
'π₯ Released Cobalt2 for HyperTerm!\n\nhttps://t.co/kZaSmiWYfe https://t.co/f44VgE5M1s',
url: 'https://twitter.com/wesbos/status/763757339937693696',
time: 1470928914000,
},
{
text: 'π₯ A few ES6 tricks to make and fill Arrays https://t.co/680Eq5XgB8',
url: 'https://twitter.com/wesbos/status/763833586432643072',
time: 1470947093000,
},
{
text:
'π₯ Sublime ChangeQuotes now supports ES6 backticks. Easily switch to template strings when adding a variable https://t.co/6rHg3vZThP',
url: 'https://twitter.com/wesbos/status/765622612550713344',
time: 1471373630000,
},
{
text:
'π₯ Use concurrently to run two node processes and pipe everything into a single terminal tab. https://t.co/MiewRVEAy9',
url: 'https://twitter.com/wesbos/status/765926725071036416',
time: 1471446136000,
},
{
text:
'π₯ Use HTML5 pushstate to remove ugly UTM params from Google Analytics links. Been using for 2 years - works great! https://t.co/ciIqlOyuLQ',
url: 'https://twitter.com/wesbos/status/766702800868741120',
time: 1471631167000,
},
{
text:
'π₯ React FAQ: an extensive list of resources that explain the whys, hows and WTFs of React \n\nhttps://t.co/MgH7eHvpkm',
url: 'https://twitter.com/wesbos/status/768132501487378433',
time: 1471972034000,
},
{
text:
'π₯ Need to know the name of a variable when logging it? You can use ES6 object shorthand to display them https://t.co/Etvn9Mv19Z',
url: 'https://twitter.com/wesbos/status/768532398032158720',
time: 1472067376000,
},
{
text:
'π₯ Babili is UglifyJS for ES6+ code using Babel! https://t.co/bpyBeLdELg',
url: 'https://twitter.com/wesbos/status/769171388544479232',
time: 1472219724000,
},
{
text:
"π₯ When docs don't make sense or you need more context, search for real world examples on GitHub code search https://t.co/vgHl8MQTiV",
url: 'https://twitter.com/wesbos/status/769194752784859136',
time: 1472225294000,
},
{
text: 'π₯ let, const and var scoping 101\n\nhttps://t.co/kiiuW9eCZe',
url: 'https://twitter.com/wesbos/status/770697923873103873',
time: 1472583678000,
},
{
text:
"π₯ jQuery's .one() in vanilla JS: Set once boolean in addEventListener() to unbind after the first event. https://t.co/BsWK20w5Jw",
url: 'https://twitter.com/wesbos/status/770997793871855617',
time: 1472655173000,
},
{
text:
'π₯ Use Goto Symbol in Sublime Text β βR β and @media to quickly jump to the media query you are looking for. https://t.co/R30BtECwed',
url: 'https://twitter.com/wesbos/status/773192292035244033',
time: 1473178382000,
},
{
text:
'π₯ CSS4 :placeholder-shown selector can be used to show + hide labels without JS\n\nDemo π https://t.co/pnUq6FTKlU https://t.co/t22jsxXEIZ',
url: 'https://twitter.com/wesbos/status/774260903005057024',
time: 1473433159000,
},
{
text:
'π₯ Nova is a nice new colour scheme from @trevordmiller for Sublime/Atom/Term/Vim/Life\n\nhttps://t.co/WbnMe2Vi50 https://t.co/hhDwnM4znX',
url: 'https://twitter.com/wesbos/status/779402006423306240',
time: 1474658893000,
},
{
text:
'π₯ Chrome dev tools is getting a really handy shadow editor! Just landed in canary. https://t.co/apqKmW754u',