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
javascript:location.href='pocket:Add?Data='+encodeURIComponent('{"Items":[{"Uri":"'+location.href+'"}]}'); |
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
// your items | |
public ObservableCollection<Item> Items { get; set; } | |
// your items per page | |
private int _bufferSize = 15; | |
// populate the Items member | |
public async Task UpdateLists(int page = 0) | |
{ |
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.Linq; | |
using System.Threading.Tasks; | |
using System.Windows; | |
using Windows.Foundation; | |
using Windows.Phone.Speech.Synthesis; | |
namespace Utilities | |
{ | |
public class SpeechUtility : IDisposable |
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 precision($value, $precision) | |
{ | |
$base: 10; | |
$divisor: 1; | |
@for $i from 1 through $precision | |
{ | |
$divisor: $divisor * $base; | |
} |
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
/** | |
* Fetches a meta (+ open graph) attribute from HTML | |
* | |
* @returns value The request content of the meta tag (nullable) | |
*/ | |
var getMetaAttribute = function( attribute ) | |
{ | |
var key = null; | |
var value = null; | |
var meta = document.getElementsByTagName('meta'); |
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
# ========================= | |
# Project | |
# ========================= | |
## Ignore Visual Studio temporary files, build results, and files generated by popular Visual Studio add-ons. | |
# User-specific files | |
*.suo | |
*.user | |
*.sln.docstates |
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
[ | |
"01.01.2013", | |
"06.01.2013", | |
"29.03.2013", | |
"01.04.2013", | |
"01.05.2013", | |
"09.05.2013", | |
"20.05.2013", | |
"30.05.2013", | |
"15.08.2013", |
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
/* Empty Elements */ | |
div:empty, span:empty, li:empty, p:empty, td:empty, th:empty | |
{ padding: 20px; border: 5px dotted yellow !important; } | |
/* Empty Attributes */ | |
*[alt=""], *[title=""], *[class=""], *[id=""], a[href=""], a[href="#"] | |
{ border: 5px solid yellow !important; } | |
/* Deprecated Elements */ | |
applet, basefont, center, dir, font, isindex, menu, s, strike, u |
NewerOlder