Skip to content

Instantly share code, notes, and snippets.

View RickyNotaro's full-sized avatar
🏠
Working from home

Ricky Notaro RickyNotaro

🏠
Working from home
View GitHub Profile
#!/bin/bash
INPUTCSVFILE=$1
while IFS=, read -r file text color
do
convert render/$file -fill $color -pointsize 17 -gravity SouthEast -annotate +0+0 "$text" annotated/$file
echo "Generating: $file| Text : $text| Color: $color"
done < $INPUTCSVFILE
### Keybase proof
I hereby claim:
* I am rickynotaro on github.
* I am rnotaro (https://keybase.io/rnotaro) on keybase.
* I have a public key ASCUMMlBESrJytpHq9VewPsyPEMpzfhbtKWlbwRxFAyZ8Qo
To claim this, I am signing this object:
var a = jQuery('[name="um-mailchimp[8adb6373b1]"]');
a.prop('checked', true);
var e = a.parents("label");
a.parents(".um-field-area");
e.addClass("active"),
e.find("i").removeClass().addClass("um-icon-android-checkbox-outline")
@RickyNotaro
RickyNotaro / index.html
Created November 15, 2016 19:29 — forked from anonymous/index.html
Capture FB Reactions count and show them on webpage
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My FB Reactions Page</title>
<style>
html {
box-sizing: border-box;
width: 100%;
@RickyNotaro
RickyNotaro / vigenere
Last active September 19, 2016 12:49
/*
*
* Vigenere.c for Cs50
* By Ricky Notaro
* ci = (pi + kj) % 26
*/
#include <stdio.h>
#include <stdlib.h>
#include <cs50.h>
@RickyNotaro
RickyNotaro / caesar.c
Last active September 19, 2016 12:49
(Cs50) Caesar
#include <stdio.h>
#include <stdlib.h>
#include <cs50.h>
#include <string.h>
#include <ctype.h>
int main(int input, string argv[])
{
if(input == 2)
{
int key = atoi(argv[1]);