commit stringlengths 40 40 | subject stringlengths 0 840k | message stringlengths 11 840k | repos stringlengths 5 127k | old_file stringlengths 1 920 | new_file stringlengths 1 920 |
|---|---|---|---|---|---|
8e02fc61ac1e512d70d5511aefa67e5e8f7ea6a6 | graphviz breaks something randomly | graphviz breaks something randomly
git-svn-id: 5ebbf898df38bb50132b982d7121d99e1aa32665@126 fb327865-0606-0410-b31b-95a48d5bc805
| dgtized/dotfiles,dgtized/dotfiles,dgtized/dotfiles | emacs | emacs |
cd88306888b6b1e74ed4bbee6b8223ecb4db4c33 | Lint free, full featured, totally untested | Lint free, full featured, totally untested
| bradshawma/elevatorsaga | es.js | es.js |
7628fad1b1ab7e9efaeef3d93dabb2c9446ae01e | New translations template.pot (Spanish, Uruguay) | New translations template.pot (Spanish, Uruguay) | MultiMC/MultiMC5-translate | es.po | es.po |
8839f89d062a822b22dacaa6d432aec51f578535 | etm: clean up comment-outed code blocks. | etm: clean up comment-outed code blocks.
| sugawaray/lgali,sugawaray/lgali | etm.c | etm.c |
6bf4881288932a96c0a1d50976308e740ecdec12 | Use Py_TPFLAGS_HAVE_GC and call parent destructor | Use Py_TPFLAGS_HAVE_GC and call parent destructor
| haypo/fat,haypo/fat,haypo/fat | fat.c | fat.c |
1dc992f285d23db0383dfa0cf67667d49f4b7a09 | Updated felix with the clean up fix | Updated felix with the clean up fix
| tessafallon/dhf,tessafallon/dhf,tessafallon/dhf | felix | felix |
7f80b20e534442f09e6660f27211e3032a58f14e | update femex | update femex
| GaZ3ll3/USOT,GaZ3ll3/USOT | femex | femex |
c8bb3dd3f23269f279929a1536cd65c96c4ce676 | Fix silly mistake found by Tom Harris | Fix silly mistake found by Tom Harris
| bowlofstew/luaffifb,bowlofstew/luaffifb | ffi.c | ffi.c |
46ded38885bc3dc20f6905e03c7ca81e069650bb | Update fft.c | Update fft.c | SIDEVAN/SIDEVAN | fft.c | fft.c |
29af99f855588ef516ea07bef67dd406adf050b0 | Translated using Weblate (Finnish) | Translated using Weblate (Finnish)
Currently translated at 100% (0 of 0 strings)
Created new translation.
| MultiMC/MultiMC5-translate,MasterLED-MC/MultiMC5-translate,fewizz/MultiMC5-translate | fi.po | fi.po |
f6bf89a681aae1eb0c2e3e6828abca599ee48d00 | Add files via upload | Add files via upload | codenoid/ficha | ficha | ficha |
e94d8645185c41cd9570959b373f90c2412e95f1 | add sdk derived code offsets | add sdk derived code offsets
| hughobrien/nRF51822-cli,hughobrien/nRF51822-cli | flash | flash |
748ee874280db70259cb602c04f56ea648488048 | reverse after before argument | reverse after before argument
| 360netlab/flint | flint | flint |
f274f628801ff8ed31b44b58ee2a42d4c11261c2 | New translations template.pot (French) | New translations template.pot (French) | MultiMC/MultiMC5-translate | fr.po | fr.po |
78304cd138d5ff344098a31801cd00a53c0ee530 | New translations template.pot (French) | New translations template.pot (French) | MultiMC/MultiMC5-translate | fr.po | fr.po |
e95b7b3fa538d281ca515b40af4ecc64a2621e28 | minor update | minor update
| minsuklee/protocol_fsm | fsm.c | fsm.c |
c06a9c05c1f0fe7c5524ad8ae4d7135d0eda10cd | [fudge] fail should be flunk | [fudge] fail should be flunk
git-svn-id: 53605643c415f7495558be95614cf14171f1db78@20353 c213334d-75ef-0310-aa23-eaa082d1ae64
| laben/roast,dankogai/roast,skids/roast,b2gills/roast,laben/roast,dogbert17/roast,b2gills/roast,bitrauser/roast,skids/roast,cygx/roast,zostay/roast,zostay/roast,dankogai/roast,dankogai/roast,cygx/roast,perl6/roast,niner/roast,cygx/roast,niner/roast,zostay/roast,niner/roast,skids/roast,laben/roast,b2gills/roast,dogbert17/roast,bitrauser/roast | fudge | fudge |
c684bc5e22ebda98ba55eb76baa2af1699cd9304 | Remove sp1/sp2 birds | Remove sp1/sp2 birds
| ateucher/crd_rare_bird_bot | fun.R | fun.R |
e550feae6dd230ceff8ebaab91f7e41ea333d1c7 | Don't quit on 'q' | Don't quit on 'q'
| jhawthorn/fzy,jhawthorn/fzy,jhawthorn/fzy | fzy.c | fzy.c |
61aded6dd34cd5a4f47f01268938866abb051fab | Update gemrc formatting | Update gemrc formatting
| cheshire137/dotfiles,moneypenny/dotfiles,moneypenny/dotfiles,cheshire137/dotfiles,moneypenny/dotfiles,cheshire137/dotfiles,moneypenny/dotfiles,cheshire137/dotfiles | gemrc | gemrc |
f50cabb342f1165bc6012818be5d99592c5d35a0 | Remove unnecessary zero-ing of variables. | Remove unnecessary zero-ing of variables.
We used to emit two writes for a varible having an initializer.
The first write is to zero-out the memory for the variable.
The second write is to set the initial value.
The reason why we did that is because the C spec requires
unspecified fields be initialized with zero if a variable
has an initializer. For example, the contents of the following
variable v are 1 followed by two zeros.
int v[3] = { 1 };
(This shouldn't be confused with the case that a variable has
no initializer at all. If the above statement is "int v[3];",
it's contents are undefined.)
We didn't have to zero-out the entire memory for a variable.
We could set zeros only to holes between initialized fields.
This patch does that.
| andrewchambers/8cc,jtramm/8cc,jtramm/8cc,8l/8cc,nobody1986/8cc,nobody1986/8cc,vastin/8cc,cpjreynolds/8cc,vastin/8cc,8l/8cc,rui314/8cc,andrewchambers/8cc,nobody1986/8cc,nobody1986/8cc,andrewchambers/8cc,vastin/8cc,rui314/8cc,gergo-/8cc,abc00/8cc,rui314/8cc,cpjreynolds/8cc,abc00/8cc,vastin/8cc,jtramm/8cc,gergo-/8cc,jtramm/8cc,8l/8cc,abc00/8cc,8l/8cc,cpjreynolds/8cc,gergo-/8cc,cpjreynolds/8cc,abc00/8cc,rui314/8cc,andrewchambers/8cc | gen.c | gen.c |
f4d5969ad4af64a212c49c27973af8d7139ae177 | Delete gen.h | Delete gen.h | mooseman/toySQL | gen.h | gen.h |
f67377bf0a2119074fc3cc26f6b1085a0447832b | implemented function to calculate fi and fij, where f is the frequency of occurrence of nucleotide of 0-order and 1-order | implemented function to calculate fi and fij, where f is the frequency of occurrence of nucleotide of 0-order and 1-order
| ajholanda/psa,ajholanda/psa,ajholanda/psa,ajholanda/psa | gen.w | gen.w |
6b58c0a0fffd822438e5beb7349a876455ee6063 | Update gf.go | Update gf.go
set default cookie timeout 15 minutes | goframework/gf | gf.go | gf.go |
0ab48aac1b91c978f36a9bd353f14e142eebce3b | Warning fixes | Warning fixes
| ginsweater/gif-h | gif.h | gif.h |
9a79c5a8b4e280601bcbeeed22e1e4968d06c10e | git.c: two fixes, gitsetenv type and off-by-one error. | git.c: two fixes, gitsetenv type and off-by-one error.
gitsetenv as implemented in compat/setenv.c takes two const char*
and int; match that.
Also fix an incorrect attempt in prepend_to_path() to
NUL-terminate the string which stuffed the NUL character at one
past the end of allocation, and was not needed to begin with (we
copy the old_path string including the NUL which terminates it).
Signed-off-by: Junio C Hamano <dc50d1021234060e53ec42a77d526afa2fe07479@cox.net>
| destenson/git,destenson/git,destenson/git,destenson/git,destenson/git,destenson/git,destenson/git,destenson/git | git.c | git.c |
ec0b62552cd6660f7ef993a9cd4a69f65c973c3b | gitfc: Git wrapper to commit files faster | gitfc: Git wrapper to commit files faster
| enguerrand/edrtools | gitfc | gitfc |
47be785d4de77d725505748bea48d4640debbd99 | Codecが無意味だったので修正 | Codecが無意味だったので修正
| tenntenn/gj | gj.go | gj.go |
321126ba9d288f98d1f844d3e12aabbf1a6f840b | fix branch-name | fix branch-name
| VfN-NRW/gluon-firmware-builder | gluon | gluon |
ede08b510442139f7f11b591dae511915ab51625 | loop checking | loop checking | lacker/hotpo | go.py | go.py |
e62be9e92d6d52bd9318ce4203d7f8614e956593 | vim undo/swap/backup folders | vim undo/swap/backup folders
| gunlinux/dotfiles | go.sh | go.sh |
aa4dffa0458536dc2d7c645f7e4707b798ab7c07 | Gimme would fail on some Ubuntu, I think | Gimme would fail on some Ubuntu, I think
| EvanHahn/dotfiles,EvanHahn/dotfiles,EvanHahn/dotfiles,EvanHahn/dotfiles | go.sh | go.sh |
6139819afd0a6c625c996887c2ebf520fc831d35 | Adding run script | Adding run script
| IHTSDO/rf2-to-rf1-conversion,IHTSDO/rf2-to-rf1-conversion | go.sh | go.sh |
a8387001bc35046176766f842bf37921a8ea104d | gpu.c: extract_single_tagged_access: clean up space copying | gpu.c: extract_single_tagged_access: clean up space copying
The copy of space is needed by isl_space_domain,
but it was being assigned to space2, which is subsequently overwritten.
In practice, this happens to work out because taking
a copy only changes the reference count and returns
the same pointer, but the original code is still confusing,
if not technically incorrect.
Signed-off-by: Sven Verdoolaege <235c10dd23b819f81cdc9756a251746bc184cab6@gmail.com>
| Meinersbur/ppcg,Meinersbur/ppcg | gpu.c | gpu.c |
438a6889e5593186a53e08ef0e4c6dae1332db4d | Remove extra print of student array and consume compilation errors of BookStuff. | Remove extra print of student array and consume compilation errors of BookStuff.
| kyle-rader/cmd-line-grader | grade | grade |
3d0ea46cd013332ba127121709e1f44e87f7d434 | Made a hack fix to make ArmyGame display some form of 'score'. Simple unofficial equation is (goal+enemy+leader)-roe | Made a hack fix to make ArmyGame display some form of 'score'.
Simple unofficial equation is (goal+enemy+leader)-roe
| stevenh/qstat,illwieckz/qstat,multiplay/qstat,stevenh/qstat,multiplay/qstat,illwieckz/qstat,stevenh/qstat,multiplay/qstat,multiplay/qstat,multiplay/qstat,illwieckz/qstat,stevenh/qstat,illwieckz/qstat | gs2.c | gs2.c |
46c8b44e29c734122fa5f61583d9d40e88068b64 | gu.py: remove duplicate comment blocks | gu.py: remove duplicate comment blocks
| pramasoul/ESP-geiger | gu.py | gu.py |
9a3e378fe5238cce46bf00696f16e85c48bc9856 | gui: fix callback function in gui_sns_people_tag | gui: fix callback function in gui_sns_people_tag
| hrl/AVL | gui.c | gui.c |
da971ee59afbe94b2bc45df5efeefa72b6ed29e9 | removed not yet implemented function prototype | removed not yet implemented function prototype
| OpenMusicKontrollers/sherlock.lv2,OpenMusicKontrollers/moony.lv2,serge-rgb/gui,OpenMusicKontrollers/sherlock.lv2,OpenMusicKontrollers/midi_matrix.lv2,glegris/nuklear4j,OpenMusicKontrollers/moony.lv2,OpenMusicKontrollers/midi_matrix.lv2,gamedevforks/gui,OpenMusicKontrollers/patchmatrix,OpenMusicKontrollers/synthpod,OpenMusicKontrollers/synthpod,OpenMusicKontrollers/synthpod,OpenMusicKontrollers/synthpod,OpenMusicKontrollers/synthpod,OpenMusicKontrollers/moony.lv2,liexusong/gui,OpenMusicKontrollers/midi_matrix.lv2,OpenMusicKontrollers/patchmatrix,OpenMusicKontrollers/patchmatrix,OpenMusicKontrollers/moony.lv2,OpenMusicKontrollers/moony.lv2,OpenMusicKontrollers/moony.lv2,OpenMusicKontrollers/sherlock.lv2,glegris/nuklear4j,OpenMusicKontrollers/patchmatrix,OpenMusicKontrollers/midi_matrix.lv2,OpenMusicKontrollers/sherlock.lv2 | gui.h | gui.h |
6d988c7119fcc87e1c5731c197e0220127946c80 | Make the GUI look better | Make the GUI look better
| ajm188/meepers-creepers,ajm188/meepers-creepers | gui.m | gui.m |
b04ef435a42d8445782f86acf2385bff1356c689 | Initial commit. | Initial commit.
| thomaskeschl/hashchecker | hc.go | hc.go |
dd311fe8586a94bd4de0bde7c5788083553c3a2a | back to angular 1.6.6 | back to angular 1.6.6
| aequologica/hat | holos | holos |
0464549834836295cbf561cda613a9f72fd4a250 | guava. jersey. | guava. jersey. | aequologica/hat | holos | holos |
de06fa4ab7aea29851d384be1d576b53d1372e11 | Fix Facebook (#1082) | Fix Facebook (#1082)
| ruidalin/hosts,wsdjeg/hosts,racaljk/hosts | hosts | hosts |
6b35af841c73f8f296a4a29fa7922d5946b32ea3 | Fix github | Fix github
| wsdjeg/hosts | hosts | hosts |
092acb859afd0cbd500cb5b9aa07a0a0f6ccfbb7 | Update hosts | Update hosts
更新了最新可用版本 | coolrc136/hosts,VegetaPn/hosts,wsdjeg/hosts,gavin-gui/hosts,ruidalin/hosts,lifenglsf/hosts,Xiejiayun/hosts,Xiejiayun/hosts,racaljk/hosts,lifenglsf/hosts,gavin-gui/hosts,Xiejiayun/hosts,lifenglsf/hosts | hosts | hosts |
ddafe708c70cedcf993b715ef7a2a7d30d0b3cff | Removed hosts file from repo, as my system hosts file is better. | Removed hosts file from repo, as my system hosts file is better.
| jpartain89/Personal-Ansible-Plays | hosts | hosts |
cbcd4e20447ae8a65dd39599fb7c97860df60f83 | Update date | Update date
| ruidalin/hosts,wsdjeg/hosts,racaljk/hosts | hosts | hosts |
7f14c2b641a352cf587f280246b5cb5f44134ce3 | Fix Facebook | Fix Facebook
| racaljk/hosts,Xiejiayun/hosts,Xiejiayun/hosts,gavin-gui/hosts,gavin-gui/hosts,coolrc136/hosts,wsdjeg/hosts,Xiejiayun/hosts,VegetaPn/hosts,ruidalin/hosts | hosts | hosts |
ad99f66fd059fefa6cf7540f5082c3a7862904ad | 2019-09-30 (Fixes #6) | 2019-09-30 (Fixes #6)
| bjornstar/hosts | hosts | hosts |
7285e6caba2db201c5238efc7868bd06326c95a8 | Update hosts | Update hosts
add codelabs.developers.google.com | Xiejiayun/hosts,racaljk/hosts,Xiejiayun/hosts,wsdjeg/hosts,ruidalin/hosts,coolrc136/hosts,Xiejiayun/hosts,VegetaPn/hosts | hosts | hosts |
08693ecbeb389bcbccf3056d2bc4421674938e5d | Display CN in addition to displayName | Display CN in addition to displayName
| mutantmonkey/hokiestalker | hs.py | hs.py |
cf94441df7a4fabae5bc3c73e79ca763a1121b31 | iptables modifications | iptables modifications
| TheTechromancer/hu.sh | hu.sh | hu.sh |
909ae3838a8876800ae8bdff90ff3374c014bb30 | fix indentation | fix indentation
| gurpinars/hasm,gurpinars/hasm | hvm.c | hvm.c |
ef45893b30ac8733917fc31c63f175c420702362 | New translations template.pot (Indonesian) | New translations template.pot (Indonesian) | MultiMC/MultiMC5-translate | id.po | id.po |
733c8abcafb807f284a9ddc8597d46b2d1e9cfa0 | minor formatting changes | minor formatting changes
| c00kiemon5ter/iim | iim.c | iim.c |
a03be07d02b05321f5f4cbe86c225d405f47547c | Groups and channels export added | Groups and channels export added
Export of all private groups and #general channel added
| shikata-ga-nai/slack-dm-export,patrickheeney/slack-dm-export | im.py | im.py |
3e953f71a1f618ad6c30a371cae6bd0b829c62ce | I'm not sure what DISPLAY was…but it was breaking things | I'm not sure what DISPLAY was…but it was breaking things
| tangphillip/Imgur-Uploader | imgur | imgur |
7e71e9e4734af619df0b971d1684189f7bdf510e | Update imosh. | Update imosh.
| imos/bin,imos/bin | imosh | imosh |
92f0c494ac8ce99a525550eed22a46497161c49c | Update index | Update index
[ci skip] | webino/get.webino.org,webino/get.webino.org,webino/get.webino.org,webino/get.webino.org | index | index |
4f83c89f9229206cad9502671e79fdf724615799 | Update index | Update index
[ci-skip] | webino/get.webino.org,webino/get.webino.org,webino/get.webino.org,webino/get.webino.org | index | index |
4db797fec97d40f42b87248070d540a2ae343951 | Refactored mkbr() to reuse code in mkins(). | Refactored mkbr() to reuse code in mkins().
Added comments. No functionality changes.
| jtcriswell/bpfa | ins.h | ins.h |
1ab3f4c8d372df16ff0c312e0db0dd37b2280b23 | optimize ReadLine | optimize ReadLine
| ungerik/go-dry | io.go | io.go |
fdef4737fa4ea9ead3159c44eaf6024d1da57fab | lower the capacity | lower the capacity
| rkollar/ratelimit | io.go | io.go |
051e0c9dd34b53d0f9de40226378dcb8551288af | fix typo in comment | fix typo in comment
| segmentio/objconv | io.go | io.go |
287ca9e8b97f7aa5ab9294ec89e5555d207f5ac3 | Update io.js | Update io.js | alpine9000/BitMachine,alpine9000/BitMachine,alpine9000/BitMachine | io.js | io.js |
b60e6e524ff8debdf3c686d24b17e991ae2cd8c5 | Use os.Rename in atomize function | Use os.Rename in atomize function
| scipipe/scipipe,samuell/scipipe,scipipe/scipipe | ip.go | ip.go |
546a525766fa2dd3b0b14b13b75cc7a032874cec | Create ip.py | Create ip.py
Initial commit | jj358mhz/FindIP | ip.py | ip.py |
4c0361f2500aa0b62cdaab593161b2c3c383ab58 | [ip4] fix alignment now that we are using packet_buffers | [ip4] fix alignment now that we are using packet_buffers
| rfujiyama/netmap-test,rfujiyama/netmap-test | ip4.c | ip4.c |
c451e3bc636fc04f98643217f84f5a92ad9caeda | Add support for disco info node | Add support for disco info node
| processone/gox | iq.go | iq.go |
75ad5c28a427059dc8165a15154598063711dfe9 | gzip is 1 byte smaller | gzip is 1 byte smaller
| matthewoates/is | is.js | is.js |
a3f07948e4bef8bc868ac157fddc59708cfd50ca | Cleanup `is.windowObject`. | Cleanup `is.windowObject`.
| rlugojr/is.js,ironmaniiith/is.js,arasatasaygin/is.js,arasatasaygin/is.js,rlugojr/is.js,ironmaniiith/is.js | is.js | is.js |
23e233a9bb79f0f99bb65823341d0c83ec649376 | New translations template.pot (Italian) | New translations template.pot (Italian) | MultiMC/MultiMC5-translate | it.po | it.po |
936b067cc82d66abdadce1897394705d25c7b502 | Add prop passing and html parsing | Add prop passing and html parsing
| ditkin/ja,ditkin/ja | ja.js | ja.js |
7f2cf2b4820f0634cdba59a38f437b6d0b6a8ddb | sysconf(__SC_PAGESIZE) replaces PAGESIZE | sysconf(__SC_PAGESIZE) replaces PAGESIZE
| cptaffe/bf,cptaffe/bf,cptaffe/bf | jit.c | jit.c |
8a8529832b6c5ad48d5961ae884863d33cf61a1a | added archetecture specific operations in a generic way | added archetecture specific operations in a generic way
| cptaffe/bfplus,cptaffe/bfplus | jit.h | jit.h |
023855c99d9c7cc3ca2323c1adb3b36abbe8e339 | Prints hash upon job submission | Prints hash upon job submission
| binarybana/jobmon | jm.py | jm.py |
02e820aed8d095b363fae769c02c582a7b7524b2 | Add lib/* into joosc classpath | Add lib/* into joosc classpath
| gregwym/joos-compiler-java,gregwym/joos-compiler-java | joosc | joosc |
5c578e3133798f8fab3b6f7384b2f2ba8c48746e | Bump version to 0.1.3 | Bump version to 0.1.3
| jmespath/jp,jmespath/jp,jmespath/jp | jp.go | jp.go |
ac35fdf8451d0feba6caa4631cd1a37d551d4c2f | Submodule(s) changed, updating submodule revisions. | Submodule(s) changed, updating submodule revisions.
| metaborg/spoofax-releng | jsglr | jsglr |
f48017337d0d5776375a83c8f422e115e67c0161 | line numbering stuff | line numbering stuff
| molarmanful/vimrc | k.vim | k.vim |
e6a03e29680483a828b6efbb43add26ba775df77 | changes to support pulling ppc out of osx | changes to support pulling ppc out of osx
| appcelerator/titanium_desktop,appcelerator/titanium_desktop,jvkops/titanium_desktop,jvkops/titanium_desktop,jvkops/titanium_desktop,appcelerator/titanium_desktop,jvkops/titanium_desktop,appcelerator/titanium_desktop,appcelerator/titanium_desktop,jvkops/titanium_desktop,jvkops/titanium_desktop | kroll | kroll |
f2d92095392c76784ebe5dc0630eb11aaf1d622f | remove append for glib as it was removed from the Linux build. | remove append for glib as it was removed from the Linux build.
| appcelerator/titanium_desktop,jvkops/titanium_desktop,jvkops/titanium_desktop,appcelerator/titanium_desktop,appcelerator/titanium_desktop,jvkops/titanium_desktop,appcelerator/titanium_desktop,jvkops/titanium_desktop,jvkops/titanium_desktop,jvkops/titanium_desktop,appcelerator/titanium_desktop | kroll | kroll |
a813df7aa339aff4d13a94f18806a1bbf1ca460d | main: added global counter | main: added global counter
| shifty91/kwc,shifty91/kwc | kwc.c | kwc.c |
99db84b2e2bad48d664b686e5466329c5d466f7e | Revert "Fix the permission problem. Take 2." | Revert "Fix the permission problem. Take 2."
This reverts commit 555bd205e7d00aa4b9f56c5520cfc7ebfb9adc78.
| 0mark/ldm,LemonBoy/ldm,LemonBoy/ldm,0mark/ldm | ldm.c | ldm.c |
f593ebce2826072060c36d0ad170f2fb679788a6 | Remove unneeded header inclusions | Remove unneeded header inclusions
| 0mark/ldm,0mark/ldm,LemonBoy/ldm,LemonBoy/ldm | ldm.c | ldm.c |
78df6117340af5e75900e9ad137b1ddd95c49e3c | fixed punctuation errors in help text | fixed punctuation errors in help text
| 946336/len | len.c | len.c |
d40302c5e3defb024b317545ca810e6ba531aa2c | lfs_rename: Cast error return codes to int. | lfs_rename: Cast error return codes to int.
For correctness, cast the lfs_stag_t variables to int when returning a negative error code.
| geky/littlefs,littlefs-project/littlefs,littlefs-project/littlefs,geky/littlefs,geky/littlefs,geky/littlefs | lfs.c | lfs.c |
21c44c3446a62e36a337b1e3dbda6112fc05d668 | Create a symlink from lib to lib64 | Create a symlink from lib to lib64
Some compilers search lib64 before lib.
| Linuxbrew/brew,Linuxbrew/brew,maxim-belkin/brew,maxim-belkin/brew,hanxue/linuxbrew,Linuxbrew/brew,Linuxbrew/brew,maxim-belkin/brew,hanxue/linuxbrew,hanxue/linuxbrew,rwhogg/brew,rwhogg/brew,rwhogg/brew | lib64 | lib64 |
158d69679bd0c775486bc7b60568c4dd9aec950a | small update | small update
| geoyws/lo,geoyws/tiny,geoyws/standard,geoyws/low | lo.js | lo.js |
17612ad2f0df1ae74db3dd21b14ffbcc0f08db4a | datetime separator handling | datetime separator handling | klopp/klib,klopp/klib | log.c | log.c |
ff38b0412c8923c70fed0eac8e6f21dd530c1aa5 | Create log.h | Create log.h | thiagomg/experiments,thiagomg/experiments,thiagomg/experiments,thiagomg/experiments,thiedri/experiments | log.h | log.h |
fcf0359088844932c8ff46dbe2b39f958a5b22aa | Made it so LP calls are made to disabled servers as well | Made it so LP calls are made to disabled servers as well
| c00w/bitHopper,c00w/bitHopper | lp.py | lp.py |
4731abc89df6fe8c3424074196d62ef3857207d4 | Update ls.md | Update ls.md | supersteph/supersteph.github.io,supersteph/supersteph.github.io,supersteph/supersteph.github.io | ls.md | ls.md |
3da16acf6bbd693ea901463effc272ff764e1b2f | Make makeMacro a little more fancy | Make makeMacro a little more fancy
| jeanlauliac/js-m4 | m4.js | m4.js |
30c6173097a4cad0ce5221aec27c299ccdb59d97 | support for system-gcc and non-cray machines | support for system-gcc and non-cray machines
| chrisbpawsey/maali,Pawseyops/maali,chrisbpawsey/maali | maali | maali |
7613749a7afcdea283458c0203d0a7235d97b016 | regen pre-generated magic file. | regen pre-generated magic file.
| brynet/file,brynet/file | magic | magic |
13d4b2f214edc968a1fd1b9511107760c6e8fe86 | simplified forward/reverse a bit | simplified forward/reverse a bit
| ocxtal/minialign,lh3/minimap,ocxtal/minialign | map.c | map.c |
37dbdbbbc62b67df8e0073402309f66b63ea07f7 | indexes and boundaries fixes | indexes and boundaries fixes
| padawin/map-structure-implementation | map.c | map.c |
2e83d0623a22d599f076265b0a49770489e8511f | Fetch now verifies root before running and create now creates parents as needed. | Fetch now verifies root before running and create now creates parents as needed.
| lee8oi/march | march | march |