Skip to content

Instantly share code, notes, and snippets.

View unforgiven512's full-sized avatar

Gerad Munsch unforgiven512

View GitHub Profile
@oscarmorrison
oscarmorrison / IFTTTDate.md
Last active January 29, 2025 23:07
Make IFTTT Date Format play nice with Google Spreadsheets

##Date and Time

=TIMEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " ")) + DATEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " "))

##Date

=DATEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " "))

##Time

#!/usr/bin/env /usr/bin/python
# Copyright 2013 Clayton Smith ([email protected])
# Copyright 2014 Ryan Tucker ([email protected])
# (Add UDP streaming support, tweak RRC filter)
#
# 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.
@2xyo
2xyo / Readme.md
Created October 7, 2013 12:40
Kernel sysctl configuration file for Linux dedicated server systems at high-speed networks with loads of RAM and bandwidth available.

Sysctl-IP-Tunning

Kernel sysctl configuration file for Linux dedicated server systems at high-speed networks with loads of RAM and bandwidth available.

Installation

This file should be saved as /etc/sysctl.d/sysctl.local.conf and can be activated using the command: sysctl -e -p /etc/sysctl.d/*

@zeha
zeha / gist:5999375
Created July 15, 2013 11:49
gitignore for MPLAB X projects
*.d
*.pre
*.p1
*.lst
*.sym
*.obj
*.o
*.sdb
*.obj.dmp
html/
@2N2222A
2N2222A / THPrev4aextendedwvoltage.pde
Created June 26, 2012 19:33
Arduino Temperature/Humidity/Pressure Monitor
/* Arduino Temperature/Humidity/Pressure monitor Rev. 2.2A by JS106351
Originally based from an all analog design, but code was rewritten for digital use.
Example code for the sensors was found online, and modified for this project. */
//This code is for Arduino 0023 or less only.
// Read temperature/humidity/pressure from sensors and display on 16x2 Character LCD screen
#include <LiquidCrystal.h>
#include <Sensirion.h>