Skip to content

Instantly share code, notes, and snippets.

View danielblazquez's full-sized avatar

DanielBlazquez danielblazquez

View GitHub Profile
@mrliptontea
mrliptontea / sublime-text-3-windows-shortcuts.md
Last active August 23, 2025 10:28 — forked from TheShrike/gist:6111200
Sublime Text 3 - Useful Shortcuts (Windows)

Sublime Text 3 - Useful Shortcuts (Windows)

General

Shortcut Description
Ctrl+Shift+P command prompt
Ctrl+Alt+P switch project
Ctrl+P go to file
Ctrl+G go to line
@akora
akora / remove-diacritics-google-sheet
Created February 28, 2015 11:18
Removes all diacritics from strings (e.g. names) in a Google spreadsheet
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(C2,"ö","o"),"ü","u"),"ó","o"),"ő","o"),"ú","u"),"é","e"),"á","a"),"ű","u"),"í","i"),"Ö","O"),"Ü","U"),"Ó","O"),"Ő","O"),"Ú","U"),"É","E"),"Á","A"),"Ű","U"),"Í","I")
@paulsmith
paulsmith / uni-ascii-translit.txt
Last active February 15, 2019 19:55
Unicode code points transliterated into ASCII characters (using `iconv(1)`). The code points are the printable (i.e., non-control) characters in the Latin-1 Supplement and Latin Extended-A blocks. The first column is the code point in decimal, then code point in hex, then the Unicode character, finally the ASCII transliterated character(s).
160 U+00a0  
161 U+00a1 ¡ !
162 U+00a2 ¢ c
163 U+00a3 £ lb
165 U+00a5 ¥ yen
166 U+00a6 ¦ |
167 U+00a7 § SS
168 U+00a8 ¨ "
169 U+00a9 © (c)
170 U+00aa ª a
@elidickinson
elidickinson / max_width_email.html
Created May 6, 2013 15:10
Email Template trick: max-width with outlook
<!--[if mso]>
<center>
<table><tr><td width="580">
<![endif]-->
<div style="max-width:580px; margin:0 auto;">
<p>This text will be centered and constrained to 580 pixels even on Outlook which does not support max-width CSS</p>
</div>
<!--[if mso]>