Hi, today i’ll be talking about folding for vim. Folding is to fold codes from line to line to have a better view on codes. today i will be demonstrating marker fold method for vim. Firstly , you will need to set your foldmethod to marker code and the default for open and close marker […]
Color Schemes ( Vim )
$ #ls -l /usr/share/vim*/colors To set it permanently go to ~/.vimrc, set color default
Gnome Terminal – ssh execute with command
gnome-terminal –command ‘ssh -t -p22122 julius@jumper.aims.tameko.co “tmux a”‘
Shell Scripting Accepting Argv , getops , checking , echoing
#!/bin/bash #getopts checking for argv and define it into variables #options that needs to receive parameter have to enter : after the option EG: f:u:d: #In This Example h does not accept parameter. it execute the case only while getopts u:d:p:f:h option do case “${option}” in u) USER=${OPTARG};; d) DATE=${OPTARG};; p) PRODUCT=${OPTARG};; f) FORMAT=$OPTARG;; h) […]
MysqlDump without locking Tables
# dumping data without lock table mysqldump -u[USER] -p[PASS] –skip-lock-tables –single-transaction –flush-logs –hex-blob –master-data=2 –max_allowed_packet=1G globe_sdp > globe_sdp_v2.sql
Linux Looping Command Line
while (true); do date; ps -eaf | grep httpd | wc -l; sleep 1; echo -e “\e[3A\r”; done; So let me explain the code above So basically its looping a bunch of code , and this script is to grep total count of httpd worker and printing it over and over every second. So what […]
Git add recursively for specific extension only
find . -name ‘*.java’ -print0 | xargs -0 git add
How to Prevent Web Attack: Jorgee Vulnerability Scanner
Recently i’ve added a few method of blocking some ip and user agent for my server. For my server , i am using nginx as my web server. What is Jorgee Vulnerability Scanner?Here are some example of Jorgee Vulnerability Scanner. 46.142.55.116 – – [11/Sep/2017:22:02:10 +0000] “HEAD http://198.167.140.231:80/mysql/admin/ HTTP/1.1” 404 0 “-” “Mozilla/5.0 Jorgee” 46.142.55.116 – […]
Aws CLI credentials and configuration settings (Keys)
For AWS CLI credentials , there are different ways that aws cli will find for credentials. Based on this link, There are 6 ways in total for now, who knows future there will be more secured way to using CLI. For this example , i will talk about how to import keys but using the […]
AWS SDK (PHP)
Hi, Today i am gonna talk about how to use SDK provided by aws (PHP). For aws SDK, they support few kind of languages such as Php, Android, IOS , Java, Python. For all the available language for sdk , Click Here You will have to import aws sdk files there are three kind of […]