For example
Your python in C:\python27
FROM ubuntu:14.04 | |
RUN apt-get update && \ | |
apt-get install -y \ | |
build-essential \ | |
cmake \ | |
git \ | |
wget \ | |
unzip \ | |
pkg-config \ |
// ==UserScript== | |
// @name EHShortcut | |
// @namespace FlandreDaisuki | |
// @include http://exhentai.org/* | |
// @include http://g.e-hentai.org/* | |
// @version 2016.03.02 | |
// @grant GM_addStyle | |
// ==/UserScript== | |
GM_addStyle(` |
For example
Your python in C:\python27
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("dcpc.nctu.edu.tw") { | |
html, body { | |
height: 100%; | |
width: 100%; | |
} | |
body { | |
background-image: url(http://i.imgur.com/JIokEO8.jpg) !important; |
import re | |
from os import listdir, mkdir | |
from os.path import isfile, isdir, splitext | |
from shutil import move as mv | |
def move(src, dst): | |
_ = mv(src, dst) | |
def parseBrackets(fname): | |
name, ext = splitext(fname) |
■PMX仕様 | |
PMDエディタ0.1.0.1以降及び PMXエディタ にて対応されている PMX形式(2.0以降)のデータフォーマット及び動作仕様です。 | |
■使用条件 | |
規約に関しては PMXエディタ等と共通となります。 | |
管理はこちらで一括して行います。勝手な改変についてはNG(こちらでは一切対応しません) |
// ==UserScript== | |
// @name CustomDYMY | |
// @description Custom your favorite teams for new anime | |
// @namespace FlandreDaisuki | |
// @include https://share.dmhy.org/* | |
// @author FlandreDaisuki | |
// @version 2016.07.16 | |
// @grant none | |
// ==/UserScript== | |
/* jshint esnext: true */ |
/* | |
* 存成 ~/桌面/hello.cpp | |
*/ | |
#include <GL/glut.h> | |
void display(void) | |
{ | |
glClear(GL_COLOR_BUFFER_BIT); | |
glutWireTeapot(0.5); |
// | |
// _oo0oo_ | |
// o8888888o | |
// 88" . "88 | |
// (| -_- |) | |
// 0\ = /0 | |
// ___/`---'\___ | |
// .' \\| |// '. | |
// / \\||| : |||// \ | |
// / _||||| -:- |||||- \ |
/* | |
* GM_download polyfill | |
* | |
* @description A polyfill to make your userscript supports GM_download | |
* @author ccloli | |
* @version 1.0 | |
*/ | |
// to use this polyfill, you must add "@grant GM_xmlhttpRequest" at userscript metadata block |