Skip to content

Instantly share code, notes, and snippets.

View justintien's full-sized avatar
🍞
Jiapan

Justin Tien (Yi-Ming Tien) justintien

🍞
Jiapan
View GitHub Profile
@justintien
justintien / intset.js
Created May 16, 2020 04:43 — forked from dspezia/intset.js
Evaluating memory consumption of 1M targeted tag sets
var redis = require('redis')
var rc = redis.createClient(6379, 'localhost');
function create( target, callback )
{
x = []
for ( var i=0; i<40; ++i )
{
// Only 100K entries in the reverse index
var n = 1000*Math.round(Math.random()*100000);
@justintien
justintien / .Cloud.md
Created May 7, 2020 10:36 — forked from imba-tjd/.Cloud.md
一些免费的云资源

IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供软件/框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);CaaS是使用docker容器的PaaS;BaaS一般是类似于非关系数据库,但各家不通用,有时还有一些其它东西。

集合:https://github.com/ripienaar/free-for-devhttps://github.com/qinghuaiorg/free-for-dev-zh

未分类的

"facebook/create-react-app",
"reduxjs/redux",
"GoogleChrome/puppeteer",
"trekhleb/javascript-algorithms",
"30-seconds/30-seconds-of-code",
"zeit/next.js",
"yarnpkg/yarn",
"storybooks/storybook",
"thedaviddias/Front-End-Checklist",
"NARKOZ/hacker-scripts",
@justintien
justintien / httpserver.sh
Created March 22, 2020 15:06 — forked from upperstream/httpserver.sh
Simple HTTP Server (shell script)
#!/bin/sh
#
# Copyright (C) 2017 Upper Stream.
#
# See the bottom of this file for licensing conditions.
#
#set -x
set -e
@justintien
justintien / ID.js
Created December 20, 2019 02:51
ID - a unique ID/name generator for JavaScript
// Generate unique IDs for use as pseudo-private/protected names.
// Similar in concept to
// <http://wiki.ecmascript.org/doku.php?id=strawman:names>.
//
// The goals of this function are twofold:
//
// * Provide a way to generate a string guaranteed to be unique when compared
// to other strings generated by this function.
// * Make the string complex enough that it is highly unlikely to be
// accidentally duplicated by hand (this is key if you're using `ID`
@justintien
justintien / Telegram_it_group_list.md
Created August 31, 2019 09:24 — forked from Barneybook/Telegram_it_group_list.md
Telegram 資訊相關 群組清單
@justintien
justintien / .drone.yml
Created July 16, 2019 14:10 — forked from wzulfikar/.drone.yml
Drone CI slack template. more on drone.io + slack integration: http://plugins.drone.io/drone-plugins/drone-slack/
pipeline:
build:
image: alpine
commands:
- echo "do something :v"
slack:
image: plugins/slack
channel: dev__builds
webhook: https://hooks.slack.com/services/...
@justintien
justintien / node-folder-structure-options.md
Created June 12, 2019 01:46 — forked from lancejpollard/node-folder-structure-options.md
What is your folder-structure preference for a large-scale Node.js project?

What is your folder-structure preference for a large-scale Node.js project?

0: Starting from Rails

This is the reference point. All the other options are based off this.

|-- app
|   |-- controllers
|   |   |-- admin
@justintien
justintien / gist:dc2975e1ed7dc49b9e6e9e973c553124
Created February 13, 2019 05:19
oschina-config(nginx example)
#### myspace configuration ref: https://gitee.com/oschina/oschina-config/blob/master/main/my.conf ####
server {
listen 80;
server_name my.oschina.net;
include oschina/realip.conf;
if ($request_method !~ ^(GET|POST|HEAD)$ ) {
return 405;
}
/**
* Simple node.js style script loader for modern browsers
**/
function loadScript(src, cb) {
var script = document.createElement('script');
script.async = true;
script.src = src;
script.onerror = function() {
cb(new Error("Failed to load" + src));