Skip to content

Instantly share code, notes, and snippets.

View satouriko's full-sized avatar
🍫
Happy Sugar Life

砂糖梨子 satouriko

🍫
Happy Sugar Life
View GitHub Profile
@satouriko
satouriko / bland
Created December 19, 2016 05:55
simplex
Input m, n: m refers count of x+1(for b), n refers count of equations
8 3
Input c
0 0 0 0.75 -20 0.5 -6
Input matrix
1 0 0 0.25 -8 -1 9 0
0 1 0 0.5 -12 -0.5 3 0
0 0 1 0 0 1 0 1
Input xb
0 1 2
@satouriko
satouriko / get_click_co-ordinates.py
Created December 24, 2016 09:31
click_to_co-ordinates
#!/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)
@satouriko
satouriko / runjumpfly.py
Created January 16, 2017 08:03 — forked from zhengyangchoong/runjumpfly.py
himcm question A plot generator
"""
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
@satouriko
satouriko / final.txt
Last active January 16, 2017 13:04
建模大大的成功案例
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
@satouriko
satouriko / gj.txt
Created January 17, 2017 05:41
建模但是队友跑了的案例
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
@satouriko
satouriko / .env.travis
Created February 12, 2017 09:29 — forked from gilbitron/.env.travis
Laravel 5 Travis CI config
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
G15H1
G90G17
M03S1000F200
G00Z50
G00X7Y50.5
G01Z-0.2
G02X6.6Y50.8R0.5
G02X6.6Y51.4R0.8
G02X6.9Y52R2.5
@satouriko
satouriko / handle.php
Created August 19, 2017 15:38
php_with_session
<?php
session_start();
$_SESSION['error'] = "Error!!!";
header("Location: index.php");
@satouriko
satouriko / handle.php
Created August 19, 2017 15:43
php_with_template
<?php
$error = "Error!!!";
include("template.php");
@satouriko
satouriko / stickers-downloader.js
Created November 20, 2017 10:58 — forked from lubien/stickers-downloader.js
Download all visible telegram stickers images
// 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.