Skip to content

Instantly share code, notes, and snippets.

View labarks's full-sized avatar

David Skrabal labarks

View GitHub Profile
@primaryobjects
primaryobjects / activities.md
Last active May 20, 2020 13:07
Working from home useful links WFH

Activities for Kids

Music Time With Priscilla Cunza-Marin

If you have babies or toddlers, and need to entertain them for 20-30 minutes with a little music, this is a great opportunity! Mondays and Thursdays at 1pm, kids can enjoy a short ukelele sing-along session of their favorite kids songs ("Alphabet song", "Heads, Shoulders, Knees and Toes", "I'm a Little Teapot", etc.) Please sign up and we will forward you the appointment with Zoom link https://us04web.zoom.us/j/907562844

Dance Classes with Karishma Motwani

Go to that important meeting or get that important task done while your kids enjoy 30-40 minutes of dance classes with Karishma Motwani, Mondays and Thursdays at 4:30pm! All ages welcome! Please sign up and we will forward you the appointment with Zoom link. Adults are welcome as well if you'd like to sneak some extra steps in for that step challenge! https://us04web.zoom.us/j/9422118428

Arts and Crafts with Neena Davies

Let your kids get creative learning how to do different arts a

@bp2008
bp2008 / HyperVServer2019_GUI_Installation.md
Last active January 22, 2025 13:21
How to install a graphical desktop environment on Hyper-V Server 2019

Hyper-V Server 2019 GUI Installation Guide

Introduction

Hyper-V Server does not include much in the way of graphical tools, but third-party alternatives can be installed.

I found a disturbing lack of basic instructions for using Hyper-V Server 2019, so it is my hope that this guide is useful to somebody.

Before starting this guide, enable Remote Desktop support in Hyper-V Server using the built-in configuration menu. If you connect to the Hyper-V Server with Remote Desktop, it will make it easy to copy and paste text (and later, files) from a normal Windows desktop machine.

@primaryobjects
primaryobjects / m3u8.md
Last active June 5, 2025 08:21
How to download m3u8 and ts video movie streams.

m3u8 Downloading

  1. Open Chrome Developer tools and click the Network tab.
  2. Navigate to the page with the video and get it to start playing.
  3. Filter the list of files to "m3u8".
  4. Find master.m3u8 or index.m3u8 and click on it.
  5. Save the file to disk and look inside it.
  6. If the file contains a single m3u8 master url, copy that one instead.
  7. Run the program m3u8x.
  8. Paste the same m3u8 url in both textboxes (URL and Quality URL) and click "Headers" and set the referral url and user-agent from the request as found in Chrome.
@dannypule
dannypule / json_to_csv.js
Created February 8, 2017 18:40
Export JSON to CSV file using Javascript
function convertToCSV(objArray) {
var array = typeof objArray != 'object' ? JSON.parse(objArray) : objArray;
var str = '';
for (var i = 0; i < array.length; i++) {
var line = '';
for (var index in array[i]) {
if (line != '') line += ','
line += array[i][index];