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
body { | |
/* IE */ | |
filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); | |
/* Chrome, Safari */ | |
-webkit-filter: grayscale(1); | |
/* Firefox */ | |
filter: grayscale(1); | |
} |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
</head> | |
<h1>OCT RED OCEAN DOT WORLD</h1> | |
<h2>A WEB <strikeout>WITHOUT ADVERTISING / SPAM / DUPLICATED CONTENT /</strikeout> SO HEAVEN, SO ORO</h2> |
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/bash | |
# i wrote this in 10-15 minutes, it works feel free to improve it and do whatever u want with it :) | |
# you can use any api to publish the transaction. | |
# the idea is you traverse back to the the input that is confirmed and boradcast the transaction to the network. | |
# if you are luckly you can broadcast about 25-30 per block, if you are running multiple wallets then you can increase this | |
# limit (but i haven't verified this | |
# call the script with your transaction waiting to confirm | |
# hash-push.sh acaf309bdded0746253fadbde42ded0a06f73c57059a1690cbc259b5469086d3 |
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
panic(cpu 4 caller 0xffffff7f8132f948): "XHC2(MacBookPro15,3): thunderbolt power on failed 0xffffffff\n"@/BuildRoot/Library/Caches/com.apple.xbs/Sources/IOPCIFamily/IOPCIFamily-370.80.1/IOPCIBridge.cpp:1398 | |
Backtrace (CPU 4), Frame : Return Address | |
0xffffffa3bfc83a60 : 0xffffff8000937beb | |
0xffffffa3bfc83ab0 : 0xffffff8000a6f4b5 | |
0xffffffa3bfc83af0 : 0xffffff8000a60f2e | |
0xffffffa3bfc83b40 : 0xffffff80008dea40 | |
0xffffffa3bfc83b60 : 0xffffff80009372d7 | |
0xffffffa3bfc83c60 : 0xffffff80009376bb | |
0xffffffa3bfc83cb0 : 0xffffff80010ce059 | |
0xffffffa3bfc83d20 : 0xffffff7f8132f948 |
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/bash | |
EXTERNAL_BACKUP_DIR="/Volumes/data disk" | |
LIBRARY_NAME=$1 | |
mv "$LIBRARY_NAME" $EXTERNAL_BACKUP_DIR/ & #send the move to background | |
# monitor the destination path | |
raw footage library % lastSize=`du -s "$EXTERNAL_BACKUP_DIR/$LIBRARY_NAME" | tr '\t' ' ' | cut -d' ' -f1`; | |
while true |
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
# tmux shortcuts & cheatsheet | |
start new: | |
tmux | |
start new with session name: | |
tmux new -s myname |
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/bash | |
PRIVATE_TOKEN="create from your gitlab profile" | |
TRIGGER_TOKEN="get from the project ci/cd triggers" | |
GITLAB_URL="https://gitlab.com" | |
PROJECT_ID="you can find this using gitlab api or under the gitlab project settings" | |
REF="master" #this can also be a branch name or a commit hash | |
SLEEP_SECONDS=1 | |
while true | |
do |
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
-- this query kills any active session attached to the 'dbname' database, which can prevent you from | |
-- running certain administrative operations on the database | |
select pg_terminate_backend(pid) | |
from pg_stat_activity | |
where pid IN (select pid from pg_stat_activity where datname = 'dbname'); | |
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
var content = document.createElement('div') | |
content.id = 'alert'; | |
content.style.width = '100%'; | |
content.innerHTML = 'tax translation helper is loaded'; | |
content.style.height = '100px'; | |
content.style.textAlign = 'center'; | |
content.style.display = 'none'; | |
var body = document.getElementsByTagName('body')[0]; | |
body.appendChild(content); |
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
<activemq.version>5.15.11</activemq.version> | |
<antlr2.version>2.7.7</antlr2.version> | |
<appengine-sdk.version>1.9.77</appengine-sdk.version> | |
<artemis.version>2.10.1</artemis.version> | |
<aspectj.version>1.9.5</aspectj.version> | |
<assertj.version>3.13.2</assertj.version> | |
<atomikos.version>4.0.6</atomikos.version> | |
<awaitility.version>4.0.2</awaitility.version> | |
<bitronix.version>2.1.4</bitronix.version> | |
<build-helper-maven-plugin.version>3.0.0</build-helper-maven-plugin.version> |
OlderNewer