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
| # Using bobthefish theme from Oh-my-fish on fish shell | |
| BoldAsFone=no | |
| Font=Dejavu Sans Mono for Powerline | |
| FontHeight=10 |
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
| {"lastUpload":"2017-01-11T16:48:29.055Z"} |
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
| set smoothscroll | |
| set noautofocus " The opposite of autofocus; this setting stops | |
| " sites from focusing on an input box when they load | |
| let barposition = "bottom" | |
| " This unmaps the default 'h', 'j', 'k', and 'l' mappings | |
| unmap J K | |
| map K previousTab " I use Vivaldi with tabs on the side | |
| map J nextTab " so this makes more sense |
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
| ç |
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 | |
| # By Peter Kamerman ([email protected]) | |
| ########## | |
| # FUNCTION | |
| ########## | |
| # Script to toggle the proxy configurations of the terminal, git, and R | |
| # for use behind a proxy server (e.g., at work) and no proxy (e.g., home). | |
| ######################## | |
| # DISCLAIMER and LICENSE | |
| ######################## |
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 | |
| require_once( 'configuration.php' ); | |
| $Config = new JConfig(); | |
| backup_tables($Config->host,$Config->user,$Config->password,$Config->db); | |
| /* backup the db OR just a table */ | |
| function backup_tables($host,$user,$pass,$name,$tables = '*') |
NewerOlder