The setup installs the following software:
The setup installs the following software:
- Apache
- MySQL
- PHP
- Node
/** theme "easy on the eyes" for Adminer by [email protected] */ | |
/** customized by RobertoPC in https://gist.github.com/robertopc/bf2edac131bbaf789343fa9ce3ceb2e4 **/ | |
@import url(//fonts.googleapis.com/css?family=Roboto+Mono:400,900); | |
/* for font awesome */ | |
*:not(.fa) { | |
font-family: 'Roboto Mono', sans-serif; | |
} |
/** | |
* @package Adminer.css - Theme CSS for Adminer - blue | |
* @version 2.1.4 | |
* @date Sat, 24 Oct 2015 21:16:48 +0100, Slovakia | |
* @author Robert Mesaros | |
* @copyright Copyright รยฉ 2015 Robert Mesaros, rmSOFT | |
* @web http://www.rmsoft.sk | |
* @link http://www.rmsoft.sk/index.php/en/portfolio/programming-work/web-services/theme-for-adminer | |
* | |
* @donate https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BB4D8Y28YZDH6 |
/** | |
* UTF8 TRANSLITERATION | |
* | |
* @derivate https://gist.github.com/funkjedi/4138022 | |
*/ | |
function utf8_transliteration($string) { | |
$find = {" ","ยก","ยข","ยฃ","ยค","ยฅ","ยฆ","ยง","ยจ","ยฉ","ยช","ยซ","ยฌ","ยญ","ยฎ","ยฏ","ยฐ","ยฑ","ยฒ","ยณ","ยด","ยต","ยถ","ยท","ยธ","ยน","ยบ","ยป","ยผ","ยฝ","ยพ","ยฟ","ร","ร","ร","ร","ร","ร ","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร","ร ","รก","รข","รฃ","รค","รฅ","รฆ","รง","รจ","รฉ","รช","รซ","รฌ","รญ","รฎ","รฏ","รฐ","รฑ","รฒ","รณ","รด","รต","รถ","รท","รธ","รน","รบ","รป","รผ","รฝ","รพ","รฟ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ","ฤ ","ฤก","ฤข","ฤฃ","ฤค","ฤฅ","ฤฆ","ฤง","ฤจ","ฤฉ","ฤช","ฤซ","ฤฌ","ฤญ","ฤฎ","ฤฏ","ฤฐ","ฤฑ","ฤฒ","ฤณ","ฤด","ฤต","ฤถ","ฤท","ฤธ","ฤน","ฤบ","ฤป","ฤผ","ฤฝ","ฤพ","ฤฟ","ล","ล","ล","ล","ล","ล ","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล","ล ","ลก","ลข","ลฃ","ลค","ลฅ","ลฆ","ลง","ลจ","ลฉ","ลช","ลซ","ลฌ","ลญ","ลฎ","ลฏ","ลฐ","ลฑ","ลฒ","ลณ","ลด","ลต","ลถ","ลท","ลธ","ลน","ลบ","ลป","ลผ |
#!/bin/bash | |
# log into your server | |
ssh root@[server ipaddress] | |
# change root password | |
passwd | |
# update all packages and operating system | |
apt-get update && apt-get --yes upgrade |
[user] | |
name = Pavan Kumar Sunkara | |
email = [email protected] | |
[core] | |
editor = vim | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
excludesfile = ~/.gitignore | |
[sendemail] | |
smtpencryption = tls | |
smtpserver = smtp.gmail.com |
#!/bin/bash | |
# About: Bash script to create new Jekyll posts | |
# Author: @AamnahAkram | |
# URL: https://gist.github.com/aamnah/f89fca7906f66f6f6a12 | |
# Description: This is a more advanced version of the script which can | |
# - take options | |
# - has color coded status messages | |
# - improved code | |
# - lowercase permalinks | |
# - usage message |
People
![]() :bowtie: |
๐ :smile: |
๐ :laughing: |
---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
echo -e " \033[0;30m Preto \033[0m --> 0;30 " | |
echo -e " \033[0;31m Vermelho \033[0m --> 0;31 " | |
echo -e " \033[0;32m Verde \033[0m --> 0;32 " | |
echo -e " \033[0;33m Marrom \033[0m --> 0;33 " | |
echo -e " \033[0;34m Azul \033[0m --> 0;34 " | |
echo -e " \033[0;35m Purple \033[0m --> 0;35 " | |
echo -e " \033[0;36m Cyan \033[0m --> 0;36 " | |
echo -e " \033[0;37m Cinza Claro \033[0m --> 0;37 " | |
echo -e " \033[1;30m Preto Acinzentado \033[0m --> 1;30 " | |
echo -e " \033[1;31m Vermelho Claro \033[0m --> 1;31 " |
#!/bin/sh | |
sudo su | |
dd if=/dev/zero of=/swapfile bs=1024 count=1024k | |
chmod 600 /swapfile | |
mkswap /swapfile | |
swapon /swapfile | |
# add line in fstab to auto mount swap in startup | |
echo "/swapfile none swap sw 0 0" >> /etc/fstab |