https://chiasenhac.vn/api/search?q={{tenbaihat}}&row={{soluong}}
http://old.chiasenhac.vn/api/listen.php?code=csn22052018&return=json&m={{idbaihat}}
<?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 |
#!/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 |
#!/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" |
#include <iostream> | |
#include <vector> | |
#include <iomanip> | |
/** | |
* @Author: Tran Xuan Thanh | |
*/ | |
using namespace std; |
#include <iostream> | |
#include <iomanip> | |
using namespace std; | |
int main() { | |
for (int i = 0; i < 5; i++) { | |
for (int j = 0; j < i+1; j++) { | |
cout << setw(2) << j+1; | |
} |
#include <iostream> | |
#include <iomanip> | |
using namespace std; | |
int main() { | |
for (int i = 0; i < 6; i++) { | |
cout << setw(13-(i+1)*2) << 1; | |
for (int j = 0; j < i*2; j++) { | |
cout << setw(2) << 1; |
#include<iostream> | |
#include<cstring> | |
#include<iomanip> | |
#include<cmath> | |
using namespace std; | |
class Nguoi | |
{ | |
private: | |
string hoTen, diaChi, gioiTinh; | |
int namSinh; |
#include <stdio.h> | |
#include <math.h> | |
int main() { | |
float a[100]; | |
int n, i; | |
//nhap so he so |