Skip to content

Instantly share code, notes, and snippets.

@Diederikjh
Diederikjh / isAfterHoursDownloadTime.py
Last active August 29, 2015 14:06
Check if time is in WebAfrica afterhours download time.
#!/usr/bin/python
import datetime
import sys
now = datetime.datetime.now()
nowTime = now.time()
downloadTimeStart = datetime.time(0,0)
downloadTimeEnd = datetime.time(6,0)
@Diederikjh
Diederikjh / downloadComp.sh
Last active August 29, 2015 14:06
Bash script for downloading files off video sharing site YouTube
#!/bin/bash
if /home/drbergie/scripts/isAfterHoursDownloadTime.py; then
echo "starting download"
DOWNLOAD_PROGRESS_FILE=/tmp/downloadInProgress
LINKS_FILE=/home/drbergie/youtubelinks.txt
if [ ! -f $DOWNLOAD_PROGRESS_FILE ] ; then
echo "1" > $DOWNLOAD_PROGRESS_FILE
@Diederikjh
Diederikjh / copysystemdrive.sh
Created January 18, 2017 10:09
Copy system drive and ready to chroot.
# First sync old root then rew root.
# Mostly from http://askubuntu.com/a/3409/41258
sudo rsync -avP --numeric-ids --exclude='/dev' --exclude='/proc' --exclude='/sys' --exclude='/home' --exclude='/media' --exclude='/var/cache/zoneminder' /media/ubuntu/eb636436-ea9f-4e1b-bc71-5b46eb6e96a1/ /media/ubuntu/690ad96f-d072-41ef-9ebe-a524f891a2f6/
sudo mkdir /media/ubuntu/690ad96f-d072-41ef-9ebe-a524f891a2f6/proc
sudo mount -B /proc /media/ubuntu/690ad96f-d072-41ef-9ebe-a524f891a2f6/proc
sudo mkdir /media/ubuntu/690ad96f-d072-41ef-9ebe-a524f891a2f6/dev
sudo mount -B /dev /media/ubuntu/690ad96f-d072-41ef-9ebe-a524f891a2f6/dev
/*
* Copyright (C) 2014 skyfish.jy@gmail.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
This file has been truncated, but you can view the full file.
eEarlyAllocBuffers(): consuming early alloc buffers with count 0
11-14 11:52:38.796 488-5060/? D/QCameraHWI_Mem: void qcamera::QCameraMemory::traceLogAllocStart(size_t, int, const char*) : alloc E count=5 size=24256512
11-14 11:52:38.796 488-5060/? E/QCameraHWI_Mem: void qcamera::QCameraMemory::traceLogAllocStart(size_t, int, const char*):StreamMemsize 24256512
11-14 11:52:38.796 488-5060/? D/QCameraHWI_Mem: void qcamera::QCameraMemory::traceLogAllocStart(size_t, int, const char*) : alloc E count=5 size=24256512
11-14 11:52:38.796 488-5060/? E/QCameraHWI_Mem: void qcamera::QCameraMemory::traceLogAllocStart(size_t, int, const char*):Memsize 24256512
11-14 11:52:38.817 512-5029/? I/chatty: uid=1006(camera) mm-qcamera-daem expire 55 lines
11-14 11:52:38.853 1208-2435/? W/NetworkIdentity: Active mobile network without subscriber!
11-14 11:52:38.857 488-5060/? D/QCameraHWI_Mem: void qcamera::QCameraMemory::traceLogAllocEnd(size_t) : X
# PowerShell Editor Services Bootstrapper Script
# ----------------------------------------------
# This script contains startup logic for the PowerShell Editor Services
# module when launched by an editor. It handles the following tasks:
#
# - Verifying the existence of dependencies like PowerShellGet
# - Verifying that the expected version of the PowerShellEditorServices module is installed
# - Installing the PowerShellEditorServices module if confirmed by the user
# - Creating named pipes for the language and debug services to use (if using named pipes)
# - Starting the language and debug services from the PowerShellEditorServices module
# PowerShell Editor Services Bootstrapper Script
# ----------------------------------------------
# This script contains startup logic for the PowerShell Editor Services
# module when launched by an editor. It handles the following tasks:
#
# - Verifying the existence of dependencies like PowerShellGet
# - Verifying that the expected version of the PowerShellEditorServices module is installed
# - Installing the PowerShellEditorServices module if confirmed by the user
# - Creating named pipes for the language and debug services to use (if using named pipes)
# - Starting the language and debug services from the PowerShellEditorServices module
@Diederikjh
Diederikjh / fix_cam.sh
Last active March 20, 2019 21:03
Get valid cookie from camera and set it on tinyproxy config
#!/bin/bash
# gets cookie for camera, and sets it for reverse proxy for ZM
read -sp "Please enter camera http login password\
" PASSWORD
USER=diederik
# Do login
curl -v 'http://192.168.0.11/login.cgi' -H 'User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0' -H 'Accept: */*' -H 'Accept-Language: en-ZA,en-GB;q=0.8,en-US;q=0.5,en;q=0.3' --compressed -H 'Content-Type: application/x-www-form-urlencoded' -H 'X-Requested-With: XMLHttpRequest' --data "username=$USER&password=$PASSWORD" --cookie-jar cookies.txt
@Diederikjh
Diederikjh / AlphawaveIntervewProcess.py
Last active May 22, 2019 18:13
Alphawave Interview process pseudocode
# NOTE THIS CODE CONTAINS NO BUGS
# see https://www.alphawave.co.za/ for more
def InterviewForEMSS( candidate ):
if (goodCV(candidate) == true):
if (onlineTestPass(candidate) == true):
if (faceToFaceInterviewPerformance(candidate) >= 95%):
# ;) https://xkcd.com/292/
goto: Hire
goto: Not-Hire
@Diederikjh
Diederikjh / package.json
Last active May 27, 2019 09:24
Glitch twitter bot for git hub commit comments (stil lots of getting started glitch code.)
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"name": "git-commit-bot",
"version": "0.0.1",
"description": "Tweet random git commits!",
"main": "server.js",
"scripts": {
"start": "node server.js"