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
#include <iostream> | |
#include <vector> | |
#include <iomanip> | |
/** | |
* @Author: Tran Xuan Thanh | |
*/ | |
using namespace std; |
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
#!/data/data/com.termux/files/usr/bin/bash | |
folder=ubuntu | |
if [ -d "$folder" ]; then | |
first=1 | |
echo "skipping downloading" | |
fi | |
tarball="ubuntu.tar.gz" | |
if [ "$first" != 1 ];then | |
if [ ! -f $tarball ]; then | |
echo "downloading ubuntu-image" |
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
#!/bin/bash | |
# >_ Code by Gingdev - 2020 | |
# Check clang package | |
check() | |
{ | |
if ! which clang > /dev/null; then | |
echo -n "Clang package is not installed, do you want to install it? (y/n) " | |
read |
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 | |
$repo = 'http://github.com/ging-dev/manager/archive/master.zip'; | |
$file = file_get_contents($repo); | |
file_put_contents('manager.zip', $file); | |
unset($file); // clean cache |
NewerOlder