Skip to content

Instantly share code, notes, and snippets.

View MarkSilverMedia's full-sized avatar

Mark! Silver MarkSilverMedia

View GitHub Profile
@MarkSilverMedia
MarkSilverMedia / bandcamp.sh
Created August 7, 2017 17:06
Install Bandcamp Extension for VLC Media Player
wget http://regex.info/code/JSON.lua
sudo cp JSON.lua /usr/lib/vlc/lua/modules/JSON.lua
rm JSON.lua
wget https://gist.githubusercontent.com/MarcuzD/573d3f031bd61a650a65d5238b80164c/raw/6503456f7b59be1a37cf5ee97a95af1c957e8a45/bandcamp.lua
sudo cp bandcamp.lua /usr/lib/vlc/lua/playlist/bandcamp.lua
rm bandcamp.lua

Keybase proof

I hereby claim:

  • I am MarkSilverMedia on github.
  • I am marksilver (https://keybase.io/marksilver) on keybase.
  • I have a public key whose fingerprint is 9A8B 801B 8A0F 8CD2 C006 8B33 4B31 7D89 E0C2 3A0A

To claim this, I am signing this object:

@MarkSilverMedia
MarkSilverMedia / binary_search.cpp
Created May 4, 2017 17:55
binary search (need this for later)
#include<iostream>
using namespace std;
bool bsearch(int AR[], int N, int VAL);
int main()
{
int AR[100],n,val; // Array size will be declared by user, or I might change to vector if that'll work.
bool found;
@MarkSilverMedia
MarkSilverMedia / felloutoftheworld.txt
Created April 25, 2017 18:36
"Fell of out the World" - work in progress lyrics
F7 (Am7 C/B) F7 Em7
Angle of the transportation. It mattered
when she fell out of the world in the midst of gleaming daylight.
None the words from planet earth; we're shattered.
coz she lost touch with the earth that lost its meager pull.
C/B Em7 Am7 D7
"Help!" she'll scream from space,
@MarkSilverMedia
MarkSilverMedia / vector_resize.cpp
Created April 12, 2017 17:49
Blip for a school C++ project (resizing vectors)
/*
This is a portion of a program that I'm writing here because I am away from my personal computer at the moment.
This code will not work without the context-specific remainder of the program, but feel free to fork this for whatever purpose.
*/
while (NumArray.size<ArrayLength) {
NumArray.push_back(0);
}