Skip to content

Instantly share code, notes, and snippets.

View geongeorge's full-sized avatar
👋
Hello

Geon George geongeorge

👋
Hello
View GitHub Profile
@geongeorge
geongeorge / RESTful.txt
Created July 26, 2018 07:03
RESTful Routing
RESTful Routing
---------------
7 RESTful Routes for a blog app
Name Path HTTP Verb Purpose
-------------------------------------------
Index /blogs GET List all Blogs
New /blogs/new GET Show add new Form
Create /blogs/create POST Create new Post
Show /blog/:id GET Show a Blog Post
@geongeorge
geongeorge / 1.MASM_Notes.md
Last active May 3, 2019 02:36
MASM x86 Assembly Programs

Notes

Print a Message

.model small
.stack 100h
.data
output db "Hello, World!"
"scripts": {
"dev": "HOST=0.0.0.0 nuxt", <<---- add the host arguement
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate"
},
/**
* use this to make a Base64 encoded string URL friendly,
* i.e. '+' and '/' are replaced with '-' and '_' also any trailing '='
* characters are removed
*
* @param {String} str the encoded string
* @returns {String} the URL friendly encoded String
*/
function Base64EncodeUrl(str){
return str.replace(/\+/g, '-').replace(/\//g, '_').replace(/\=+$/, '');
<meta name="viewport" content="width=device-width,initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="full-screen" content="yes"/>
<meta name="screen-orientation" content="portrait"/>
@echo off
setlocal enabledelayedexpansion
set /a count=0
for /f "tokens=*" %%a in ('dir /b /od *.jpg') do (
echo ren "%%a" !count!.jpg
set /a count+=1
)
// Copy paste this in the console
(function(a){var b=document.createElement("textarea"),c=document.getSelection();b.textContent=a,document.body.appendChild(b),c.removeAllRanges(),b.select(),document.execCommand("copy"),c.removeAllRanges(),document.body.removeChild(b)})((function(a){const b=document.getElementsByTagName("meta");for(let c=0;c<b.length;c++)if(b[c].getAttribute("property")===a)return b[c].getAttribute("content");return""})("og:video"));
// bookmarklet
// https://jsfiddle.net/geongeorgek/5wbpshxz/2/
//get video url
@geongeorge
geongeorge / Spacing Helpers Tailwind CSS.css
Last active May 23, 2020 12:57
Generate Tailwind CSS style spacing helpers for margin and paddings
/*
scss here: https://gist.github.com/geongeorge/8f92a99dcf622b6c5190cffdf036682c
*/
.mt-0 {
margin-top: 0rem;
}
.pt-0 {
padding-top: 0rem;
@geongeorge
geongeorge / Tailwind Spacing Helpers.scss
Created May 23, 2020 12:57
Generate Tailwind CSS style spacing helpers for margin and paddings
// Generate Margin and Padding helpers similar to Tailwind CSS
// https://tailwindcss.com/docs/margin/
// https://tailwindcss.com/docs/padding/
// generated output CSS : https://gist.github.com/geongeorge/0135b0d5063ca1184c42fba70eeaae58
$spaceamounts: ((0,0), (1,0.25),(2,0.5), (3,0.75), (4,1), (5,1.25), (6,1.5), (8,2), (10,2.5), (12,3), (16,4), (20,5), (24,6), (32,8), (40,10), (48,12), (56,14), (64,16));
$sides: (top, bottom, left, right);
@geongeorge
geongeorge / npm start nuxt ihateregex pm2.md
Last active June 8, 2020 08:35
npm start nuxt ihateregex pm2

Do this after build command. Just in case I forget :)

Main

pm2 start npm --name "ihateregex" -- run "start"

Dev