Skip to content

Instantly share code, notes, and snippets.

View malkoG's full-sized avatar
😎
FULL SWAG DEVELOPER WANNABE

Lee Jae-yeol malkoG

😎
FULL SWAG DEVELOPER WANNABE
View GitHub Profile
@kconner
kconner / macOS Internals.md
Last active May 6, 2024 22:20
macOS Internals

macOS Internals

Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.

Starting Points

How to use this gist

You've got two main options:

@rain-1
rain-1 / LLM.md
Last active May 5, 2024 07:13
LLM Introduction: Learn Language Models

Purpose

Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.

Avoid being a link dump. Try to provide only valuable well tuned information.

Prelude

Neural network links before starting with transformers.

{"source_id":"447781907342610126","version":"1","workflow":{"name":"써브웨이 메뉴 봇","blueprint":{"version":"1","trigger":{"type":"channel_action","id":"6f84c580-8753-4f84-9ce8-68b8649d3904","config":{"name":"subway menu","channels":["${CHANNEL_ID}"],"callback_id":"9827f5f6-9031-4fa8-a033-03bc1209ba8b","description":"subway menu"}},"steps":[{"type":"dialog","id":"508ddaca-1e30-4e1b-bca2-744527b1e185","config":{"dialog_title":"써브웨이 메뉴 봇","dialog_elements":[{"name":"48fe2973-8922-44d0-a595-17c65489f791","type":"text","label":"샌드위치 종류를 골라주세요","subtype":"","optional":false,"placeholder":""},{"name":"36be4b25-f258-4c6f-8b9c-f90d9840b1a4","type":"select","label":"세트인가요?","value":"X","options":[{"label":"O","value":"O"},{"label":"X","value":"X"}],"optional":false,"data_source":"static"},{"name":"23f0027d-6c0e-408f-80d0-9508af1eea4d","type":"select","label":"사이즈를 골라주세요","value":"15cm","options":[{"label":"15cm","value":"15cm"},{"label":"30cm","value":"30cm"}],"optional":false,"data_source":"static"},{"name":"00528de6-8e6d-
@dqdq4197
dqdq4197 / index.html
Created September 17, 2020 09:32
one page google form
<script src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pusher/5.0.2/pusher.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-quill/0.4.1/react-quill.js"></script>
<link
rel="stylesheet" href="https://d2mkevusy1mb28.cloudfront.net/turnchat/assets/design_guideline_snowball-886a7c88eeadf693820a27fd8abde545ebf451ab2414c72c9255e5bc928f2f00.css"
/>
@skt-t1-byungi
skt-t1-byungi / abbr.txt
Last active May 23, 2021 05:33
내가 코딩때 쓰는 약어 모음
app => application
acc => accumulate
arr => array
abs => absolute
addr => address
arg => argument
args => arguments
attr => attribute
attrs => attributes
auth => authenticate
@JoeyBurzynski
JoeyBurzynski / 55-bytes-of-css.md
Last active May 6, 2024 10:42
58 bytes of css to look great nearly everywhere

58 bytes of CSS to look great nearly everywhere

When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:

main {
  max-width: 38rem;
  padding: 2rem;
  margin: auto;
}
@liuderchi
liuderchi / create_repo_labels.sh
Last active June 23, 2022 12:40
To Create Labels for your Repo
#!/bin/bash
set -e
# NOTE to create labels for your repo
# to support types from commit message guide (feat, fix, docs, style, refactor, test, chore)
# by hitting GitHub API v3
#
# https://developer.github.com/v3/issues/labels/#create-a-label
# https://gist.github.com/caspyin/2288960
@rockwood
rockwood / Readme.md
Last active May 4, 2018 15:55
Seoul Elixir Meetup

1. Install Phoenix 1.3

mix archive.install https://github.com/phoenixframework/archives/raw/master/phx_new.ez

2. Create a new Phoenix project

mix phx.new demo

3. Create the database

@mlanett
mlanett / rails http status codes
Last active May 3, 2024 04:15
HTTP status code symbols for Rails
HTTP status code symbols for Rails
Thanks to Cody Fauser for this list of HTTP responce codes and their Ruby on Rails symbol mappings.
Status Code Symbol
1xx Informational
100 :continue
101 :switching_protocols
102 :processing