Original: http://www.shadowandy.net/2012/03/asus-rt-n66u-tomatousb-firmware-flashing-guide.htm
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
| CREATE TABLE adressen.land | |
| ( | |
| isocode_2 character(2) not null, -- ISO 3166 ALPHA-2 | |
| isocode_3 character(3) not null, -- ISO 3166 ALPHA-3 | |
| name character varying not null, -- deutscher Name des Landes (international besser via ISO-Code ankoppeln!) // German name of the country | |
| vorwahl integer default null, -- internationale Vorwahl // international phone code | |
| null_bei_vorwahl boolean default FALSE, -- muss man die Null der Ortsvorwahl auch nach der internationalen Vorwahl wählen? // must one dial zero between international and local phone code? | |
| vorwahl_lokal boolean default FALSE, -- muss man vor Ort die Vorwahl wählen? // must one dial the local phone code also locally? | |
| tld character varying default NULL, -- Top Level Domain | |
| kfz character varying default NULL, -- KFZ-Kennzeichen // car code |
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
| /* | |
| * Created by SharpDevelop. | |
| * Date: 1/4/2014 | |
| * Time: 5:15 PM | |
| * | |
| * | |
| */ | |
| using System; | |
| using System.Text; | |
| using System.Collections.Generic; |
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
| ///////////////////////////////////////////////////////////////////////////////////////////// | |
| List of Executable File Extensions | |
| ///////////////////////////////////////////////////////////////////////////////////////////// | |
| Extension Format Operating System(s) | |
| ACTION Automator Action Mac OS | |
| APK Application Android | |
| APP Executable Mac OS | |
| BAT Batch File Windows | |
| BIN Binary Executable Windows, Mac OS, Linux | |
| CMD Command Script Windows |
The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.
It's as simple as downloading and installing the latest client:
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
| // Basic unitOfWork pattern as described by Martin Fowler (http://martinfowler.com/eaaCatalog/unitOfWork.html) | |
| // Other methos as 'registerNew' are going to be managed by each repository | |
| public interface IUnitOfWork : IDisposable | |
| { | |
| void Commit(); | |
| Task CommitAsync(); | |
| void Rollback(); | |
| } | |
| public interface IUnitOfWorkFactory |
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
| using System; | |
| using System.Diagnostics; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| public static class ProcessAsyncHelper | |
| { | |
| public static async Task<ProcessResult> ExecuteShellCommand(string command, string arguments, int timeout) | |
| { | |
| var result = new ProcessResult(); |
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
| +-- doc | |
| ⁞ +-- api | |
| ⁞ ⁞ +-- ProjectA | |
| ⁞ ⁞ ⁞ +-- index.md | |
| ⁞ ⁞ +-- ProjectB | |
| ⁞ ⁞ +-- index.md | |
| ⁞ +-- docfx.json | |
| ⁞ +-- toc.yml | |
| +-- src | |
| +-- ProjectA |
OlderNewer