Skip to content

Instantly share code, notes, and snippets.

View yunw's full-sized avatar

ywwny yunw

View GitHub Profile
@ih2502mk
ih2502mk / list.md
Last active November 6, 2025 21:51
Quantopian Lectures Saved
@ccdle12
ccdle12 / ELK-Cheat-Sheet.md
Last active March 5, 2021 02:59
Cheat Sheet for using the ELK stack for logging in MicroServices.

ELK

Elastic Search, Logstash, Kibana

A tech stack used for logging.

Log Stash Setup

Standard Input for Logstash

@LeCoupa
LeCoupa / bash-cheatsheet.sh
Last active October 23, 2025 20:35
Bash CheatSheet for UNIX Systems --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04
@dideler
dideler / 0-startup-overview.md
Last active October 28, 2025 09:22
Startup Engineering notes
@zhengjia
zhengjia / capybara cheat sheet
Created June 7, 2010 01:35
capybara cheat sheet
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')