Skip to content

Instantly share code, notes, and snippets.

View lulalachen's full-sized avatar
🎯
Focusing

Lulala Chen lulalachen

🎯
Focusing
View GitHub Profile
@appleboy
appleboy / jenkins.conf
Created July 20, 2016 01:26
nginx enkins virtual host setting
server {
listen 80;
server_name your_host_name;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@chusiang
chusiang / myToReadBookLists.md
Last active March 27, 2024 08:49
凍仁的讀書清單

凍仁的讀書清單

Migrated to GitLab and GitHub.

看了《學徒模式》一書後,凍仁試著用 Gist 管理自己的待讀書單,並不時修改其閱讀順序。您可以在 revisions 找到編修記錄。

目錄:

  1. 待讀書單
  2. 已讀書單
@wuct
wuct / functionnal-switch.js
Last active March 7, 2016 16:05
A functional implementation of switch
// simple example
const isFruitOrVegetable = switch(
case('apple', 'isFruit'),
case('orange', 'isFruit'),
case('eggplant', 'isVegetable'),
default('isFruit')
);
isFruitOrVegetable('apple') // isFruit
@dhammikamare
dhammikamare / Contest_Guide.md
Last active June 25, 2024 17:46 — forked from shashank21j/Contest_Guide.md
Tutorial for create your own contest on HackerRank.