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 | |
######################################################################### | |
# File Name: fix-conoha-v6-route.sh | |
# Author: LI JIAHAO | |
# ############### | |
# Mail: [email protected] | |
# Created Time: Mon 12 Feb 2018 04:59:12 PM CST | |
######################################################################### | |
#route_cmd='cat ip6route' |
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
// How to download telegram sticker images | |
/* | |
1. Go to Telegram Web; | |
2. Open console (F12); | |
3. Paste the code below in the console and press Enter; | |
4. Open your stickers menu and make sure you see the sticker pack you want to download (so Telegram will load it). | |
5. At the console paste and run "downloadStickers()" any time you want to download a pack. | |
6. [Convert .webm to another format](http://www.freewaregenius.com/convert-webp-image-format-jpg-png-format/); | |
7. Happy hacking. |
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 | |
$error = "Error!!!"; | |
include("template.php"); |
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 | |
session_start(); | |
$_SESSION['error'] = "Error!!!"; | |
header("Location: index.php"); |
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
G15H1 | |
G90G17 | |
M03S1000F200 | |
G00Z50 | |
G00X7Y50.5 | |
G01Z-0.2 | |
G02X6.6Y50.8R0.5 | |
G02X6.6Y51.4R0.8 | |
G02X6.9Y52R2.5 |
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
APP_ENV=testing | |
APP_KEY=SomeRandomString | |
DB_CONNECTION=testing | |
DB_TEST_USERNAME=root | |
DB_TEST_PASSWORD= | |
CACHE_DRIVER=array | |
SESSION_DRIVER=array | |
QUEUE_DRIVER=sync |
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
851 180 3924 55 1971 | |
976 221 3745 49 1996 | |
992 231 4003 56 2038 | |
760 196 3676 44 2067 | |
742 177 3612 47 2067 | |
983 224 3801 54 2083 | |
733 183 3766 52 2098 | |
1023 244 3928 55 2119 | |
722 191 3426 49 2124 | |
915 245 4199 86 2135 |
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
2049 6282 960.4575159 1 3872 | |
2161 6427 1063.448832 1 3370 | |
2259 6398 1263.786503 1 4552 | |
2326 6972 980.8532867 1 4125 | |
2383 6859 1165.352269 1 3563 | |
2432 7182 1026.872565 1 3506 | |
2473 7204 1086.551875 1 5619 | |
2566 7278 1204.882467 1 5523 | |
2612 7604 1058.776395 1 5006 | |
2880 8133 1176.501213 1 4438 |
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
""" | |
categories: pro, premier, open. | |
cly --> strong men | |
ath --> strong women | |
swim, t1, bike, t2, run, total | |
where t1 and t2 refer to the times needed for the transition between the modes of exercise. | |
""" | |
import matplotlib.pyplot as plt |
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
#!/usr/bin/python | |
# -*- coding: UTF-8 -*- | |
import tkinter | |
class Tkwin: | |
def __init__(self, root): | |
self.root = root | |
self.frame = tkinter.Frame(root, bd = 2) | |
self.edit = tkinter.Text(self.frame, width = 96, height = 32) |