-
Notifications
You must be signed in to change notification settings - Fork 4
/
pending
6489 lines (6489 loc) · 149 KB
/
pending
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
benwalks/Lets-Build-Instagram-Free-Book
benwilcock/microservice-sampler
beplaya/Wagon
bertinetto/staple
beschulz/wav2json
betars/Face-Resources
bgrins/videoconverter.js
bgstaal/ofxShivaVG
bharath272/sds_eccv2014
bhardin/jekyll-seo-script
cforth/stock
chrome/markable
CodeMontageHQ/codemontage
coldstone/easyasp
colebemis/feather
cole-trapnell-lab/cufflinks
ColeXm/CCAdsPlayView
coliff/bootstrap-ie7
colindresj/saffron
ColinEberhardt/CETableViewBinding
ColinEberhardt/LinqToObjectiveC
ColinEberhardt/ReactiveFlickrSearch
datamade/openness-project-nmid
deeplearning4j/deeplearning4j
ENCP/CNNdroid
estevaofon/angry-birds-python
FutureWorkshops/FWTPopover
HSAFoundation/HSA-Drivers-Linux-AMD
hsusmita/GrowingTextViewHandler-objc
hsusmita/ResponsiveLabel
HTBox/allReady
HTBox/crisischeckin
html5cat/redactor-js
http2/http2-spec
http2/http2-test
httpete-ire/typer
htygithub/machine-learning-python
huaisha1224/zhihu_to_evernote
huang303513/Design-Pattern-For-iOS
huang303513/UILayoutOfiOS
huanghua581/laravel-backend
huanghua581/laravel-wechat-sdk
huanghua581/notes
huanglizhuo/kotlin-in-chinese
Huangtuzhi/AlibabaRecommand
Huangtuzhi/ife-task
huangxuan518/HXTagsView
Huanhoo/HHHorizontalPagingView
HuanMeng0/ServerSpeederCrackScript
huashiyiqike/LSTM-MATLAB
huawei-noah/streamDM
hubertr/Swell
huclengyue/GoldDemo
hugofirth/laravel-mailchimp
HugoMatilla/AudioPlayerView
HugoMatilla/Effective-JAVA-Summary
hugs/tapsterbot
huhuanming/qiniu_upload
hujewelz/HUPhotoBrowser
humblec/dockit
humphd/nohost
hunk/SlideMenu3D
hunspell/hunspell
hunterhug/taobaoscrapy
HunterLarco/voxel.css
HuoLanguage/huo
huoxy/farmer
huseyinbabal/expressSimpleBlog
hussachai/play-scalajs-showcase
hussius/deeplearning-biology
HustLion/mentohust
hustlzp/permission
Huxpro/css-sucks-2015
Huxpro/huxpro.github.io
huxq17/SwipeCardsView
huxq17/XRefreshView
Huyamin150/-dampView-springingView
huynguyencong/NHNetworkTime
huzhifeng/py12306
hwclass/awesome-sound
hwz/chirp
hydrogen-music/hydrogen
hypercube1024/firefly
hyperoslo/SwiftSnippets
hyrathb/mentohust
hyspace/flappy
IBM-Bluemix/docs
ichikaway/cakeplus
ichord/sketch-divine-proportions
icing/mod_h2
icnc/icnc
icodebuster/transition.js
icomefromthenet/ReverseRegex
icons8/flat-color-icons
icons8/welovesvg
icons8/windows-10-icons
icsharpcode/SharpDevelop
icsharpcode/WpfDesigner
ictxiangxin/larbin
icyblazek/IKAnimatedImageView
iDay/FHSegmentedViewController
idcos/osinstall
ideaismobile/AKLocationManager
ideasonpurpose/ansible-playbooks
ideawu/Objective-C-RSA
ideawu/sim
Ideon/SmudgeKit
Idered/cssParentSelector
idibidiart/AllSeeingEye
Idnan/SoundCloud-Waveform-Generator
idno/Known
idriskhenchil/Fort.js
idris-maps/gis-with-javascript-tutorial
iefserge/eshttp
ifactorylab/IFVideoPicker
ifactorylab/librtmp-iOS
ifactorylab/rtmp-wrapper
ifandelse/Knockout.js-External-Template-Engine
ifandelse/machina.js
ifightcrime/bootstrap-growl
ifitdoesntwork/DAExpandAnimation
ifLab/WeCenterMobile-Api
IFTTT/FastttCamera
IFTTT/JazzHands
IFTTT/jot
ifyour/Hosts-for-Surge
igaro/app
igeek-YZ/HFRecycleView
IgniteUI/ignite-ui
IgniteUI/igniteui-angular
IgniteUI/igniteui-angular2
ign/ShareThis
igor-alexandrov/wiselinks
IgorAntun/node-chat
igorescobar/jQuery-Mask-Plugin
igormatyushkin014/Sensitive
iGranDav/GDSheetController
igrigorik/node-spdyproxy
iheartradio/open-m3u8
ihgoo/AllInOne
ihrupin/samples
iiunknown/iscroll5.doc.cn
ijason/FaceCamTest
iKevinY/EulerPy
ikizir/HohhaDynamicXOR
iKrelve/Kanner
iKrelve/KuaiHu
Iktwo/QuteLauncher
ilendemli/gumer-psn-php
iliketomatoes/tabellajs
illuspas/nginx-rtmp-win32
iloire/cachirulovalleydirectory
iloire/math-race
iltercengiz/ICViewPager
ilTofa/janusnotes
ilyavolodin/eslint-plugin-backbone
imagecms/ImageCMS
imakewebthings/deck.js
imalexyang/ExamStack
imanee/imanee
imanolarrieta/angrybirds
imbrianj/switchBoard
IMD-Business-School/Quink
Imgur/Hermes
imistyrain/OpenDL
imjustd/flexbox-playground
ImmortalZ/jellyball
immzz/zhihu-scrapy
imochen/hotcss
imperavi/kube
imperugo/StackExchange.Redis.Extensions
imRainChen/Mega-WeChat
imsardine/winappdriver
imsky/holder
imtiger/HappyEnglish
imulus/retinajs
imweb/mobile
in28minutes/SpringIn28Minutes
in28minutes/SpringMvcStepByStep
ina-foss/amalia.js
inamiy/YIFullScreenScroll
inbasic/iaextractor
inbasic/ignotifier
incrediblesound/story-graph
Indatus/ranger
indeedeng/imhotep
individual11/Scroll-To
indragiek/INDANCSClient
indragiek/OEGridView
indrajithi/Audio-Visualizer
indy256/Full-stack-Developer-Interview-Questions-and-Answers
Inexika/Inexika-Custom-Controls
inferjay/AndroidDevTools
inferjay/GradlePluginUserGuideCN
infinite-scroll/infinite-scroll
infobyte/evilgrade
Infogosoft/jsdicom
inikulin/dmn
inikulin/ineed
Intrinsically-Sublime/Printable-Lathe-V2
intrip/laravel-authentication-acl
inuyaksa/jquery.nicescroll
ioflo/ioflo
ioneday/ImageSelector
ionescu007/VisualUefi
IonicMaterialDesign/ionic-material-starter
ionide/ionide-vscode-fsharp
ioriiod0/orchid
iOS-10-Stuffs/Decrypted-Kernels
iOS-Developer-Documents-Chinese/iOS-Developer-Documents-Chinese
jbtule/NicePlayer
jc3213/soWatch-mk2
jcampbell05/xcake
JCash/voronoi
jcavar/refresher
jcavar/xcfui
jcblw/zoomy-plugin
jcgay/maven-color
jcgregorio/httplib2
jchahoud/BRConferences
jclagache/spring-data-mybatis
jcs/endless
jcs/lobsters
jcs/payphone
jcs/triptracker
jctissier/Euro2016_TerminalApp
jcutler/Missing-E
jcward/vscode-haxe
jdan/isomer
JDare/ClankBundle
jdarling/d3rrc
jdbcdslog/jdbcdslog
JDDJJ/RxJoke
jdfwarrior/Workflows
jdiamond/Nustache
jdittrich/quickMockup
jdkanani/smalleditor
jdnichollsc/Ionic-Starter-Template
jdnichollsc/Phaser-Kinetic-Scrolling-Plugin
jdonaldson/promhx
jdunmire/HC05
jeanpan/react-native-camera-roll-picker
jeanphorn/wordlist
jeasonstudio/CN-VScode-Docs
JeasonWong/BezierLoadingView
JeasonWong/NewsTemplate
jeaye/jeayeson
jecelyin/920-text-editor-v2
jedda/Counterpart
jedld/pretentious
Jeffail/gabs
Jeffail/tunny
jeffbryner/NBDServer
jeffheaton/aifh
jeffkaufman/icdiff
jeffkibuule/JSKTimerView
JeffLi1993/java-core-learning-example
JeffLi1993/java-designpattern-learning
JeffLi1993/jvm-core-learning-example
Jeffmen/Git.NB
jeffreyiacono/penalty-blox
JeffreySu/WeiXinMPSDK
JeffreyWei/xunleiaccount
jeffThompson/DarkArduinoTheme
jeffThompson/PixelSorting
jeffwilcox/mpns
jeffwilcox/wp-thememanager
jegoyalu/jarisplayer
jelias/sketch-upload
jellybeansoup/ios-quayboard
JellyDevelopment/JDSlider
JellyDevelopment/JDSwiftAvatarProgress
jemygraw/GoQuickLearn
jemygraw/GoStandardLibrary-Chinese
jemygraw/TechDoc
JenniferSimonds/FontDetect
jennschiffer/SimpleSlides
jennschiffer/var-t
Jenn/starter-files
jeremycastelli/Wordpress-new-project-config
jeremykenedy/laravel-auth
jeremypeters/ng-bs-animated-button
jeremypetrequin/jsMovieclip
jeremytregunna/ruby-trello
jerolimov/NSHash
Jerrywx/JR-Player
jersuen/IMClient
jervine/rpi-temp-humid-monitor
jesalg/RADD
jessek/hashdeep
jessitron/fp4rd
JessYanCoding/MobileSafe
JetBrains/intellij-haxe
JetBrains/intellij-sdk-docs
JetBrains/kotlin-eclipse
JetBrains/xodus
JetBrains/YouTrackSharp
jetlang/core
jetpacapp/DeepBeliefSDK
JexCheng/regulex
jfbouzereau/explorer
jfield44/JFOpenWeatherMapManager
jflanigan/jamr
jfmatth/openshift-django17
jfoucher/flickholdr
jfree/jfreechart
jgallen23/boots
jgallen23/hubsearch
jgallen23/markx
jgallen23/mongroup
jgallen23/routie
jgallen23/toc
jgallen23/videojs-playLists
jgamblin/isthisipbad
jgarzik/picocoin
jgh-/VideoCore
jgoguen/calibre-kobo-driver
jgrandelli/KXKiOS7ColorsAndGradients
jh3y/tips
jh3y/tyto
jh3y/whirl
jhaddix/pentest-bookmarks
jhewt/gumer-psn
jhunters/jprotobuf
jhurray/EZLayout
jhurray/JHPullToRefreshKit
jhusain/asyncgenerator
jiachenmu/Swift-BanTang
jiahuang/d3-timeline
jiang111/awesome-androidstudio-plugins
jiang111/awesome-android-tips
jiang111/chrome-plugin-recommand
jiang111/IndexRecyclerView
jiang111/ObservableScheduler
jiang111/ProgressView
jiang111/RxJavaApp
jiang111/ScalableTabIndicator
jiang111/TranslateToast
jianghejie/CodeBox
jianghejie/XRecyclerView
jiangli373/nodeParseVideo
jiangmuzi/jianshu
jiangqqlmj/DragHelper4QQ
jiangqqlmj/FastDev4Android
jiantao88/RxNews
JiapengLi/OpenWrt-RT5350
Jiar/KeyboardToolBar
jibi/eth
jiefly/AbilityChart
jiffies/GouYong
jigish/slate
jijeshmohan/janus
JimBobSquarePants/ImageProcessor
jimenbian/DataMining
jimhester/knitrBootstrap
JimLiu/WeiboSDK
jimneylee/JLRubyChina-iPhone
jimneylee/JLWeChat-iPhone
jimobrien/ngMorph
jimpick/lambda-comments
jimporter/mettle
jimrubenstein/php-profiler
jimrutherford/Random-User
jimthunderbird/php-to-c-extension
jingchenUSTC/PullToRefreshAndLoad
jingchenUSTC/TimePicker
jingchenUSTC/WaveView
JingwenTian/awesome-frontend
JingwenTian/awesome-php
jingyanjiaoliu/angular-guide-zh
jinlong/didiShit
jinyulei0710/The-Busy-Coder-s-Guide-to-Android-Development
JiriTrecak/Laurine
jivesoftware/PDTSimpleCalendar
jiweil/Visualizing-and-Understanding-Neural-Models-in-NLP
JJaicmkmy/CMCC-DNSMasq
jjg/RESTduino
jjhesk/hkm-progress-button
jjhesk/LoyalNativeSlider
jjhesk/MaterialTabsAdavanced
jjhesk/TagViewLayout
JJMM/CUSLayout
JJMM/CUSSender
jjyg/metasm
j-keck/zfs-snap-diff
jkiddo/gmusic.api
jkleinsc/broccoli-serviceworker
jkoudys/immutable.php
jkuhlmann/gainput
jkwiecien/EasyImage
jkwiecien/Switcher
jlattimer/CRMDeveloperExtensions
jliljebl/flowblade
jm81/ach
jmapper-framework/jmapper-core
jmascia/KLCPopup
jmcclell/django-bootstrap-pagination
jmcmanus/pagedown-extra
jmcnamara/libxlsxwriter
jmcunningham/angularBPSeed
jMetal/jMetal
jmeter-maven-plugin/jmeter-maven-plugin
jmettraux/rufus-lua
jmettraux/rufus-mnemo
jmg/crawley
jmgilmer/GoCNN
jmg/pyfb
jmoiron/sqlx
jmoon018/PacVim
jmosbech/StickyTableHeaders
J-Mose/CommandSchedulerBundle
jmreidy/fluxy
JMSwag/PyUpdater
jnfisher/ios-curve-interpolation
jnicol/trackpad-scroll-emulator
JN-Jones/web-artisan
JNTian/JTNavigationController
joachimhs/Montric
joakimkarlsson/igloo
JoaoLopesF/SPFD5408
Job-Yang/YTZImageComparison
joe011/python
Joe8Bit/pretty-gist
joeax/svidget
joebain/args.js
joeblau/gitignore.io
joecarney/JCGridMenu
JoeDoyle23/BurningPig
joefei/ShoppingCart
joeferner/node-java
joeferraro/MavensMate-SublimeText
joeguilmette/wp-local-toolbox
joekarl/go-libapns
joel1st/championweb
joelambert/morf
joelcox/codeigniter-amazon-ses
joelcoxokc/aurelia-interface
JoeWoo/nlpir
joggerplus/JPFPSStatus
joggerplus/ReactNativeRollingExamples
johannaruiz/propotional-mqs
johnBartos/contributions-chiptune
JohnCoates/NetflixPro
johnculviner/FluentKnockoutHelpers
johnculviner/jquery.fileDownload
johndekroon/serializekiller
johnernaut/goatee
johnf/m3u8-segmenter
johnil/JFImagePickerController
JohnLouderback/GDB
johnlui/AutoLayout
johnlui/JSONNeverDie
johnlui/Learn-Laravel-4
johnlui/Learn-Laravel-5
johnlui/My-First-Framework-based-on-Composer
johnlui/SwiftNotice
johnlui/Swift-On-iOS
johnlui/SwiftSideslipLikeQQ
johnmcfarlane/fixed_point
johnmoore/iOStream
JohnnyCrazy/SpotifyAPI-NET
johnnye/short
johnnyreilly/jQuery.Validation.Unobtrusive.Native
johnnywjy/JYRadarChart
john-oc/acute-select
johnpapa/angular.breeze.storagewip
johnpapa/ng-demos
JohnPersano/SuperToasts
johnpolacek/I-Would-Like-A-Raise-Email-Template
johnpolacek/ResponsiveThumbnailGallery
johnpolacek/scrolldeck.js
johnpolacek/scrollorama
johnpolacek/superscrollorama
Johnqing/browserZoom
johnsmclay/icnfnt
johntayl/pdffiller
JohnTsaiAndroid/AndroidTips
JonasCz/How-To-Prevent-Scraping
JonasGessner/JGActionSheet
JonasGessner/JGDownloadAcceleration
JonasGessner/JGMethodSwizzler
JonasGessner/JGProgressHUD
JonasGessner/JGScrollableTableViewCell
jonathan-bower/DataScienceResources
jonathanpenn/ui-auto-monkey
jonathantribouharet/JT3DScrollView
jonathantribouharet/JTBorderDotAnimation
jonathantribouharet/JTCalendar
jonathantribouharet/JTHamburgerButton
jonathantribouharet/JTImageLabel
jonathantribouharet/JTMaterialSpinner
jonathantribouharet/JTMaterialTransition
jonathantribouharet/JTNumberScrollAnimatedView
jonathantribouharet/JTSlideShadowAnimation
jonathantribouharet/JTTableViewController
JonathanZWhite/AngularJS-Resources
JonathanZWhite/frontend-resources
Jon-Biz/FireUser
Jon-Biz/simple-static-react
jondanao/TheSidebarController
jongomez/numgl
jonjenkins/express-upload
jonmiles/bootstrap-datepaginator
jonrandahl/H5BP-Multi-Layer-FavIcons
jonsamwell/angular-http-batcher
jonschipp/ISLET
jonschlinkert/gray-matter
jonschlinkert/micromatch
joom/zor-yoldan-haskell
joost-de-vries/play-angular2-typescript
jordansissel/fpm
jordan-wright/rapportive
jordn/heroku-django-s3
jordwalke/FaxJs
jordwalke/VimBox
jordw/heftydb
jorgeatgu/SVG-FILTERS
jorgef/fsharpworkshop
jorgegarcia/UnityOSC
Jorgen-VikingGod/ESP8266-MFRC522
josefnpat/vapor
josephernest/void
JosephP91/curlcpp
joseph-turner/Razor
josephwilk/amrita
josephwilk/circuit-breaker
josephwilk/image-resizer
josephwilk/musical-creativity
josephwilk/semanticpy
josephwilk/tlearn-rb
joseria/JASwipeCell
josex2r/jQuery-SlotMachine
joshaven/string_score
joshcam/PHP-MySQLi-Database-Class
joshfng/railsready
joshnewlan/say_what
JoshSGman/ionic-shop
joshswan/react-native-globalize
joshuajnoble/ofxKinectCommonBridge
JosPolfliet/pandas-profiling
joyceim/hexo-theme-apollo
joychang/SMTVLauncher
joyoyao/superCleanMaster
jpablobr/active_paypal_adaptive_payment
jpardogo/GoogleProgressBar
jpardogo/ListBuddies
jpasqua/VisibleTesla
jpbarrette/curlpp
jpginc/windows10DesktopManager
jpillora/ssh-tron
jpmens/mosquitto-auth-plug
jpmens/mqttwarn
JpressProjects/jpress
jpsim/JPSKeyboardLayoutGuide
jpswalsh/academicons
jptiancai/jptiancai.github.com
jpush/jchat-swift
jpush/jpush-api-nodejs-client
jquery/themeroller.jquerymobile.com
jquerytools/jquerytools
jquery-ui-bootstrap/jquery-ui-bootstrap
jradavenport/batlog
jrcryer/grunt-pagespeed
jreijn/spring-comparing-template-engines
jrenner/gdx-proto
jrm2k6/dynamic-json-resume
jrm2k6/react-markdown-editor
jrosebr1/color_transfer
jrossi227/ApacheGUI
jrue/Vimeo-jQuery-API
jscheiny/Streams
jschr/electron-react-redux-boilerplate
jschr/textillate
jsdevel/webdriver-sync
jsgilmore/gostorm
jshttp/http-assert
jslby/fewatcher
jslegers/jquery-bootstrap
jslim89/RSA-objc
JSLite/JSLite
jsmarkus/colibri
jsnyder/arm-eabi-toolchain
jsonresume/resume-cli
jsonwebtoken/jsonwebtoken.github.io
jspears/bobamo
jspears/mers
jsreport/jsreport
jstacoder/flask-cms
jstacoder/flask-xxl
jstart/EHFAuthenticator-Touch-ID
JST-CN/grunt-cn
jstuckey/gulp-gzip
jtalks-org/jcommune
jtarchie/underscore-lua
jtnimoy/scripting-for-illustrator-tutorial
jtobey/javascript-bignum
jtoy/awesome-tensorflow
jtyjty99999/mobileTech
juanfran/gulp-scss-lint
juanjoguevara/JJMaterialTextField
Jude95/Beam
Jude95/EasyRecyclerView
Jude95/FitSystemWindowLayout
Jude95/Joy
Jude95/RequestVolley
Jude95/RollViewPager
Jude95/SwipeBackHelper
Jude95/Utils
juho-p/fatty
julesbond007/Android-Jigsaw-Puzzle
JulesGosnell/seqspert
juleswhite/mobilecloud-14
julia67/data-viz-for-all
JulianBirch/cljs-ajax
julianpeeters/avro-scala-macro-annotations
julianshapiro/blast
julianshapiro/velocity
JuliaWeb/HttpServer.jl
julien-c/epub
julien-c/meteoric.sh
JulienGenoud/android-percent-support-lib-sample
Julioacarrettoni/EXPhotoViewer
JUMA-IO/STM32_Platform
jumpkick-studios/Is
JumpMind/symmetric-ds
jun85664396/messenger-bot-rails
Jungerr/GridPasswordView
jung-kurt/gofpdf
junku901/dnn
junku901/machine_learning
Juntamng/eco-Scroll
jun-zhang/Qt360
jurre/JESCircularProgressView
juruen/cavalieri
jussi-kalliokoski/html5Preloader.js
justeat/JustSaying
justhum/HUMSlider
justindeguzman/locstor
JustinFincher/JZMultiChoicesCircleButton
JustinFincher/JZtvOSParallaxButton
justinj/vim-react-snippets
justinmfischer/core-background
justinwalsh/daux.io
JustKeepRunning/LXDTwoDimensionalBarcode
JustMaier/angular-autoFields-bootstrap
JustMaier/angular-signalr-hub
JustZak/DilatingDotsProgressBar
justzx2011/openyoudao
Juude/Awesome-Android-Architecture
Juude/awesome-android-performance
Juude/Awesome-Cross-Platform-Apps
juvham/kaiyan
JV17/JVMenuPopover
Jvaeyhcd/HcdCachePlayer
jverdi/JVFloatLabeledTextField
jverkoey/iOS-Best-Practices
jvirkki/libbloom
jvoorhis/vagrant-serverspec
jw2013/Leetcode-Py
JWally/jsLPSolver
jwells89/JWToolbarAdaptiveSpaceItem
jwhitehorn/pi_piper
jwilling/JNWCollectionView
jwilling/JWFolders
jwyang/face-alignment
JxbSir/JXBAdPageView
JxbSir/JxbPgyerAssistant
JxbSir/YiYuanYunGou
jxieeducation/DIY-Data-Science
jxjgssylsg/YLUtilityDemos
jxp/phonegap-desktop
jyapayne/Web2Executable
jyxo/php
jzlikewei/img2ascii
k06a/ABCalendarPicker
k06a/boolinq
k06a/NSEnumeratorLinq
k33g/gh3
kaaes/work_from_cafe
kaalita/Hoodie-iOS
kaandedeoglu/KDCircularProgress
kablaa/CTF-Workshop
kachayev/muse
Kadoba/Advanced-Tiled-Loader
kaedea/Andriod-Seamless-ViewPager-Header
kaelig/hidpi
kaepora/miniLock
KagayamaKaede/ShadowsocksRDroid
kagemusha/ember-rails-devise-demo
kaiinui/android-awesome-libraries
kaiinui/KIInPlaceEdit
Kaijun/hexo-theme-huxblog
kailuo99/toutiao
kaimallea/isMobile
kairosinc/Kairos-SDK-iOS
kaisellgren/Concurrency-concepts
kaisellgren/Git-GUI
kaistseo/UnitySocketIO-WebSocketSharp
kaknazaveshtakipishi/PermissionEverywhere
kaktus40/Cesium-GeoserverTerrainProvider
KaleoSoftware/tape-redux
kallisti-dev/hs-webdriver
kaltura/player-sdk-native-android
kamilkp/angular-sortable-view
kamilkp/angular-vs-repeat
kamranahmedse/jquery-toast-plugin
kamui/retriable
kanaishinichi/TAXHeaderSheet
kanaka/libvncserver
kanakiyajay/bootstrap-grid-builder
kanflo/esparducam
kaphacius/IconMaker
kapolos/pramda
karacas/imgLiquid
Karlheinzniebuhr/pythonbenchmark
karmajunkie/imperator
karmazzin/eloquentjavascript_ru
karpathy/neuraltalk
karpathy/researchpooler
Karumi/BothamUI
Karumi/Dexter
Karumi/KataContactsJava
Karumi/KataSuperHeroesAndroid
kasketis/netfox
kasparsklavins/bigint
kasperpihl/KPTimePicker
katemihalikova/ion-datetime-picker
kaunteya/ProgressKit
kavika13/RemCom
kaylarose/Glowform
kayousterhout/trace-analysis
kayvannj/PermissionUtil
Kayven/OneStack
kazeburo/cloudforecast
kazeburo/Kurado
kbandla/APTnotes
kbengine/kbengine
kbengine/kbengine_unity3d_demo
kbinani/glsl-colormap
kbingman/paperclipped
kblake/neural_network_elixir
kcharwood/KHGravatar
kcherenkov/redis-windows-service
kclay/rethink-scala
kcthota/emoji4j
kdabir/gstorm
KDF5000/RichEditText
kedebug/LispEx
Kedrigern/phpio
keenlabs/KeenClient-iOS
keenlabs/KeenClient-PHP
keenwon/antcolony
keenwon/jqPaginator
keepfool/vue-tutorials
KeizerDev/Browsertime
kejinlu/capimage
kejinlu/KKGestureLockView
kelexel/rstream
Kelin-Hong/MVVMLight
kelly/node-i2c
kelp404/angular-form-builder
kelp404/angular-validator
kelp404/CocoaSecurity
kelp404/NyaruDB
kemie/Source-Sans-Yosemite-System-Font-Replacement
kenfar/DataGristle
kenhub/giraffe
kenjiaiko/binarybook
kennethcachia/background-check
kennethcachia/shape-shifter
kennethjiang/Teleport-NSLog
kennethlynne/generator-angular-xl
kennethrapp/phasher
Kennyc1012/BottomSheet
Kennyc1012/MultiStateView
Kennyc1012/SnackBar
Keno/Cxx.jl
kenshin03/Cherry
kenshin03/KTSecretTextView
kenshin03/RouletteWheelCollectionViewDemo
kentcdodds/genie
KentorIT/authservices
kentya6/KYCircularProgress
kenumir/android-calendar-card
kenumir/MaterialSettings
kenwheeler/browserSwipe
kenwheeler/guff
kenwheeler/mcfly
kenwheeler/structure
kepi/chromeEyeDropper
Kepler-Framework/Kepler-All
kerberos-io/machinery
kerberos-io/web
keshavos/generator-angularjs-cordova
KesterTong/idris2048
kete/kete
ketoo/NoahGameFrame
kevin0571/STPopup
kevin0571/STPopupPreview
KevinCoble/AIToolbox
kevindeasis/awesome-fullstack
kevinkong/Emmagee
kevinmcalear/hater_news
kevinortegren/ClusteredShadingConservative
kevinshine/BeyondUPnP
kevinswiber/siren
kevinzhow/PNChart
kevinzhow/Waver
kevthehermit/RATDecoders
Keyang/node-csvtojson
keygx/GradientCircularProgress
keymetrics/pmx
kgabis/parson
kgeographer/topotime
kgiszewski/LearnUmbraco7
kgn/BBlock
kgn/Hark
kgn/KGDiscreetAlertView
kgn/KGModal
kgn/KGNoise
kgn/Spectttator
kgxsz/devops-101
khaledmtaha/XAnimatedImage
khaled/react-express-template
khan4019/front-end-Interview-Questions
khan4019/tree-grid-directive
Khan/guacamole
khanlou/SKInnerShadowLayer
khepin/KhepinYamlFixturesBundle
khovratovich/Argon2
KiaFathi/reactTutorial
KibodWapon/NoEye
Kibo/TiledMapBuilder
kibotu/RecyclerViewPresenter
KiCad/KicadOSXBuilder
Kickflip/kickflip-ios-sdk
kidh0/jquery.idle
kidswong999/dobotArm
KIDx/ACdream
kif-framework/AMYServer
kif-framework/KIF
kifi/franz
kifi/json-annotation
kikonen/ngannotate-rails
Kilian/fromscratch
Kill-Console/PythonShootGame
killme2008/clojure-control
killme2008/gecko
killme2008/Metamorphosis
killme2008/node-zk-browser
killme2008/xmemcached
killmous/git-rekt
killswitch-GUI/SimplyEmail
kilokeith/soundcloud-soundmanager-player
KimiNewt/pyshark
kimmobrunfeldt/react-progressbar.js
kimsungwhee/KSHMosaicCamera
kimsungwhee/KSHObjcUML
kimwalisch/primesieve
kingideayou/SlideBottomPanel
kingideayou/TagCloudView
kingname/MarkdownPicPicker
kinwahlai/XcodeRefactoringPlus
kirang89/cleanify
KiranPanesar/MXLMediaView
KirillM/BarChart
KirillOsenkov/SourceBrowser
kirkas/Ascensor.js
kirpichenko/EKKeyboardAvoiding
kirtithorat/carrierwave-crop
kirualex/KASlideShow
kirualex/SwiftyGif
kishikawakatsumi/ScreenRecorder
kisnows/react-v2ex
kissrobber/DProperty
kissygalleryteam/kcharts
kiswa/TaskBoard
kitesurfer1404/WS2812FX
KiteSync/realm-sync-js
Kito0615/AppIconAutoMaker
kitofans/caffe-theano-conversion
kitschpatrol/Brain
kitschpatrol/KPRunEverywhereXcodePlugin
KittenYang/A-GUIDE-TO-iOS-ANIMATION
KittenYang/Animations
KittenYang/DynamicMaskSegmentSwitch
KittenYang/KYAnimatedPageControl
KittenYang/KYAsyncLoadBubble
KittenYang/KYBezierBounceView
KittenYang/KYCuteView
KittenYang/KYElegantPhotoGallery
KittenYang/KYFloatingBubble
KittenYang/KYGooeyMenu
KittenYang/KYJellyPullToRefresh
KittenYang/KYParallaxView
KittenYang/KYPushTransition
KittenYang/KYShareMenu
KittenYang/KYTilePhotoLayout
KittenYang/KYWaterWaveView
kittykatattack/ga
kittykatattack/hexi
kittykatattack/learningPixi
kiwenlau/hadoop-cluster-docker
kjda/ReactFlux
KJFrame/KJBlog
kkapelon/java-testing-with-spock
kkdai/project52
kkolstad/angular-servicestack
KKys/ZhiHuSpider
klauspost/pgzip
kleinee/jns
klevison/KMAccordionTableViewController
klevo/wildflower
kliment/Printrun
kliment/Sprinter
klokantech/epsg.io
klongmitre/android-segmented-control-view
klop/KLParallaxView
klugjo/hexo-theme-alpha-dust
kmalakoff/backbone-modelref
kmalakoff/background
kmalakoff/knockback
kmalakoff/mixin
k-maru/grunt-typescript
knadh/xmlutils.py
knn90/KNCirclePercentView
Knockout-Contrib/Knockout-Validation
Knockout-Contrib/KoGrid
knockout/knockout
knoldus/Node.js_UserLogin_Template
knorthfield/pietimer
knowthelist/fhem-tablet-ui
KnpLabs/DoctrineBehaviors
knutigro/COBezierTableView
knxroot/bdcut-cl
koalalorenzo/python-digitalocean
koanlogic/libu
kobolabs/epub-spec
kof97500/SinaWeibo-WatchKit
kokdemo/v2ex.k
koken/blueprint
kolanos/kohana-captcha
kolanos/kohana-universe
kolinkrewinkel/KKGridView
kolinkrewinkel/Polychromatic
kollegorna/active_hash_relation
kolpanic/ZipKit
kongnanlive/AndroidAnimationDemo
kongnanlive/android-combination-avatar
kongnanlive/SearchMenuAnim
konifar/android-material-design-icon-generator-plugin
KonradIT/autoexechack
KonradIT/goprowifihack
KonradIT/HeroProApp
konteck/wpp
konvajs/konva
kopurando/better-faster-elastic-beanstalk
koral--/android-gif-drawable
korcankaraokcu/PINCE
Korcholis/Andrew
KorfLab/StochHMM
kostiakoval/Mirror
kostiakoval/SpeedLog
kostub/iosMath
KosyanMedia/Aviasales-iOS-SDK
kot32go/KShareViewActivityManager
kot32go/KSimpleLibrary
kovacsv/JSModeler
kpbird/Android-Image-Filters
kpbird/NotificationListenerService-Example
KrakenDev/PrediKit
krasserm/grails-jaxrs
KrauseFx/TSMessages
kreeben/resin
Krelborn/KILabel
kRew94/Who-s-Home
kriansa/openboleto
KrishMunot/awesome-startup
krishnakapil/MaterialSeachView
krishnarb3/Popview-Android
kristianmandrup/masonry-rails
kristianmandrup/rails-gallery
kristijanhusak/laravel-form-builder
kriszyp/compose
Krivoblotsky/SSIDObserver
kronik/DKCircleButton
kronik/DKLiveBlur
kronik/ScalePicker
kronik/SpiralPullToRefresh
kronik/UIViewController-Tutorial
kronusme/dota2-api
kryptnostic/fhe-core
krzysztof-o/spritesheet.js
krzyzanowskim/CryptoSwift
krzyzanowskim/Natalie
krzyzanowskim/ObjectivePGP
ksky521/nodePPT
ksm/SwiftInFlux
kstenerud/KSCrash
ksubileau/color-thief-php