Skip to content

Instantly share code, notes, and snippets.

View bearcub3's full-sized avatar
πŸ’…
Woman who designs and codes

Go-Un(Emilie), Shin bearcub3

πŸ’…
Woman who designs and codes
View GitHub Profile
@digitaljhelms
digitaljhelms / gist:4287848
Last active April 24, 2025 20:31
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch
@yamoo9
yamoo9 / angularJS-directives-expressions-login-header-bar.html
Last active August 30, 2016 07:19
AngularJS - λ””λ ‰ν‹°λΈŒ & μ΅μŠ€ν”„λ ˆμ…˜ 예제(둜그인 헀더-λ°”)
<!DOCTYPE html>
<html lang="ko-KR" data-ng-app>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta charset="UTF-8">
<title>Directives &amp; Expressions - AngularJS</title>
<style>
body {
min-height: 100vh;
background-image: linear-gradient(0deg, #ADADAD, #F2F2F2);
@subfuzion
subfuzion / curl.md
Last active April 29, 2025 16:03
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@lelandrichardson
lelandrichardson / react-native.js
Last active July 21, 2022 17:56
React Native flow types
declare var __DEV__: boolean;
declare module 'react-native' {
declare type Color = string | number;
declare type Transform =
{ perspective: number } |
{ scale: number } |
{ scaleX: number } |
@enepomnyaschih
enepomnyaschih / base64.js
Last active April 25, 2025 08:01
https://www.npmjs.com/package/byte-base64 - Encode JS Uint8Array, simple array of bytes or native JS string to base64 and back
/*
MIT License
Copyright (c) 2020 Egor Nepomnyaschih
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is