This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>My FB Reactions Page</title> | |
<style> | |
html { | |
box-sizing: border-box; | |
width: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* | |
* Vigenere.c for Cs50 | |
* By Ricky Notaro | |
* ci = (pi + kj) % 26 | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <cs50.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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]); |