sudo apt-get install -y unixodbc unixodbc-dev unixodbc-bin libodbc1 odbcinst1debian2 tdsodbc php5-odbc
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 | |
function fib($n) | |
{ | |
if ($n < 2) | |
return $n; | |
else | |
return fib($n - 1) + fib($n - 2); | |
} | |
?> |
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
@echo off | |
title Wifi Hotspot | |
echo What You What To Do ? | |
echo 1 to create wifi | |
echo 2 to stop wifi | |
echo 3 show details | |
set /p input= | |
if %input%==1 goto 1 | |
if %input%==2 goto 2 |
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
## MPV Keyboard Shortcut to match VLC | |
## Path: /etc/mpv | |
## ================== | |
UP ignore # ignore keybinds for | |
DOWN ignore # directional keys | |
LEFT seek -10 | |
RIGHT seek 10 | |
SPACE cycle pause # toggle pause |