.model small
.stack 100h
.data
output db "Hello, World!"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"dev": "HOST=0.0.0.0 nuxt", <<---- add the host arguement | |
"build": "nuxt build", | |
"start": "nuxt start", | |
"generate": "nuxt generate" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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(/\=+$/, ''); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
scss here: https://gist.github.com/geongeorge/8f92a99dcf622b6c5190cffdf036682c | |
*/ | |
.mt-0 { | |
margin-top: 0rem; | |
} | |
.pt-0 { | |
padding-top: 0rem; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); |
OlderNewer