- Create a folder at the root of your user home folder
(Example:
C:/Users/uname/
) called.ssh
. - Create the following files if they do not already exist (paths begin from the root of your user home folder):
.ssh/config
-- Todo : breakpoint continue and | |
-- : go to specific point | |
-- : stop and spray first then go circle | |
-- : edit guided mode to change alt base on point throttle | |
-- : guided mode takeout surface track and use radar alt direct | |
-- : radar alt measured from the top of the tree | |
-- Edit these variables |
{ | |
"files.exclude": { | |
"**/.git": true, | |
"**/.DS_Store": true, | |
"**/*.metatdata.json": true, | |
"**/*.js.map": { "when": "$(basename)"}, | |
"**/*.js": { "when": "$(basename).ts"} | |
//"**/*.html": { "when": "$(basename).pug"} | |
}, | |
"window.zoomLevel": -0.8, |
# This is the main Apache server configuration file. It contains the | |
# configuration directives that give the server its instructions. | |
# See http://httpd.apache.org/docs/2.4/ for detailed information about | |
# the directives and /usr/share/doc/apache2/README.Debian about Debian specific | |
# hints. | |
# | |
# | |
# Summary of how the Apache 2 configuration works in Debian: | |
# The Apache 2 web server configuration in Debian is quite different to | |
# upstream's suggested way to configure the web server. This is because Debian's |
#!/bin/bash | |
aptitude -y install expect | |
// Not required in actual script | |
MYSQL_ROOT_PASSWORD=abcd1234 | |
SECURE_MYSQL=$(expect -c " | |
set timeout 10 |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>App Redirection</title> | |
</head> | |
<body> | |
<!-- iframe used for attempting to load a custom protocol --> | |
<iframe style="display:none" height="0" width="0" id="loader"></iframe> |
addDetail: (values, _, props) => { | |
//this syntax need to comply with redux form submit | |
console.log({ values }); | |
const { saleType, saleDetail, products } = props; | |
if (!values.barcode) { | |
window.aLert("no barcode"); | |
return { type: null }; | |
} | |
// if you put only 3 digits nothing will match | |
// group capture with use question mark at the end capture to make it optional otherwise |
// '@media only screen and (min-width: 600px)': { // apply only width bigger than 600 | |
// span: { | |
// display: 'none', | |
// }, | |
// card: { | |
// maxWidth: "48%", | |
// marginRight:10, | |
// marginTop:15, | |
// }, | |
// }, |
# to add link | |
http://click.spmlife.com/index.php?type=add&link=https://github.com/seksitha?tab=repositories&redirect-name=my-github-account | |
# to read results | |
http://click.spmlife.com/index.php?type=read | |
# to redirect link | |
http://click.spmlife.com/index.php?type=redirect&redirect-name=my-github |
#Crontab -e | |
57 07 * * 1-5 python /home/pi/Documents/py_ball.py | |
55 08 * * 1-5 python /home/pi/Documents/py_ball.py | |
02 09 * * 1-5 python /home/pi/Documents/py_ball.py | |
00 10 * * 1-5 python /home/pi/Documents/py_ball.py | |
02 10 * * 1-5 python /home/pi/Documents/py_ball.py | |
00 11 * * 1-5 python /home/pi/Documents/py_ball.py | |
45 11 * * 1-5 python /home/pi/Documents/py_ball.py | |
35 12 * * 1-5 python /home/pi/Documents/py_ball.py |