A Pen by Tristan Huang on CodePen.
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
/* source: https://rekt.network/ */ | |
/* filter */ | |
.scanlines { | |
z-index: 900; | |
background: linear-gradient(rgba(18,16,16,0) 50%,rgba(0,0,0,0.25) 50%),linear-gradient(90deg,rgba(255,0,0,0.06),rgba(0,255,0,0.03),rgba(0,0,255,0.06)); | |
background-size: 100% 2px,3px 100% | |
} | |
/* animation */ |
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 <stdio.h> | |
int firstFunction() { | |
printf("First Function\n"); | |
return 0; | |
} | |
int secondFunctionWithArgumentOne(int one) { | |
printf("Second Function\n"); | |
return one; |
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
;;; ob-php.el --- org-babel functions for php evaluation | |
;; Copyright (C) Tristan Huang | |
;; Author: Tristan Huang | |
;; Keywords: literate programming, reproducible research | |
;; Homepage: https://orgmode.org | |
;; Version: 0.01 | |
;;; License: |
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
DOMAIN-KEYWORD,admarvel,REJECT | |
DOMAIN-KEYWORD,admaster,REJECT | |
DOMAIN-KEYWORD,adsage,REJECT | |
DOMAIN-KEYWORD,adsmogo,REJECT | |
DOMAIN-KEYWORD,adsrvmedia,REJECT | |
DOMAIN-KEYWORD,adwords,REJECT | |
DOMAIN-KEYWORD,adservice,REJECT | |
DOMAIN-KEYWORD,domob,REJECT | |
DOMAIN-KEYWORD,duomeng,REJECT | |
DOMAIN-KEYWORD,dwtrack,REJECT |
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 requests | |
from uuid import uuid4 | |
import json | |
headers = {"X-GatewaySession":"[REDACTED]", "X-ClientVersion":'dev'} | |
data = { | |
"jsonrpc": '2.0', | |
"method": "Companion.initApp", | |
"params": {"locale": "en_US", "fallbackLocale": "en-GB"}, | |
"id": str(uuid4()) |
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
#!/bin/sh | |
help() | |
{ | |
cat << HELP | |
usage: mm [-h -v] file1 file2 file3 ... fileN | |
-d: DEBUG mode | |
-h: Print this message | |
HELP |