This file contains hidden or 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
| /* | |
| dchest's PureCSS Tweaks | |
| https://gist.github.com/dchest/500746c2e41baaafcab3 | |
| */ | |
| * { | |
| -webkit-box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } |
This file contains hidden or 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
| # run qt5ct to config QT. | |
| # https://forum.artixlinux.org/index.php/topic,472.0.html | |
| # put the environment variables in /etc/environment | |
| QT_QPA_PLATFORMTHEME=qt5ct | |
| QT_AUTO_SCREEN_SCALE_FACTOR=0 |
This file contains hidden or 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
| # TMP folder size | |
| mount -o remount,size=32G /tmp/ |
This file contains hidden or 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
| #!/bin/bash | |
| # Zeitgeist Screenshots | |
| # Author: @exnius | |
| # 2018-10-22 | |
| # Guarda una captura de la ventana activa en la carpeta $ZEITGEIST | |
| # ======================================= | |
| screenshotFormat="jpg" | |
| # ======================================= | |
| cd $ZEITGEIST | |
| focusedWindowTitle="$(xdotool getactivewindow getwindowname)" |
This file contains hidden or 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
| <?php | |
| /** | |
| * QR Code + Logo Generator | |
| * | |
| * http://labs.nticompassinc.com | |
| */ | |
| $data = isset($_GET['data']) ? $_GET['data'] : 'http://labs.nticompassinc.com'; | |
| $size = isset($_GET['size']) ? $_GET['size'] : '200x200'; | |
| $logo = isset($_GET['logo']) ? $_GET['logo'] : FALSE; |
This file contains hidden or 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
| /* Small */ | |
| @media (max-width: @breakpoint-small-max) { | |
| [class*='uk-push-small-'], | |
| [class*='uk-pull-small-'] { position: relative; } | |
| /* | |
| * Push | |
| */ |
This file contains hidden or 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
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>403 Forbidden 禁止進入</title> | |
| <style type="text/css"> | |
| body { | |
| background: #e3e3e3; | |
| font-family: "Segoe UI", "Droid Sans", Arial, sans-serif; | |
| color: #353535; |
This file contains hidden or 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
Show hidden characters
| [ | |
| { "keys": ["ctrl+keypad_divide"], "command": "view.encoding()" }, | |
| { "keys": ["ctrl+keypad_multiply"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
| { "keys": ["ctrl+p"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
| // { "keys": ["ctrl+alt+enter"], "command": "show_overlay", "args": {"overlay": "command_palette"} }, | |
| { "keys": ["super+e"], "command": "paste_and_indent" }, | |
| { "keys": ["ctrl+."], "command": "toggle_comment", "args": { "block": false } }, |
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <resources> | |
| <!-- google's material design colours from | |
| http://www.google.com/design/spec/style/color.html#color-ui-color-palette --> | |
| <!--reds--> | |
| <color name="md_red_50">#fde0dc</color> | |
| <color name="md_red_100">#f9bdbb</color> | |
| <color name="md_red_200">#f69988</color> |
This file contains hidden or 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
| Clip(Text="", Reselect="") ; http://www.autohotkey.com/forum/viewtopic.php?p=467710 , modified August 2012 | |
| { | |
| Static BackUpClip, Stored, LastClip | |
| If (A_ThisLabel = A_ThisFunc) { | |
| If (Clipboard == LastClip) | |
| Clipboard := BackUpClip | |
| BackUpClip := LastClip := Stored := "" | |
| } Else { | |
| If !Stored { | |
| Stored := True |
NewerOlder