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 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 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 RunProcessAndCaptureOutput.pas
procedure RunProcessAndCaptureOutput(const CmdLine: string; Memo: TMemo; HideLinesCount: Integer = 0); | |
var | |
SecAttr: TSecurityAttributes; | |
PipeR, PipeW: THandle; | |
StartupInfo: TStartupInfo; | |
ProcessInfo: TProcessInformation; | |
Buffer: packed array[0..4096-1] of AnsiChar; | |
Count: Cardinal; | |
S, Leftover: AnsiString; | |
i, P: Cardinal; |
View RefCountObject.pas
type | |
TRefCountObject = class(TObject) | |
protected | |
ExtraReferencesCount: Integer; { Default 0 } | |
public | |
procedure Free; | |
function GetReference: TRefCountObject; | |
end; | |
procedure TRefCountObject.Free; |
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; |
View RubberExample.cs
using System; | |
using System.Drawing; | |
using System.Windows.Forms; | |
public class RubberExample : Form { | |
bool mouseDown = false; | |
Point mouseDownPoint = Point.Empty; | |
Point mousePoint = Point.Empty; |
OlderNewer