Skip to content

Instantly share code, notes, and snippets.

View techtide's full-sized avatar

Arman Bhalla techtide

View GitHub Profile
["{\"title\": \"The Chipmunk Song\", \"url\": \"https://api.soundcloud.com/tracks/125956194/stream?secret_token=s-tj3IS&client_id=LBCcHmRB8XSStWL6wKH2HPACspQlXg2P\", \"author\": \"The Chipmunks\", \"ageYear\": \"1958\", \"image\": \"https://i1.sndcdn.com/artworks-000065974951-24r419-large.jpg\"},","{\"title\": \"Smoke Gets In Your Eyes\", \"url\": \"https://api.soundcloud.com/tracks/176950897/stream?secret_token=s-tj3IS&client_id=LBCcHmRB8XSStWL6wKH2HPACspQlXg2P\", \"author\": \"The Platters\", \"ageYear\": \"1991\", \"image\": \"https://i1.sndcdn.com/artworks-000097181875-f1pxtv-large.jpg\"},","{\"title\": \"To Know Him Is to Love Him\", \"url\": \"https://api.soundcloud.com/tracks/301194664/stream?secret_token=s-tj3IS&client_id=LBCcHmRB8XSStWL6wKH2HPACspQlXg2P\", \"author\": \"The Teddy Bears\", \"ageYear\": \"1958\", \"image\": \"https://i1.sndcdn.com/artworks-6XfmYADjIdHP-0-large.jpg\"},","{\"title\": \"F**kin' Problems (ft. Drake, 2 Chainz & Kendrick Lamar)\", \"url\": \"https://api.soundcloud.com/tracks
@techtide
techtide / app.js
Created January 13, 2019 22:37
Express app which spits out a streamable raw YouTube link given the proper link.
var express = require("express");
var app = express();
var url = require('url');
var youtube = require('youtube-stream-url');
/*
* Express app which spits out a streamable raw YouTube link given the proper link.
* By Arman B.
*/
@techtide
techtide / SC_Grab.py
Created January 13, 2019 22:36
Grabs tracks and puts it into the right format for Bloom.
import soundcloud
import csv
from pynput.keyboard import Key, Controller
"""
Grabs tracks and puts it into the right format for Bloom Music Therapy.
By Arman B.
"""
keyboard = Controller()
@techtide
techtide / PlayListMaker.sh
Last active January 10, 2019 17:03
Generates age-based playlists for my music application, Bloom Music Therapy, on the iOS App Store.
#!/bin/bash
### Created by Arman Bhalla for the Bloom Music Therapy application.
### 10/01/2019
echo "Bloom Music Therapy App"
echo "Age-based Playlist Creation System by Arman Bhalla"
echo "What age is this for?"
read AGE
return new Column(
children: <Widget>[
new Container(
width: double.infinity,
height: 40.0,
),
// Seek bar
new Expanded(
child: new Image.network(
currentSelectedTrack.imageURL,
const Discord = require('discord.js');
const client = new Discord.Client();
client.on('ready', () => {
console.log(`Logged in as ${client.user.tag}!`);
});
client.on('message', msg => {
if (msg.content.includes('?!embed')) {
msg.channel.send({embed: {
@techtide
techtide / Shop.gd
Created December 23, 2018 22:58
A supposed shop for my game.
extends Container
var is_visible = false
signal edit_mode()
signal edit_mode_off() # relay this signal back when editing is done, so the scripts can set edit_mode back to false
onready var money_label = get_node("../MoneyBox/Label")
onready var taser_turret_scn = preload("res://StunTurret.tscn")
onready var gun_turret_scn = preload("res://KillTurret.tscn")
extends KinematicBody2D
onready var raycast = $Sprite/RayCast2D
onready var line = $Sprite/Line2D
onready var timer = $Timer
onready var sprite = $Sprite
func _process(delta):
aim(get_closest_zombie())
def children():
clothes=1
water=1.5
food=1
blanket = 1.25
/**
* A class that makes song lyrics for Shirley Ellis'
* hit single, "The Name Game".
* Author(s): Arman, Fletcher
* Date: 03/10/2018
*/
public class NameGame {
private String name;