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
${c1} .:+o+/-. | |
`:oyys+:` | |
.+syyyo-` | |
.:///+oss+. .oyyyys: | |
-oyyyyyyyyyso` /yyyyyo. | |
-oyyyyyyyyys+- :yyyyys- | |
`-oyyyyyyyyyyo. /yyyyyy- | |
`-oyyyyyyyyyyyys/` `syyyyys` | |
`oyyyyyyyyyyyyyyyys/` /yyyyyy/ | |
`/syyyyys/oyyyyyyyys/` -yyyyyys |
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 | |
// >_ Gingdev | |
$data = json_decode(file_get_contents('http://localhost:4040/api/tunnels'), true); | |
$info = parse_url($data['tunnels'][0]['public_url']); | |
echo "Successful VPS initialization\n"; | |
echo "Address: {$info['host']}:{$info['port']}\n"; | |
echo "Username: runner\n"; | |
echo "Password: ".getenv('PASSWORD'); |
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 | |
// >_ Gingdev | |
$data = json_decode(file_get_contents('http://localhost:4040/api/tunnels'), true); | |
$info = parse_url($data['tunnels'][0]['public_url']); | |
echo "Successful SSH initialization\n"; | |
echo "Usage: ssh runner@{$info['host']} -p{$info['port']}\n"; | |
echo "Password: ".getenv('PASSWORD'); |
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
# Install metacity | |
sudo apt-get install metacity -y | |
# Move the window button layout to the left | |
gsettings set org.gnome.desktop.wm.preferences button-layout 'close,minimize,maximize:menu' | |
gsettings set org.gnome.desktop.interface enable-animations false | |
xfconf-query -c xfwm4 -p /general/button_layout -s 'CHM|' | |
# Use metacity | |
xfconf-query -c xfce4-session -p /sessions/Failsafe/Client0_Command -n -a -t string -s 'metacity' |
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 <algorithm> | |
using namespace std; | |
int main() { | |
// init | |
int n, m, k, x, i = 0; | |
cin >> n; |
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 <cmath> | |
class Car { | |
private: | |
int speed; | |
string color; | |
float price; | |
int x; | |
int y; |
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 <stdio.h> | |
#include <math.h> | |
int main() { | |
float a[100]; | |
int n, i; | |
//nhap so he so |
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<cstring> | |
#include<iomanip> | |
#include<cmath> | |
using namespace std; | |
class Nguoi | |
{ | |
private: | |
string hoTen, diaChi, gioiTinh; | |
int namSinh; |
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 <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; |
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 <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; | |
} |