Skip to content

Instantly share code, notes, and snippets.

View RaunakDune's full-sized avatar

RonS RaunakDune

  • Data Analysis and Intelligent Systems Lab, University of Houston
  • Houston, TX
View GitHub Profile
@RaunakDune
RaunakDune / Videogame_Sales_2016_Processed.csv
Created September 5, 2023 19:47
Video Game Sales 2016 Processed Dataset
We can't make this file beautiful and searchable because it's too large.
Name,Platform,Year_of_Release,Genre,Genre_factor,Publisher,NA_Sales,EU_Sales,JP_Sales,Global_Sales,Critic_Score,Critic_Count,User_Score,User_Count,Developer,Rating,GS_Category
Wii Sports,Wii,2006,Sports,0,Nintendo,41.36,28.96,3.77,82.53,76,51,80,322,Nintendo,E,high
Mario Kart Wii,Wii,2008,Racing,1,Nintendo,15.68,12.76,3.79,35.52,82,73,83,709,Nintendo,E,high
Wii Sports Resort,Wii,2009,Sports,0,Nintendo,15.61,10.93,3.28,32.77,80,73,80,192,Nintendo,E,high
New Super Mario Bros.,DS,2006,Platform,2,Nintendo,11.28,9.14,6.5,29.8,89,65,85,431,Nintendo,E,high
Wii Play,Wii,2006,Misc,3,Nintendo,13.96,9.18,2.93,28.92,58,41,66,129,Nintendo,E,high
New Super Mario Bros. Wii,Wii,2009,Platform,2,Nintendo,14.44,6.94,4.7,28.32,87,80,84,594,Nintendo,E,high
Mario Kart DS,DS,2005,Racing,1,Nintendo,9.71,7.47,4.13,23.21,91,64,86,464,Nintendo,E,high
Wii Fit,Wii,2007,Sports,0,Nintendo,8.92,8.03,3.6,22.7,80,63,77,146,Nintendo,E,high
Kinect Adventures!,X360,2010,Misc,3,Microsoft Game Studios,15,4.89,0.24,21.81,61,45,63,106,Good Science S
$ curl -s "https://crawler.ninja/files/security-txt-values.txt" | grep -i "hiring: http" | sed 's/^#//g' | awk '{print $2}'
https://www.tumblr.com/jobs
https://kariera.shoptet.cz/
https://g.co/SecurityPrivacyEngJobs
https://www.shopify.com/careers
https://solarwinds.jobs
https://www.chcidozootu.cz/it-devel/
https://careerssearch.bbc.co.uk/jobs/search
https://www.npmjs.com/jobs
https://grab.careers/
@RaunakDune
RaunakDune / README.md
Created January 1, 2019 05:31 — forked from roachhd/README.md
Basics of BrainFuck

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

BrainFuck Programming Tutorial by: Katie

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

INTRODUCTION

@RaunakDune
RaunakDune / monitor.c
Created April 11, 2018 18:53 — forked from banderson623/monitor.c
Here is my final (?) monitor implementation in C.
/**
* Brian Anderson, Spring 2013
* Com S 352, Assignment 7
*
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* INTRODUCTION & PURPOSE
* -------------------------------------------------------------------
* Create a monitor library fashioned after the slides shown in class.
* It solves the producer/consumer problem by making sure their
* execution happens in a safe manner, even across multiple threads
@RaunakDune
RaunakDune / subreddit-face-average.js
Created March 14, 2018 04:43 — forked from vincentriemer/subreddit-face-average.js
Subreddit Face Averaging Script
import * as fs from "fs";
import * as path from "path";
import * as url from "url";
import { exec } from "child_process";
import cuid from "cuid";
import snoowrap from "snoowrap";
import throat from "throat";
import mmm from "mmmagic";
import axios from "axios";
@RaunakDune
RaunakDune / Useful FFMPEG Shortcuts
Last active March 16, 2023 13:28
Some useful FFMPEG commandlets
// For converting any video to twitter compatible formats
ffmpeg -i input.webm -vcodec libx264 -pix_fmt yuv420p -strict -2 -acodec aac output.mp4
ffmpeg -i input.mp4 -vf "scale=720:1280" -c:v libx264 -c:a aac -crf 17 output.mp4
//Convert streaming .ts files to mp4
ffmpeg -i input.ts -acodec copy -vcodec copy out.mp4
//See: https://stackoverflow.com/questions/17907762/how-to-convert-re-wrap-transport-stream-to-mpeg-4-container-in-ios-app
//Video to MP3
ffmpeg -i source_video.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 sound.mp3
@RaunakDune
RaunakDune / vMetaDate.sh
Created July 22, 2017 15:52 — forked from cryptolok/vMetaDate.sh
small tool to retreive vk.com (vkontakte) users hidden metadata (state, access, dates, counts, etc) anonymously (without login)
#!/bin/bash
# small tool to retreive vk.com (vkontakte) users hidden metadata (state, access, dates, counts, etc) anonymously (without login)
# sudo apt install curl
parse(){
local IFS=\>
read -d \< CELL VALUE
}

Keybase proof

I hereby claim:

  • I am RaunakDune on github.
  • I am ronindune (https://keybase.io/ronindune) on keybase.
  • I have a public key whose fingerprint is FC0D 7B3C B6A7 BC2E AABE ED07 0856 0B37 FF3E D3BC

To claim this, I am signing this object:

# extract_docx_text.py
import sys
from docx import Document
#Create a function that converts the byte elements of the list fields into strings.
def convert(s):
try:
return str(s, encoding='utf8')