This file contains 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
#!/usr/bin/env bash | |
# --------------------------------------------- | |
# This has been updated to work with Fedora 35 | |
# --------------------------------------------- | |
# Run a System Update | |
sudo dnf update | |
# Enable RPM Fusion |
This file contains 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
/* | |
Author: Arjun Variar | |
Date: 23rd Oct 2012 | |
kMeans Clustering algorithm implemented from javascript as per the logic from Andrew Ng's ML class. | |
Implementation is for node.js, should work on the browser too. | |
Dependencies: | |
Javascript Sylvester library is used for matrix operations. | |
Notes: | |
Added feature scaling to the algorithm as an optional thing to do, somehow it doesnt fit well this data. | |
*/ |
This file contains 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
# Author - Arjun Variar | |
# Thanks to Ben for introducing me to fiftyfootshadows, Awesome Wallpapers!! | |
#!/bin/sh | |
if [[ -z "$TMP" ]] | |
then | |
TMP="/private/tmp" | |
fi | |
dir="$HOME/fifty_downloads" |