This was forked from Brian Holt
A Pen by piggyslasher on CodePen.
<?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 = '*') |
#!/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 | |
######################## |
ç |
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 |
{"lastUpload":"2017-01-11T16:48:29.055Z"} |
# Using bobthefish theme from Oh-my-fish on fish shell | |
BoldAsFone=no | |
Font=Dejavu Sans Mono for Powerline | |
FontHeight=10 |
/* Hide horizontal tabs at the top of the window #1349 */ | |
#TabsToolbar { | |
visibility: collapse !important; | |
} | |
/* For only Tree Style Tab sidebar #1397 */ | |
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header { | |
display: none !important; | |
} |
This was forked from Brian Holt
A Pen by piggyslasher on CodePen.
:root { | |
--FONT-SIZE-MIN: 16; | |
--FONT-SIZE-MAX: 26; | |
/* The properties below are also constants, as they don't rely on any external variables and are not calculated */ | |
--FONT-SIZE-MIN-PX: var(--FONT-SIZE-MIN) * 1px; | |
--FONT-SIZE-MAX-PX: var(--FONT-SIZE-MAX) * 1px; | |
/* Direct value assignement */ | |
--COLOR-PRIMARY: palevioletred; |