This is inspired by A half-hour to learn Rust and Zig in 30 minutes.
Your first Go program as a classical "Hello World" is pretty simple:
First we create a workspace for our project:
This is inspired by A half-hour to learn Rust and Zig in 30 minutes.
Your first Go program as a classical "Hello World" is pretty simple:
First we create a workspace for our project:
2011 - Blue Corona - Analytics Intern - $10/hr | |
2012 - UMD - Marketing Intern - $10/hr | |
2012 - BSD - Analytics Architect - $37,000 | |
2013 - BSD - Analytics Architect - $45,000 | |
2014 - BSD - Analytics Architect - $50,000 | |
2015 - Viget - Digital Analyst - $65,000 | |
2016 - Viget - Digital Analyst - $70,000 | |
2017 - Viget - Digital Analyst - $74,000 | |
2018 - Viget - Digital Analyst - $80,000 | |
2019 - Viget - Digital Analyst - $82,000 |
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" |
A quick guide on how to read/write/modify ID3 metadata tags for audio / media files using ffmpeg
.
FFmpeg has a free-form command line option that allows the user to specify key-value-pairs for encoding metadata. Let's take a look.
To list all global metadata tags for a media file, just set an input but no output file.
#!/bin/bash | |
set -e # fail on nonzero status | |
cd $1 | |
files=`find . \ | |
-not \( -path ./vendor -prune \) \ | |
-not \( -path ./tmp -prune \) \ | |
-name '*.html' -o -name '*.js' -o -name '*.coffee' -o \ |
set daemon 120 | |
set logfile /var/log/monit.log | |
set idfile /var/lib/monit/id | |
set statefile /var/lib/monit/state | |
set mailserver localhost | |
set mail-format { from: [email protected] } |
rvm install 1.9.3-p194 --with-gcc=clang | |
Fixes this error In Mac: | |
``` | |
In file included from ./include/ruby/ruby.h:64, | |
from ./include/ruby.h:32, | |
from main.c:13: | |
/usr/include/stdarg.h:4:25: error: stdarg.h: No such file or directory |
This playbook has been removed as it is now very outdated. |
require 'thor' | |
require "sub" | |
class MyApp < Thor | |
desc "parentcommand SUBCOMMAND", "Some Parent Command" | |
subcommand "sub", Sub | |
end | |
MyApp.start |