Skip to content

Instantly share code, notes, and snippets.

View Serrin's full-sized avatar

Ferenc Czigler Serrin

  • Budapest
View GitHub Profile
@Serrin
Serrin / bash-cheatsheet.sh
Created August 1, 2017 09:29 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04
@Serrin
Serrin / line-endings.md
Last active August 20, 2017 11:30
line-endings.md
Character Name OS Code ASCII Unicode
LF Line Feed Unix, Linux, OSX \n 10 U+000A
CR Carriage Return macOS-9 \r 13 U+000D
CR+LF CR+LF Windows, DOS \r\n 13+10 U+000D + U+000A
@Serrin
Serrin / meaningOfLife.js
Last active September 22, 2017 10:06
meaningOfLife.js
const meaningOfLife = 42;
@Serrin
Serrin / js.md
Created August 25, 2017 10:38 — forked from nuhil/js.md
Javascript Handbook

Javascript Handbook

A hand crafted markdown document contains all major Javascript topics covered, taken from different sources. Brush Up your JS memory.

Comments


Single line comments start with //. For multi-line commands, you use /* ... */

// This is a single line comment
@Serrin
Serrin / httpStatusCodes.js
Created September 22, 2017 09:58 — forked from jochemstoel/httpStatusCodes.js
An HTTP Status Codes object
/**
* HTTP Status Codes
* Copyright (c) 2012, marlun78
* MIT License, https://gist.github.com/marlun78/bd0800cf5e8053ba9f83
*
* Taken from: http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
* Visual Studio find regex: ^(\d{3}) ([^\r\n]+)\r\n
* Visual Studio replace regex: '$1': '$2', //
* Notes wrapped in parens moved manually
*/
@Serrin
Serrin / meta-tags.md
Created September 22, 2017 09:59 — forked from jochemstoel/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
@Serrin
Serrin / js-frontend-resources.md
Created November 29, 2017 13:37 — forked from diegopacheco/js-frontend-resources.md
Frontend / JavaScript Resources
@Serrin
Serrin / ID.js
Created March 9, 2018 12:04
ID - a unique ID/name generator for JavaScript
// Generate unique IDs for use as pseudo-private/protected names.
// Similar in concept to
// <http://wiki.ecmascript.org/doku.php?id=strawman:names>.
//
// The goals of this function are twofold:
//
// * Provide a way to generate a string guaranteed to be unique when compared
// to other strings generated by this function.
// * Make the string complex enough that it is highly unlikely to be
// accidentally duplicated by hand (this is key if you're using `ID`
@Serrin
Serrin / webdev_online_resources.md
Created July 23, 2018 18:20 — forked from Edwardtonnn/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)
@Serrin
Serrin / win10_normalizer.ps1
Created March 2, 2019 11:02 — forked from icetee/win10_normalizer.ps1
Windows 10 remove unnecessary applications
#Uninstall 3D Builder
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
#Uninstall Alarms and Clock
Get-AppxPackage *windowsalarms* | Remove-AppxPackage
#Uninstall Calculator
Get-AppxPackage *windowscalculator* | Remove-AppxPackage
#Uninstall Calendar and Mail: