I hereby claim:
- I am naereen on github.
- I am naereen (https://keybase.io/naereen) on keybase.
- I have a public key ASB0qooyut1iVIMM35DaR2wUiYQ-q4jMDNUPL_LGM_0DTwo
To claim this, I am signing this object:
| { | |
| // Custom brackets for LaTeX+ for the BracketHighlighter Sublime Text 3 plugin | |
| // Needs the LaTeX+ plugin from https://github.com/randy3k/Latex-Plus/ | |
| // And the BracketHighlighter plugin from https://github.com/facelessuser/BracketHighlighter | |
| // Based on this page https://github.com/randy3k/Latex-Plus/wiki/BracketHighlighter-settings | |
| // | |
| // HowTo use: save this to Packages/User/bh_core.sublime-settings | |
| // (or Menu > Preferences > Package Settings > BracketHighlighter > Brackets Settings - User) | |
| // | |
| // FIXME reorder the objects in a more logical fashion |
| #!/usr/bin/env xdg-open | |
| [Desktop Entry] | |
| Type=Application | |
| Name=Marp | |
| GenericName=Marp - Markdown Presentation Editor | |
| Icon=/home/lilian/.local/Marp/marp.png | |
| Exec=/home/lilian/.local/Marp/Marp %f | |
| Categories=Office | |
| Terminal=false |
| #!/usr/bin/env xdg-open | |
| [Desktop Entry] | |
| Type=Application | |
| Name=Zotero | |
| GenericName=Zotero Bibliography Manager | |
| Icon=/home/lilian/.local/Zotero_linux-x86_64/chrome/icons/default/default48.png | |
| Exec=/home/lilian/.local/Zotero_linux-x86_64/zotero %f | |
| Categories=Office | |
| Terminal=false |
| # Inside the SSL server: | |
| # Local proxy for uLogMe (https://localhost:8443/) | |
| location /ulogme/ { | |
| proxy_set_header Host $host; | |
| proxy_set_header X-Real-IP $remote_addr; | |
| proxy_buffering off; | |
| proxy_cache off; | |
| proxy_ssl_verify off; | |
| proxy_pass https://localhost:8443/; |
| [Desktop Entry] | |
| Version=1.0 | |
| Type=Application | |
| Name=Zelda: Return of the Hylian SE | |
| Comment=http://www.solarus-games.org/games/zelda-return-of-the-hylian-se/ | |
| TryExec=zelda_roth_se | |
| Exec=zelda_roth_se | |
| Icon=/usr/share/solarus/zelda_roth_se/zelda_roth_se.png |
| #!/usr/bin/env xdg-open | |
| [Desktop Entry] | |
| Name=Kaamelott Soundbard | |
| Comment=Kaamelott Soundbard desktop app | |
| Exec=/home/lilian/.local/kaamelott-soundboard-linux-x64/kaamelott-soundboard | |
| Icon=/home/lilian/.local/share/applications/kaamelott-soundboard.jpg | |
| Terminal=false | |
| Type=Application | |
| InitialPreference=6 |
| // Source https://codepen.io/juliangarnier/pen/gmOwJX | |
| // (C) Julian Garnier | |
| // Adapted by Lilian Besson (Naereen) https://github.com/Naereen | |
| // to add a fireworks effect on a reveal.js slideshows | |
| var canvasEl = document.querySelector('.fireworks'); | |
| var ctx = canvasEl.getContext('2d'); | |
| var numberOfParticules = 40; | |
| var pointerX = 0; | |
| var pointerY = 0; |
| @import url('//fonts.googleapis.com/css?family=Tangerine'); | |
| /* The ribbons */ | |
| .corner-ribbon { | |
| font-family: "Tangerine",sans-serif; | |
| width: 400px; | |
| background: #e43; | |
| position: absolute; | |
| top: 50px; | |
| left: -100px; |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| ''' | |
| Filter to wrap Pandoc's CodeBlocks into minted blocks when using latex. | |
| Pandoc's `fence_code_attributes` can be used to provide: | |
| - the language (first class) | |
| - minted's argumentless options (following classes) | |
| - minted's options with arguments (attributes) | |
| ''' |