MD5: 59bab8f71f8c096cd3f72cd73851515d
Rename it to: Sublime Text
Make it executable with: chmod u+x Sublime\ Text
// Implements multipart/form-data POST in C# http://www.ietf.org/rfc/rfc2388.txt | |
// http://www.briangrinstead.com/blog/multipart-form-post-in-c | |
public static class FormUpload | |
{ | |
private static readonly Encoding encoding = Encoding.UTF8; | |
public static HttpWebResponse MultipartFormDataPost(string postUrl, string userAgent, Dictionary<string, object> postParameters) | |
{ | |
string formDataBoundary = String.Format("----------{0:N}", Guid.NewGuid()); | |
string contentType = "multipart/form-data; boundary=" + formDataBoundary; |
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="de.mobilej.overlay" | |
android:versionCode="1" | |
android:versionName="1.0" > | |
<uses-sdk android:minSdkVersion="14" /> | |
<application android:label="SystemOverlay" > | |
<activity |
using System; | |
using System.Drawing; | |
using System.Drawing.Imaging; | |
using System.Runtime.InteropServices; | |
using System.Windows.Forms; | |
public class ControlSnapshot | |
{ | |
public static Bitmap Snapshot(Control c) | |
{ |
/* | |
Gunar C. Gessner | |
@gunar 2016 | |
INSTALL: https://script.google.com/macros/s/AKfycbym7IaTORzJ7LQPcxMx1LV1SQEC6RVGv5tzLOgYS8iQe8XAJxM/exec | |
After installation, the script will, every 10 minutes, search for all files that have duplicates (shift+z) and remove them from the root directory ("My Drive"). | |
This Google Apps Script webapp aims to solve the problem that when transferring ownership of folders & | |
files to another account, duplicate files shown in "My Drive". |
from moviepy.editor import * | |
from multiprocessing import Process, Semaphore | |
import sys | |
segment_length = float(sys.argv[1]) | |
frames = float(sys.argv[2]) | |
original_video = VideoFileClip("original.mp4") | |
duration = original_video.duration | |
clip_start = 0 |
package main | |
import ( | |
"fmt" | |
"github.com/lxn/walk" | |
. "github.com/lxn/walk/declarative" | |
"time" | |
) | |
var mainWindow *walk.MainWindow |
import gym | |
import keras | |
import numpy as np | |
import random | |
from gym import wrappers | |
from keras.models import Sequential | |
from keras.layers import Dense | |
from keras.optimizers import Adam |
# Ian Annase | |
# 4/16/18 | |
import os | |
import sys | |
import json | |
import spotipy | |
import webbrowser | |
import spotipy.util as util | |
from json.decoder import JSONDecodeError |