I hereby claim:
- I am zohead on github.
- I am nocwat (https://keybase.io/nocwat) on keybase.
- I have a public key whose fingerprint is BFB4 5684 D59B 108F E33E 26CC 3B09 D460 88AD ED69
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
[ -d test ] || mkdir test | |
ind=0 | |
username=`whoami` | |
for i in `ls /mnt/c/Users/$username/AppData/Local/Packages/Microsoft.Windows.ContentDeliveryManager_*/LocalState/Assets/*`; do | |
cp $i test/$ind.jpg | |
ind=`expr $ind + 1` | |
done |
#!/usr/bin/python | |
""" | |
msysGit to Unix socket proxy | |
============================ | |
This small script is intended to help use msysGit sockets with the new Windows Linux Subsystem (aka Bash for Windows). | |
It was specifically designed to pass SSH keys from the KeeAgent module of KeePass secret management application to the | |
ssh utility running in the WSL (it only works with Linux sockets). However, my guess is that it will have uses for other |
#!/usr/bin/env python3 | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
see: https://gist.github.com/UniIsland/3346170 | |
""" | |
#!/bin/sh -e | |
# Copyright (c) 2015 The crouton Authors. All rights reserved. | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file of the source repository, which has been replicated | |
# below for convenience of distribution: | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are | |
# met: | |
# |
a/* | |
* Linux kernel module fucker | |
* | |
* by wzt <[email protected]> | |
* | |
*/ | |
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> |
/* | |
Copyright (C) 2000 Daniel Ryde | |
Modified by Uranus Zhou (2014) | |
This library is free software; you can redistribute it and/or | |
modify it under the terms of the GNU Lesser General Public | |
License as published by the Free Software Foundation; either | |
version 2.1 of the License, or (at your option) any later version. |
Local $hWnd = WinGetHandle("[CLASS:TXGuiFoundation; TITLE:qqgroup]", "") | |
Local $editWnd = WinGetHandle("EditPlus", "") | |
$i=1 | |
While $i<=200 | |
WinActivate($hWnd) | |
Local $aPos = WinGetPos("[ACTIVE]") | |
MouseClick("left", $aPos[0] + $aPos[2] - 52, $aPos[1] + $aPos[3] - 18) | |
Sleep(100) | |
$i=$i+1 |
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<!-- | |
Copyright (c) 2006, Doeke Zanstra | |
All rights reserved. | |
Redistribution and use in source and binary forms, with or without modification, | |
are permitted provided that the following conditions are met: | |
Redistributions of source code must retain the above copyright notice, this |
/* exec-notify, so you can watch your acrobat reader or vim executing "bash -c" | |
* commands ;-) | |
* Requires some 2.6.x Linux kernel with proc connector enabled. | |
* | |
* $ cc -Wall -ansi -pedantic -std=c99 exec-notify.c | |
* | |
* (C) 2007-2010 Sebastian Krahmer <[email protected]> original netlink handling | |
* stolen from an proc-connector example, copyright folows: | |
*/ | |
/* |