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
#include <Arduino.h> | |
#include <TM1637Display.h> | |
#define CLK 2 | |
#define DIO 3 | |
TM1637Display display(CLK, DIO); | |
void setup() | |
{ | |
display.setBrightness(100); | |
} |
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
<!-- ================================================= --> | |
<!-- THIS FILE IS AUTOGENERATED. DO NOT MODIFY THIS FILE --> | |
<!-- ================================================= --> | |
<castle> | |
<?define DISABLE_TLS ?> | |
<properties> | |
<!-- Service Configuration --> | |
<servicePort>0</servicePort> | |
<serviceHost>localhost</serviceHost> | |
<webServicePort>9081</webServicePort> |
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
/* ============================================================================================ */ | |
/* Delete all stored procs, views, funcs and tables from a SQL Server database */ | |
/* Adapted from: http://blog.kashyapmakadia.com/2009/08/drop-everything-in-sql-server-2005.html */ | |
/* ============================================================================================ */ | |
DECLARE @name VARCHAR(128) | |
DECLARE @constraint VARCHAR(254) | |
DECLARE @SQL VARCHAR(254) | |
/* Drop all non-system stored procs */ |
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
/* ========= NUGET PACKAGES ============================================================== | |
Id Versions ProjectName | |
-- -------- ----------- | |
CsvHelper {2.16.3.0} TFSHistoryDumper | |
Microsoft.AspNet.WebApi.Client {5.2.2} TFSHistoryDumper | |
Microsoft.AspNet.WebApi.Core { |
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
select lower(regexp_replace(rawtohex(sys_guid()), '([A-F0-9]{8})([A-F0-9]{4})([A-F0-9]{4})([A-F0-9]{4})([A-F0-9]{12})', '\1-\2-\3-\4-\5')) from dual |
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
/** | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2013 Thom Seddon | |
* Copyright (c) 2010 Google | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
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
/* | |
* This work (Modern Encryption of a String C#, by James Tuley), | |
* identified by James Tuley, is free of known copyright restrictions. | |
* https://gist.github.com/4336842 | |
* http://creativecommons.org/publicdomain/mark/1.0/ | |
*/ | |
using System; | |
using System.IO; | |
using System.Text; |
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
#include "Arduino.h" | |
#include <Adafruit_NeoPixel.h> | |
#define PIN 4 | |
#define LED_COUNT 60 | |
// Create an instance of the Adafruit_NeoPixel class called "leds". | |
// That'll be what we refer to from here on... | |
Adafruit_NeoPixel leds = Adafruit_NeoPixel(LED_COUNT, PIN, NEO_GRB + NEO_KHZ800); |
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
#include "Arduino.h" | |
#include <Adafruit_NeoPixel.h> | |
#define PIN 4 | |
#define LED_COUNT 60 | |
// Create an instance of the Adafruit_NeoPixel class called "leds". | |
// That'll be what we refer to from here on... | |
Adafruit_NeoPixel leds = Adafruit_NeoPixel(LED_COUNT, PIN, NEO_GRB + NEO_KHZ800); |
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
#include "Arduino.h" | |
#include <Adafruit_NeoPixel.h> | |
#define PIN 4 | |
#define LED_COUNT 60 | |
// Create an instance of the Adafruit_NeoPixel class called "leds". | |
// That'll be what we refer to from here on... | |
Adafruit_NeoPixel leds = Adafruit_NeoPixel(LED_COUNT, PIN, NEO_GRB + NEO_KHZ800); |
NewerOlder