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
https://dl.google.com/android/repository/platform-tools-latest-windows.zip | |
adb shell | |
su | |
setprop sys.usb.config diag,adb | |
cd /dev/block/platform/soc/7824900.sdhci/by-name | |
ls -lap | |
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
SET NEWLINE=^& echo. | |
FIND /C /I "176.31.241.10" %WINDIR%\system32\drivers\etc\hosts | |
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^ 127.0.0.1 176.31.241.10>>%WINDIR%\system32\drivers\etc\hosts | |
FIND /C /I "54.148.249.18" %WINDIR%\system32\drivers\etc\hosts | |
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^ 127.0.0.1 54.148.249.18>>%WINDIR%\system32\drivers\etc\hosts | |
FIND /C /I "54.68.188.84" %WINDIR%\system32\drivers\etc\hosts | |
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^ 127.0.0.1 54.68.188.84>>%WINDIR%\system32\drivers\etc\hosts |
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
ipconfig /all | |
ping -t 192.168.1.1 | |
ipconfig/renew | |
ipconfig/flushdns | |
netsh interface tcp set global autotuning=disable | |
netsh interface tcp set heuristics disabled |
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
Product | |
GVLK | |
Office 2013 Professional Plus | |
YC7DK-G2NP3-2QQC3-J6H88-GVGXT | |
Office 2013 Standard |
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 | |
$servername = "localhost"; | |
$username = "cp29857_test"; | |
$password = "g0nd4l0f123"; | |
$myDB = "cp29857_test"; | |
try { | |
$conn = new PDO("mysql:host=$servername;dbname=$myDB", $username, $password); | |
// set the PDO error mode to exception | |
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); | |
//echo "Connected successfully"; |
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
# Set Qt Install dir | |
Set-Variable -Name "qt_dir" -Value "C:\Qt\Qt5.10.1" | |
$env:Path = "${qt_dir}\5.10.1\mingw53_32\bin;${qt_dir}\Tools\mingw53_32\bin;C:\Program Files\WinRAR;$env:Path" | |
# Put libarchive to mingw path | |
unrar libarchive-3.2.1-win32-mingw53.7z -o ${qt_dir}\Tools\mingw53_32\i686-w64-mingw32 | |
# Building sqlite and Put it to mingw path | |
unrar sqlite-amalgamation-3220000.zip |
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
Remove all PHP Code within the HTML page | |
<\?php(.+?)\?> ==> <!--/1--> | |
Change b to strong | |
<b[^>]*>([^<]*?)</b> ==> <strong>\1</strong> | |
Change i to em | |
<i[^>]*>([^<]*?)</i> | |
<em>\1</em> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>PHPTunnel Server Administration</title> | |
<link rel="shortcut icon" href="common/server.ico" type="image/x-icon" /> | |
<script defer src="https://use.fontawesome.com/releases/v5.0.8/js/solid.js" integrity="sha384-+Ga2s7YBbhOD6nie0DzrZpJes+b2K1xkpKxTFFcx59QmVPaSA8c7pycsNaFwUK6l" crossorigin="anonymous"></script> | |
<script defer src="https://use.fontawesome.com/releases/v5.0.8/js/fontawesome.js" integrity="sha384-7ox8Q2yzO/uWircfojVuCQOZl+ZZBg2D2J5nkpLqzH1HY0C1dHlTKIbpRz/LG23c" crossorigin="anonymous"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | |
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css"> |
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
<html> | |
<head> | |
<title>PHPTunnel Server Administration</title> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
"C:\Program Files\ImageMagick-7.0.7-Q16\convert.exe" favicon.png -bordercolor white -border 0 -clone 0 -resize 16x16 -clone 0 -resize 32x32 -clone 0 -resize 48x48 -clone 0 -resize 64x64 -delete 0 -alpha off -colors 256 favicon.ico | |
<link rel="shortcut icon" href="favicon.ico"> | |
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
git reset --hard | |
git clean -x -d -f | |
git reset --hard @{u} |