Skip to content

Instantly share code, notes, and snippets.

View Serrin's full-sized avatar

Ferenc Czigler Serrin

  • Budapest
View GitHub Profile
@Serrin
Serrin / Markdown.xml
Created January 25, 2020 14:47 — forked from xCONFLiCTiONx/Markdown.xml
Markdown Language Support for notepad++ (VS2015-Dark)
<NotepadPlus>
<UserLang name="Markdown" ext="md markdown" udlVersion="2.1">
<Settings>
<Global caseIgnored="yes" allowFoldOfComments="no" foldCompact="no" forcePureLC="2" decimalSeparator="0" />
<Prefix Keywords1="yes" Keywords2="yes" Keywords3="yes" Keywords4="yes" Keywords5="yes" Keywords6="no" Keywords7="no" Keywords8="no" />
</Settings>
<KeywordLists>
<Keywords name="Comments">00# 01 02((EOL)) 03&lt;!-- 04--&gt;</Keywords>
<Keywords name="Numbers, prefix1"></Keywords>
<Keywords name="Numbers, prefix2"></Keywords>
@Serrin
Serrin / js-encode-decode.md
Created January 20, 2020 20:56 — forked from yidas/js-encode-decode.md
JavaScript HTML Entities Encode & Decode
@Serrin
Serrin / github.css
Created January 4, 2020 09:36 — forked from tuzz/github.css
Github Markdown Stylesheet
/*
Copyright (c) 2017 Chris Patuzzo
https://twitter.com/chrispatuzzo
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
furnished to do so, subject to the following conditions:
@Serrin
Serrin / gist:f9528a34896f6217ddde2abee9ce5c3b
Created January 1, 2020 12:08 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@Serrin
Serrin / media-query.css
Created December 15, 2019 18:49 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
// file version v1.0 "2019-07-11T19:04:35.266Z"
// es6
const dec2hex = (r, g, b) => `#${(+r).toString(16).padStart(2,"0")}${(+g).toString(16).padStart(2,"0")}${(+b).toString(16).padStart(2,"0")}`;
// es5
function dec2hex (r, g, b) {
return "#"
+ (+r).toString(16).padStart(2, "0")
@Serrin
Serrin / states_hash.json
Created June 30, 2019 15:39 — forked from mshafrir/states_hash.json
US states in JSON form
{
"AL": "Alabama",
"AK": "Alaska",
"AS": "American Samoa",
"AZ": "Arizona",
"AR": "Arkansas",
"CA": "California",
"CO": "Colorado",
"CT": "Connecticut",
"DE": "Delaware",
@Serrin
Serrin / XHTML5.xhtml
Last active October 31, 2019 12:05 — forked from sonnyp/XHTML5.xhtml
XHTML5 template
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="UTF-8"/>
<title>TITLE</title>
<meta name="description" content="$DESCRIPTION"/>
<meta name="author" content="$AUTHOR"/>
@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:
@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)