Skip to content

Instantly share code, notes, and snippets.

@Juice805
Juice805 / playstv_videos_downloader.py
Last active December 7, 2019 23:29 — forked from st0le/PlaysTvDownloader.ps1
Downloads all public videos of a user
#! /usr/bin/python3
# download all PlaysTv videos of a user
# To find the user id, navigate to the your profile while logged in (IMPORTANT!)
# View source of the page, In the <html> tag there's data-conf attribute.
# The json in there will have the user id under [login_user.id]
user_id = "<playstv user guid>"
# Replace the <playstv user guid> above with your ID
@Juice805
Juice805 / FizzBuzz.swift
Created July 28, 2017 16:27
Swift Navigation Application
// Written.... In Swift
import Foundation
/// Generates the first n Fibonacci numbers printing
/// "Buzz" when F(n) is divisible by 3.
/// "Fizz" when F(n) is divisible by 5.
/// "FizzBuzz" when F(n) is divisible by 15.
/// "BuzzFizz" when F(n) is prime.
/// the value F(n) otherwise.
///