This file contains hidden or 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
#!/usr/bin/python | |
# filedrop.py | |
# http://zetcode.com/wxpython/draganddrop/ | |
import wx, os, shutil, ntpath | |
dest_dir = '/home/user/backup/' | |
if not os.path.exists(dest_dir): |
This file contains hidden or 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
#!/usr/bin/env bash | |
lat=`exiftool -n -p '$GPSlatitude' $1` | |
lon=`exiftool -n -p '$GPSlongitude' $1` | |
osm="http://www.openstreetmap.org/?mlat=$lat&mlon=$lon&zoom=18" | |
xdg-open $osm |
This file contains hidden or 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
abschnecken | |
nirgendwas | |
dement sprechend, dement schweigend | |
Nussschnecke - Frollein, das zwar nicht clever, aber dafür schön ist | |
bemitneiden | |
writearound | |
Schnexitus | |
Schnexit | |
Schneckopocalypse -> Schnec(k)olypse! | |
clusterfake - Sven's Raspberry Pi 3 Ceph cluster |
This file contains hidden or 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
/* | |
* Hello world web server | |
* circuits4you.com | |
*/ | |
#include <ESP8266WiFi.h> | |
#include <WiFiClient.h> | |
#include <ESP8266WebServer.h> | |
//SSID and Password to your ESP Access Point | |
const char* ssid = "ESP8266"; |
This file contains hidden or 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
const int statusPin = LED_BUILTIN; // status LED pin | |
const int flashPin = D1; // flash pin | |
const int ldrPin = A0; // select the input pin for the LDR | |
//const int pwrPin = A3; // power pin | |
int sensorValue = 0; // variable to store the value coming from the LDR | |
void setup() | |
{ | |
pinMode(ldrPin,INPUT); | |
pinMode(statusPin, OUTPUT); |
This file contains hidden or 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
/* | |
* Sketch: ESP8266_LED_Control_02 | |
* Control an LED from a web browser | |
* Intended to be run on an ESP8266 | |
* | |
* connect to the ESP8266 AP then | |
* use web broswer to go to 192.168.4.1 | |
* | |
*/ | |
This file contains hidden or 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
function did { | |
dir="$HOME/did/" | |
d="$dir"$(date '+%Y-%m-%d')".md" | |
emacs "$d" --eval "(goto-char (point-max))" | |
} |
This file contains hidden or 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
<?php | |
if(isset($_POST['submit'])){ | |
// Count total files | |
$countfiles = count($_FILES['file']['name']); | |
// Looping all files | |
for($i=0;$i<$countfiles;$i++){ | |
$filename = $_FILES['file']['name'][$i]; | |
This file contains hidden or 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
#!/usr/bin/env bash | |
# Author: Dmitri Popov, [email protected] | |
####################################################################### | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. |
This file contains hidden or 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
/* For styling the rendered Markdown */ | |
* .annotator-hl { | |
background-color: rgba(0, 216, 181, .3) !important; | |
border: 3px solid red !important; | |
} | |
body { | |
font-family: 'Vollkorn', serif !important; | |
margin-bottom: 2em !important; | |
font-size: 1.1em; | |
line-height: 1.5em; |