This tool helps you with many absolutely proprietary software which doesn't include proper push-to-talk key. I wrote this with Google Meet in mind but is also useful for many other browser based apps as well.
Like this? Support me at Github!
| // blindtiffs | |
| // ---------- | |
| // Usage: blindtiffs <src> <dst> | |
| // Recursively copies folder <src> to folder <dst>. | |
| // All GeoTIFFs in the source tree are 'blinded' by | |
| // gdal_calc.py to have zero channels but still contain | |
| // all the meta data. | |
| // | |
| // (c) 2017 by Sascha L. Teichmann |
| // Changes XML to JSON | |
| // Modified version from here: http://davidwalsh.name/convert-xml-json | |
| function xmlToJson(xml) { | |
| // Create the return object | |
| var obj = {}; | |
| if (xml.nodeType == 1) { // element | |
| // do attributes | |
| if (xml.attributes.length > 0) { |
| #!/bin/bash | |
| # | |
| # DESCRIPTION: | |
| # | |
| # Set the bash prompt according to: | |
| # * the active virtualenv | |
| # * the active nodejs virtualenv[1] | |
| # * the branch/status of the current Git, Mercurial or Subversion repository | |
| # * the return value of the previous command | |
| # * one line prompt |
| import requests | |
| import csv | |
| import datetime | |
| import calendar | |
| import time | |
| i=0 | |
| # Change the range depending on how long you like to record the data | |
| for i in range (0,50): | |
| module github.com/mlh758/exc_test | |
| go 1.12 | |
| require github.com/360EntSecGroup-Skylar/excelize v1.4.1 |
| #include "pokitto.h" | |
| Pokitto::Core game; | |
| //#define SCREEN_W 110 | |
| //#define SCREEN_H 88 | |
| extern "C" { | |
| #include "chip8.h" | |
| void chip8_initialize(C8* CH8); |
| package main | |
| import ( | |
| "time" | |
| "machine" | |
| "image/color" | |
| "tinygo.org/x/drivers/microbitmatrix" | |
| "tinygo.org/x/drivers/mma8653" | |
| ) |
This tool helps you with many absolutely proprietary software which doesn't include proper push-to-talk key. I wrote this with Google Meet in mind but is also useful for many other browser based apps as well.
Like this? Support me at Github!
| @ECHO OFF | |
| echo Powershell profile deleter | |
| set /p PCNAME="PC:" | |
| Powershell -Mta -NoProfile -Command "& {Get-WmiObject Win32_UserProfile -Computer %PCNAME% | Where {(!$_.Special) -and (!$_.Loaded) -and ($_.LastUseTime -ne $null) -and ($_.ConvertToDateTime($_.LastUseTime) -lt (Get-Date).AddDays(-1))} | Remove-WmiObject -Verbose}" | |
| pause |