Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| pragma solidity >=0.5.0; | |
| interface IBakerySwapFactory { | |
| event PairCreated(address indexed token0, address indexed token1, address pair, uint256); | |
| function feeTo() external view returns (address); | |
| function feeToSetter() external view returns (address); | |
| function getPair(address tokenA, address tokenB) external view returns (address pair); |
| # Add a bookmark to your bar, pop this JS one-liner in the URL field. | |
| # Click it when you need to make a light site into a dark-mode one. | |
| # Give your eyes a break :) | |
| javascript:!function(){let e="html {-webkit-filter: invert(100%);-moz-filter: invert(100%);-o-filter: invert(100%);-ms-filter: invert(100%); }",t=document.getElementsByTagName("head")[0],i=document.createElement("style");window.counter?(window.counter++,window.counter%2==0&&(e="html { -webkit-filter: invert(0%); -moz-filter: invert(0%); -o-filter: invert(0%); -ms-filter: invert(0%); }")):window.counter=1,i.type="text/css",i.styleSheet?i.styleSheet.cssText=e:i.appendChild(document.createTextNode(e)),t.appendChild(i)}(); | |
| # Formatted, there is no bad intent |
| DELIMITER $$ | |
| CREATE FUNCTION `json_extract`(`details` TEXT, `required_field` VARCHAR(255)) RETURNS text CHARSET utf8mb4 | |
| BEGIN | |
| RETURN TRIM( | |
| BOTH '"' FROM SUBSTRING_INDEX( | |
| SUBSTRING_INDEX( | |
| SUBSTRING_INDEX( | |
| details, | |
| CONCAT( | |
| '"', |
| // Implementation in ES6 | |
| function pagination(c, m) { | |
| var current = c, | |
| last = m, | |
| delta = 2, | |
| left = current - delta, | |
| right = current + delta + 1, | |
| range = [], | |
| rangeWithDots = [], | |
| l; |
| /** | |
| * Simple localStorage with Cookie Fallback | |
| * v.1.0.0 | |
| * | |
| * USAGE: | |
| * ---------------------------------------- | |
| * Set New / Modify: | |
| * store('my_key', 'some_value'); | |
| * | |
| * Retrieve: |
| function toJSON(node) { | |
| node = node || this; | |
| var obj = { | |
| nodeType: node.nodeType | |
| }; | |
| if (node.tagName) { | |
| obj.tagName = node.tagName.toLowerCase(); | |
| } else | |
| if (node.nodeName) { | |
| obj.nodeName = node.nodeName; |
| Adyen Test Card Numbers | |
| These cards are only valid on our TEST system and they will never involve any actual transaction or transfer of funds. The TEST card numbers will not work on the Adyen LIVE Platform. | |
| For all cards use the following expiration and CVV2/CVC2/or CID for Amex. | |
| For all cards: | |
| Expiration Dates CVV2 / CVC3 CID (American Express) | |
| 06/2016 OR 08/2018 737 7373 |
| [ { | |
| "ID": 13, | |
| "Name": "Wrap", | |
| "Move Type": "Charge", | |
| "Animation ID": 5, | |
| "Type": "Normal", | |
| "Power": 15, | |
| "Accuracy Chance": 1, | |
| "Stamina Loss Scalar": 0.06, | |
| "Trainer Level Min": 1, |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Web; | |
| using Umbraco.Core; | |
| namespace Meh.App_Code | |
| { | |
| public class ChangeMenu : ApplicationEventHandler | |
| { |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.