View HTML5-template.css
body { | |
background-color: white; | |
color: black; | |
font-family: sans-serif; | |
font-size: 100%; | |
} |
View RunAsAdmin_OpretFlyt.cmd
@echo off | |
mkdir C:\Flyt | |
icacls C:\Flyt /grant:r Everyone:(CI)(OI)M | |
net share Flyt=C:\Flyt /GRANT:Everyone,CHANGE /USERS:2 /CACHE:None | |
pause |
View Python_Tornado_MySQL_Demo.py
import time | |
import tornado.ioloop | |
import tornado.web | |
import pymysql | |
# HTML templates | |
html_begin = '''<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> |
View UKeepAwake.pas
unit UKeepAwake; | |
interface | |
uses | |
Windows; | |
type | |
EXECUTION_STATE = DWORD; |
View freestanding_hello.c
// Freestanding with MinGW: | |
// http://nullprogram.com/blog/2016/01/31/ | |
// http://nullprogram.com/blog/2016/02/28/ | |
// https://support.microsoft.com/da-dk/kb/99456 | |
#include <windows.h> | |
int WINAPI mainCRTStartup(void) | |
{ | |
char msg[] = "Hello, world!\n"; |
View setup-static-png-jpeg-libraries.txt
For alle: Start med cd til roden af projekt-mappe | |
----- ZLIB ----- | |
# wget -P ./download/ http://zlib.net/zlib-1.2.8.tar.gz | |
- Slet eksisterende zlib dir | |
- Udpak i zlib dir således at strukturen er: ./zlib/zlib.h | |
# cd zlib |
View basic_windows_application.c
// Compile with MS cmd-line: cl basic_windows_application.c user32.lib | |
// Compile with Embarcadero cmd-line: bcc32c -tW -tU basic_windows_application.c | |
// Compile from Ubuntu: x86_64-w64-mingw32-gcc -mwindows -municode -Os -o basic.exe basic_windows_application.c | |
// Compile with Digital Mars C: dmc basic_windows_application.c | |
// + strip basic.exe | |
#include <windows.h> | |
LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) | |
{ |
View valpwd.sh
#!/bin/bash | |
L1=`grep $1 /etc/shadow|cut -d ":" -f 2` | |
if [ $L1 ]; then | |
SALT=`echo $L1|cut -d "$" -f 3` | |
L2=`mkpasswd --salt=$SALT --method=sha-512 $2` | |
if [ "$L1" == "$L2" ]; then | |
exit 0 | |
else | |
exit 1 |
View generate-text.py
# fold -s -w 70 | |
import sys | |
import random | |
cons = 'bcdfghjklmnpqrstvwxz' | |
consx = 'hjqvwx' | |
vows = 'aeiouy' | |
cvless = 'qxyz' | |
def generate_word(cap): |
View MySQL-Log.sql
-- Log incoming SQL on MySQL server: | |
set global log_output=FILE; | |
set global general_log_file="C:/Test/MySQL.log"; | |
set global general_log=1; | |
-- Turn off: | |
set global general_log=0; |
OlderNewer