Skip to content

Instantly share code, notes, and snippets.

View deadprogram's full-sized avatar
💭
Upcoming availability for work.

Ron Evans deadprogram

💭
Upcoming availability for work.
View GitHub Profile
@strezh
strezh / GStreamer-1.0 some strings.sh
Last active October 2, 2023 09:00
GStreamer-1.0 personal cheat sheet
#!/bin/bash
# play YUV444 FULL HD file
gst-launch-1.0 -v filesrc location=size_1920x1080.yuv ! \
videoparse width=1920 height=1080 framerate=25/1 format=GST_VIDEO_FORMAT_Y444 ! \
videoconvert ! \
autovideosink
# play YUV422 FULL HD file
gst-launch-1.0 -v filesrc location=size_1920x1080.yuv ! \
@kiafaldorius
kiafaldorius / project_create.php
Created August 1, 2012 11:09
Kanbanpad PHP Example
<?php
# Example create project on kanbanpad api using json
# Runs on PHP 5.3 with curl and json extension
# Note the https, the s is required.
$curl = curl_init("https://www.kanbanpad.com/api/v1/projects.json");
curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($curl, CURLOPT_USERPWD, 'kiafaldorius+open@gmail.com:e754f5335230f9bad9b5dc90ceb5ab0c76a06604');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POST, 1);

KanbanPad Notes

Index Page

  • Lots of red on the index with two login/register buttons and the task box highlight. I'd drop it from the task box, after the first task is added they know it's important.
  • I didn't immediately figure out that I put things "In Progress" by dragging them below the marker. Maybe more of a "line" across the column and going through the words "In Progress"
  • I thought the arrow ("play button") was going to expand the box to show more details, whups
  • Created a task, got "21" in the corner. My thought process: "Eh, what's 21?", double click, "the task number? Who cares about task numbers?"
  • Help for task bar should have complete examples. Maybe a light box with a 15 second video, "Just enter XYZ in the task bar and it gets put into X project and assigned to Z"
  • What about some way to indicate the ones I've most recently looked at? Most recently added? Thinking about a UI kinda like when you go to System Prefs on Mac OS then enter a term in the search box.
@technoweenie
technoweenie / gist:1072829
Created July 8, 2011 21:12
.netrc file so you can push/pull to https git repos without entering your creds all the time
machine github.com
login technoweenie
password SECRET
machine api.github.com
login technoweenie
password SECRET
@daksis
daksis / Raw Links
Created June 17, 2011 15:04
Bayesian Network Resources
P1 -> propeller(:motor)
P2 -> led
P3, P4 <-> xbee(:serial)
P6 <- button(:button)
P7 <- thermometer(:analog)
every 100ms do
if button.pushed
led.off
end