This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# | |
# add your sites here, one per line | |
# prepend # to temporarily exclude an entry | |
# | |
sites=" | |
reddit.com | |
google.com | |
microsoft.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Accessing a website that uses a self-signed certificate using Mobile Safari | |
will throw a couple of warnings but will ultimately give an option for | |
temporarily accepting the certificate and then using the site as usual. | |
The certificate can also be installed as a system-wide "Security Profile" | |
on an iDevice; that is, manually added to the trusted certificate list. | |
This will eliminate the warnings and make a self-signed certificate look | |
and feel as a certificate issued by a trusted CA. | |
This is done exposing cert's file (.pem or .crt) via the website itself, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2005 Applied Networking Inc. All rights reserved. | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms set out in the LICENSE.tuncfg file, which is | |
* included in Hamachi Client distribution. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
call :reset | |
call :clock | |
%* > nul | |
call :clock | |
call :render | |
exit /B |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Given a log line that starts like this: | |
* | |
* 2014.01.27 19:35:51.639 (UTC-1) 3 1 ... | |
* | |
* the following takes about ~60 ms per call in a release build | |
* produced by a VC++ 2017 using its stock CRT (v141): | |
*/ | |
sscanf(line, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- μGiffer / preview release -- | |
https://iobureau.com/files/uGiffer-0.9.12.zip (213576 bytes) | |
------------------------> 32-bit/uGiffer.exe (111488 bytes) | |
------------------------> 64-bit/uGiffer.exe (123264 bytes) | |
Both exe files carry an EV signature of IO Bureau SA. | |
For details see here -> https://iobureau.com/ugiffer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This will execute and exit cleanly despite of | |
* dereferencing a zero pointer in line 12 ... | |
*/ | |
#include <windows.h> | |
#include <stdio.h> | |
void __stdcall OnTimer(HWND, UINT, UINT_PTR, DWORD) | |
{ |