Skip to content

Instantly share code, notes, and snippets.

View mashirozx's full-sized avatar
🐕
Just for fun

Mashiro mashirozx

🐕
Just for fun
View GitHub Profile
@mashirozx
mashirozx / index.html
Created February 3, 2018 13:50
live2d
<style>
body {
background: #FFAFBD;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ffc3a0, #FFAFBD);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ffc3a0, #FFAFBD);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
server {
listen 443 ssl;
listen [::]:443;
server_name cdn.xxx.xxx;
ssl on;
root /var/www/html;
index index.php index.html index.htm index.nginx-debian.html;
@mashirozx
mashirozx / upload.py
Created December 3, 2017 16:32 — forked from FormatFish/upload.py
针对sm.ms的图床
#coding=utf-8
import requests
import json
import mimetypes
from PIL import ImageGrab
import datetime
def upload(files):
APIKey = "YOUR API KEY"
format = "json"
@mashirozx
mashirozx / ajax.php
Created October 21, 2017 03:51
comment
<!--蜜汁Ajax-->
<div class="commentshow" id="commentshow">
<div id="loading-comments"><span>Loading...</span></div>
<ol class="comments-list">
<?php wp_list_comments('type=comment&callback=weisay_comment&reverse_top_level=1'); ?>
</ol>
<div class="commentnav">
<?php paginate_comments_links(); ?>
<script>
//Ajax评论,待优化。。
@mashirozx
mashirozx / calculator.js
Last active October 20, 2017 04:15
一个计算器
// 定义数字0:
var zero = function (f) {
return function (x) {
return x;
}
};
// 定义数字1:
var one = function (f) {
return function (x) {
<script src="https://storage.mashiro.space/assets/js/hitokoto.min.js"></script>
<div>
<p class="hitokoto"></p>
<p class="from"></p>
</div>