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
| export QT_SCALE_FACTOR=2 | |
| export QT_AUTO_SCREEN_SCALE_FACTOR=0 | |
| cat << EOF > /dev/null | |
| Below is an example of *.desktop file (Ubuntu 16.04) | |
| [Desktop Entry] | |
| Name=Roto3T | |
| Exec=env QT_SCALE_FACTOR=2 QT_AUTO_SCREEN_SCALE_FACTOR=0 /opt/robo3t/bin/robo3t |
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
| // .jupyter/custom/custom.js | |
| require(["codemirror/keymap/sublime", "notebook/js/cell", "base/js/namespace"], | |
| function(sublime_keymap, cell, IPython) { | |
| cell.Cell.options_default.cm_config.keyMap = 'sublime'; | |
| cell.Cell.options_default.cm_config.extraKeys['Ctrl-Enter'] = function() { console.log('ctrl-enter') }; | |
| var cells = IPython.notebook.get_cells(); | |
| for (var cl = 0; cl < cells.length; cl++) { | |
| cells[cl].code_mirror.setOption('extraKeys', { | |
| 'Ctrl-Enter': function () {} |
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
| SOURCE := paper.tex | |
| mk: | |
| latexmk -cd -f -pdf -interaction=nonstopmode -synctex=1 $(SOURCE) | |
| pdf: | |
| pdflatex $(SOURCE) | |
| clean: | |
| $(call clean) |
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
| PAPER := main | |
| # remember to add \usepackage[dvipdfm]{graphicx} to your $(PAPER).tex | |
| pdf: | |
| latex $(PAPER).tex | |
| dvipdfm $(PAPER).dvi | |
| .PHONY: pdf |
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
| Name: blacklist | |
| Type: hash:net | |
| Revision: 6 | |
| Header: family inet hashsize 2048 maxelem 65536 | |
| Size in memory: 132248 | |
| References: 0 | |
| Number of entries: 4769 | |
| Members: | |
| 1.203.115.64 | |
| 1.213.195.154 |
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 | |
| # Copyright (c) 2019-2020 by Pulse Secure, LLC. All rights reserved | |
| HOMEDIR=$HOME | |
| INSTALLDIR=/usr/local/pulse | |
| PULSEDIR=$HOME/.pulse_secure/pulse | |
| PULSECERTDIR=$PULSEDIR/certificates | |
| SVCNAME=pulsesvc | |
| UTILNAME=pulseutil |
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
| grep_function_names () { | |
| if [ -e "$1" ]; then | |
| grep -E '^function' $1| awk '{print $2}' | sed -r 's/\(|\)|\{|\}//g' | |
| fi | |
| } |
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
| @echo off | |
| SET st3Path=C:\Program Files\Sublime Text 3\sublime_text.exe | |
| rem add it for all file types | |
| @reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f | |
| @reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f | |
| @reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f | |
| rem add it for folders | |
| @reg add "HKEY_CLASSES_ROOT\Directory\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f |
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
| # Minimize current window | |
| xdotool windowminimize $(xdotool getactivewindow) | |
| # Make current window always on top | |
| wmctrl -r :ACTIVE: -b toggle,above | |
| # Undo aways-on-top window | |
| wmctrl -r :ACTIVE: -b remove,above |
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
| import tarfile | |
| import subprocess | |
| import json | |
| import sys | |
| image = sys.argv[1] | |
| # Create a dictionary for the image manifest | |
| manifest_dict = { |