Credits for the data go to https://gist.github.com/Fluidbyte/2973986 . I've simply transformed the data into an array.
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
[Adblock Plus 2.0] | |
! Title: ssut | |
! Version: 20211211 | |
! https://www.clien.net | |
www.clien.net##.main_top_ad | |
www.clien.net##.main_center_ad | |
www.clien.net##.list_top_ad | |
www.clien.net###hongboInfoList | |
www.clien.net##.list_bottom_ad |
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
// ==UserScript== | |
// @name NoReferrer | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match http*://*/* | |
// @grant GM_xmlhttpRequest | |
// @connect coupa.ng | |
// @connect a.aliexpress.com |
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
const fs = require('fs'); | |
const { promisify } = require('util'); | |
const child = require('child_process'); | |
const statAsync = promisify(fs.stat); | |
const unlinkAsync = promisify(fs.unlink); | |
const UA = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'; | |
async function main() { |
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 * as amqp from 'amqplib'; | |
export class ExponentialBackoffHelper { | |
private maxDelay: number = 60; | |
private factor: number = 2; | |
private maxAttempts: number = 5; | |
constructor( |
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
package main | |
import ( | |
"encoding/json" | |
"errors" | |
"net/url" | |
fasthttp "github.com/valyala/fasthttp" | |
) |
-
Sonatype Nexus 3.0 OSS
- NPM (proxy)
- npm packages (registry.npmjs.org/_all_docs, skimdb.npmjs.com)
- from npmjs.cf
- yarn: https://github.com/yarnpkg/yarn/releases
- install using yarn
- multi-threaded (ruby-concurrecy)
- npm packages (registry.npmjs.org/_all_docs, skimdb.npmjs.com)
- NPM (proxy)
-
Bash on windows offline install
-
https://www.varunagw.com/how-install-windows-subsystem-linux-bashonwindows-offline-windows/
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
# coding: utf-8 | |
try: | |
import requests | |
except ImportError: | |
raise ImportError(u'requests 패키지가 설치되어있지 않습니다.\n>> pip install requests') | |
from urllib.parse import parse_qsl | |
from collections import namedtuple | |
from datetime import datetime | |
import json |
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 icu | |
import romkan | |
from unihandecode import Unihandecoder | |
def main(): | |
d = Unihandecoder(lang='ja') | |
collator = icu.Collator.createInstance(icu.Locale('ja_JP.UTF-8')) | |
table = [ | |
u"女言葉の消失", # 2 |
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
/* layout | |
-------------------------------------*/ | |
body { | |
margin: 0 3.5%; | |
padding: 0; | |
font-family: 'NanumGothic'; | |
} | |
p, h2, tr, td, td a, select { | |
font-family: 'NanumGothic'!important; |
NewerOlder