Skip to content

Instantly share code, notes, and snippets.

View Frankity's full-sized avatar
The time is up

Douglas Brunal Frankity

The time is up
View GitHub Profile
@favna
favna / streamable.md
Last active May 16, 2022 20:41
Streamable CURL Upload

A simple Bash command for using in WSL / Ubuntu / Debian to upload to Streamable

note: Copy part only configured for WSL (Windows Subsystem Linux), if you want to use this on Ubuntu / Debian change the second line to use xclip instead

Function will always output to the STDOUT

Add to ~/.bashrc / ~/.zshrc

# Upload to Streamable.com from command line
# Usage: streamupload /path/to/videofile
@Frankity
Frankity / main.vala
Created October 7, 2016 01:37 — forked from rickybassom/main.vala
Simple Gtk.Application example in vala
using Gtk;
public class MyApplication : Gtk.Application {
public MyApplication () {
Object(application_id: "testing.my.application",
flags: ApplicationFlags.FLAGS_NONE);
}
protected override void activate () {