Writing down a generic MR workflow as a state machine chart.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
going to update the file | |
D2021-08-22T03:52:47.871283:tool/net/redbean.c:1839:redbean-1:74710] indexing assets (inode 0xf79b5b) | |
cmd+r | |
D2021-08-22T03:53:06.587155:tool/net/redbean.c:5353:redbean-1:74731] 127.0.0.1:63870 LOOPBACK read 618 bytes | |
I--------------------000027:tool/net/redbean.c:4949:redbean-1:74731] RECEIVED 127.0.0.1:63870 LOOPBACK HTTP11 GET http://localhost:8080/hello.html "http://localhost:8080/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:90.0) Gecko/20100101 Firefox/90.0" | |
D--------------------000006:tool/net/redbean.c:4984:redbean-1:74731] RoutePath("/localhost/hello.html") | |
D--------------------000003:tool/net/redbean.c:4984:redbean-1:74731] RoutePath("/www.localhost/hello.html") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NO COMMIT ;) | |
for FILE in `git diff --name-only --cached` ; do | |
if grep -q 'NO COMMIT' $FILE | |
then | |
echo $FILE ' contains NO COMMIT!' | |
exit 1 | |
fi | |
done | |
exit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function timeSince(timeStamp) { | |
var now = new Date(), | |
secondsPast = (now.getTime() - timeStamp.getTime()) / 1000; | |
if(secondsPast < 60){ | |
return [-parseInt(secondsPast), 'seconds'] | |
} | |
if(secondsPast < 3600){ | |
return [-parseInt(secondsPast/60), 'minutes'] | |
} | |
if(secondsPast <= 86400){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "hooks-chat", | |
"version": "0.1.0", | |
"private": true, | |
"dependencies": { | |
"react": "^16.8.6", | |
"react-dom": "^16.8.6", | |
"react-scripts": "3.0.1", | |
"use-immer": "^0.3.3", | |
"use-socket.io-client": "^1.0.4" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Games Done Quick | |
Event Info | |
Community Info | |
About Us | |
Discord | |
VODS | |
HOTFIX |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# An example hook script to verify what is about to be committed. | |
# Called by git-commit with no arguments. The hook should | |
# exit with non-zero status after issuing an appropriate message if | |
# it wants to stop the commit. | |
# | |
# To enable this hook, make this file executable. | |
if git-rev-parse --verify HEAD 2>/dev/null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box@0536908972a6 ~> mkdir -p important/very-important/this.fish | |
box@0536908972a6 ~> mkdir -p usual/not-interested.fish | |
box@0536908972a6 ~> rm important/very-important/this.fish/ -R | |
box@0536908972a6 ~> touch important/very-important/this.fish | |
box@0536908972a6 ~> touch test.fish | |
box@0536908972a6 ~> rm -R usual/not-interested.fish | |
box@0536908972a6 ~> touch usual/not-interested.fish | |
box@0536908972a6 ~> vim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** You need to add right body parts */ | |
const asymHobbitBodyParts = [{name: "head", size: 3}, | |
{name: "left-eye", size: 1}, | |
{name: "left-ear", size: 1}, | |
{name: "mouth", size: 1}, | |
{name: "nose", size: 1}, | |
{name: "neck", size: 2}, | |
{name: "left-shoulder", size: 3}, | |
{name: "left-upper-arm", size: 3}, | |
{name: "chest", size: 10}, |
NewerOlder