Shortcut Key | Definition |
---|---|
g then i | Go to Inbox |
g then a | Go to All Tasks |
g then t | Go to Today |
g then o | Go to Tomorrow |
g then w | Go to This Week |
g then v | Go to Given to others |
This file has been truncated, but you can view the full file.
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
[ | |
{ | |
"0001": [ | |
{ | |
"user": { | |
"id": "16sua", | |
"name": "16sua", | |
"passwordHash": "...", | |
"token": "..." | |
} |
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
http://www.hqhole.com | |
http://www.hdsexdino.com | |
http://pornbigvideo.com/ | |
http://www.sweetshow.com | |
http://mylust.com/ | |
https://www.sleazyneasy.com | |
http://www.sexpulse.tv | |
http://www.sexmole.com | |
www.spankbang.com/ | |
http://spankbang.com/ |
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
345 |
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
// ==UserScript== | |
// @name DeleteAdsOnFishki.net | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://fishki.net/ | |
// @run-at document-idle | |
// @grant none | |
// @require https://code.jquery.com/jquery-3.4.1.min.js |
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
error_reporting(E_ALL); ini_set('display_errors', 1); | |
define( 'WP_DEBUG', true); |
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
[global_config] | |
[keybindings] | |
[layouts] | |
[[default]] | |
[[[child1]]] | |
parent = window0 | |
type = Terminal | |
[[[window0]]] | |
parent = "" | |
type = Window |
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
# Инструкция по перепрограммированию клавиш: | |
Шаг 1. Выберите слой (Fn+;,: или - клавиша) для которой вы хотите перепрограммировать клавиши. | |
Шаг 2. Нажмите Fn + Правый CTRL для того чтобы зайти в режим программирования (Свет под пробелом должен продолжать гореть постоянно) | |
Шаг 3. Выберите клавишу, которую вы хотите перепрограммировать (Свет под пробелом будет моргать) | |
Шаг 4. Выберите клавишу, на которую вы хотите заменить и потом нажмите PN/Menu(Свет под пробелом должен продолжать гореть постоянно) | |
Шаг 5. Повторите шаг 2 и шаг 3 для программирования других клавиш. | |
Шаг 6. Нажмите Fn + Правый CTRL для того чтобы выйти и режима программирования (Свет под пробелом должен погаснуть) | |
# Для ускорения, мои сочетания | |
``` Fn + RCtrl -> (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
Text\n(^((?!Should).)*)$ |
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
#Before | |
@Test | |
public void myTest() { | |
Foo foo = new Foo(); | |
test.apply(foo); | |
assertEquals(BigInteger.ONE, test.result()); | |
} | |
#After | |
@Test | |
public void myTest() { |