One liner + link to confluence page
Screenshot of UI - optional
Whether you're trying to give back to the open source community or collaborating on your own projects, knowing how to properly fork and generate pull requests is essential. Unfortunately, it's quite easy to make mistakes or not know what you should do when you're initially learning the process. I know that I certainly had considerable initial trouble with it, and I found a lot of the information on GitHub and around the internet to be rather piecemeal and incomplete - part of the process described here, another there, common hangups in a different place, and so on.
In an attempt to coallate this information for myself and others, this short tutorial is what I've found to be fairly standard procedure for creating a fork, doing your work, issuing a pull request, and merging that pull request back into the original project.
Just head over to the GitHub page and click the "Fork" button. It's just that simple. Once you've done that, you can use your favorite git client to clone your repo or j
## For educational purposes only! Not a substitute for individualized advice from a qualified legal practitioner. ## | |
SOFTWARE CONSULTING AGREEMENT | |
THIS AGREEMENT is entered into on <contract date> by and between Avie, LLC, (hereinafter "Developer") and <client company>, (hereinafter "Company"). | |
RECITALS | |
WHEREAS, Company wishes to retain Developer to develop certain <software type> software (hereinafter defined and referred to as “Software”); and |
/** | |
* Minimal SDK to interact with spoken data's spekaer diarization service. | |
* | |
* This SDK I/O. works in two pars. first you send the video/audio receive a `uid`. that you can use to check status of transcription and retrieve json. | |
* | |
* Input: the API takes in a video or audio file (2048MB per file limit, file extensions: wav, mp3, mp4, ac3, avi, mpg, wmv, flv, mkv) | |
* output: a uid | |
* | |
* input: uid | |
* output: status of transcription is the first param returned. if `done` returns transcript/speaker diarization as second param. |
To run
see quick start http://www-lium.univ-lemans.fr/diarization/doku.php/quick_start
/usr/bin/java -Xmx2024m -jar ./lium_spkdiarization-8.4.1.jar --fInputMask=./norman_door.mp4.temp.wav --sOutputMask=./showName.seg --doCEClustering showName
var request = require('request'); | |
var fs = require('fs'); | |
var sox = require('sox'); | |
var spawn = require('child_process').spawn; | |
var WATSON_USER = ''; | |
var WATSON_PASS = ''; | |
var url = 'https://stream.watsonplatform.net/speech-to-text/api/v1/recognize'; | |
/** | |
* A way to simplify/automate the process of making a sails api, using blueprints. | |
* it takes a list of models you'd like to generate APIs for, and adds them to the sails app, through a system call. | |
* TODO: if you could also specify associations between models, this would make it amazingly quick to prototype a backend API. | |
*/ | |
var spawn = require('child_process').spawn; | |
//A comma separate string list of models/resources you'd like to generate | |
var models = 'project, user, media, transcript, annotation, speaker, paperedit, papercut'; |
## a script to config ubuntu EC2 instance with quickQuote. http://times.github.io/quickQuote/ | |
## run the script form terminal in the ec2 instance using: | |
## ./config_ec2.sh | |
## you might need to adjust permissions to run it using: | |
## sudo chmod 600 ./config_ec2.sh | |
## http://dennissuratna.com/rails-deployment-aws1/ | |
## http://dennissuratna.com/rails-deployment-aws2/ | |
## http://dennissuratna.com/rails-deployment-aws3/ | |
## Installs on the EC2 instance: | |
## ruby-2.0.0-p353 |
=begin | |
Convert sbv to CSV and Plain Text | |
To convert sbv files generated using youtube captioning to CSV and plain text format. | |
run from terminal as $ ruby sbv_to_csv.rb Captions.sbv | |
converts sbv file from youtube into csv file, doing also timecode conversion using timecode gem. from ie 0:09:07.730 to 00:09:07:18 | |
=end | |
require 'csv' | |
require 'timecode' |
=begin | |
@date 23 July 2015 | |
@author: [email protected] | |
Given a CSV with two coulmns that have duplicate fields, | |
this script compares the two lists and returns a list of the duplicates, | |
and prints it out as text file. | |
run it as `ruby csv_2_list.rb name_of_the_csv_file_.csv` | |
=end |