This file contains 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
couple: couple.o | |
gcc couple.o -lm -o couple | |
couple.o: couple.c | |
gcc -c -O2 couple.c | |
clean: | |
rm -f couple couple.o |
This file contains 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
#include "bench.h" | |
using SOURCE = u64; | |
using RESULT = u64; | |
SOURCE src[ 10000 ]; | |
constexpr u32 SIZE = sizeof src / sizeof *src; | |
RESULT dst0[ SIZE ], dst1[ SIZE ], dst2[ SIZE ], dst3[ SIZE ], dst4[ SIZE ], |
This file contains 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
## == Brew Package Install ==================================================== | |
BRW_PACKAGE_NAME="autojump fzf ripgrep thefuck" | |
export PATH="$PATH:/home/linuxbrew/.linuxbrew/bin/" | |
{ | |
brew install $BRW_PACKAGE_NAME | |
} || { | |
eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv) | |
brew vendor-install ruby | |
brew install $BRW_PACKAGE_NAME | |
} |
This file contains 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
yarn install v1.22.4 | |
[1/4] Resolving packages... | |
[2/4] Fetching packages... | |
[3/4] Linking dependencies... | |
[4/4] Building fresh packages... | |
error /home/black7375/include-media/node_modules/node-sass: Command failed. | |
Exit code: 1 | |
Command: node scripts/build.js | |
Arguments: | |
Directory: /home/black7375/include-media/node_modules/node-sass |
This file contains 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
complete -W "2to3 | |
7z | |
7za | |
7zr | |
R | |
a2disconf | |
a2dismod | |
a2dissite | |
a2enconf | |
a2enmod |
This file contains 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
import h5py | |
import PIL, PIL.ImageFont, PIL.Image, PIL.ImageDraw, PIL.ImageChops, PIL.ImageOps | |
import os | |
import random | |
import string | |
import numpy | |
import sys | |
# -------------------- Convert to Numpy Array -------------------- | |
w, h = 64, 64 |
This file contains 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
/* Each Mode - Reduce Padding */ | |
/** Variable Compact General Touch | |
* --tab-min-height 29px 36px 41px | |
* --toolbarbutton-outter-padding 3px 2px 2px | |
* --toolbarbutton-inner-padding 6px 8px 9px | |
* --bookmark-block-padding 1px 4px 7px | |
* --urlbar-min-height 26px 32px 41px | |
* --urlbar-icon-padding 3px 6px 7px | |
* .tab-content[pinned] padding 0 --inline-tab-padding; 0 10px; 0 10px |
This file contains 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
// This is Refactoring Version of https://github.com/d2phap/fluent-reveal-effect | |
// Plan to PR when there is time | |
// ** Interfaces *************************************************************** | |
// Global | |
interface resourceI { | |
oriBg: string; | |
el: HTMLElement; | |
} |
This file contains 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
//== RE::ASSERTIONS ============================================================ | |
const WORD_BOUNDARY = String.raw`\b`; | |
function lookahead(x, y) { | |
const symbol = "?="; | |
return x + group(symbol + y); | |
} | |
function lookbehind(x, y) { | |
const symbol = "?<="; |
This file contains 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
REGEDIT4 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize] | |
"AppsUseLightTheme"=dword:00000000 |
OlderNewer