Filter | Description | Example |
---|---|---|
allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
This file contains 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
var current_date = '2021-04-30'; | |
var date = new Date(current_date+' 00:00:01'); | |
var lastWeek = new Date(date.setDate(date.getDate()-7)); | |
var firstDay = new Date(date.getFullYear(), date.getMonth(), 1); | |
var lastDay = new Date(date.getFullYear(), date.getMonth() + 1, 0); |
This file contains 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 Figma Mouse Wheel Speed Fix | |
// @namespace https://adam.nels.onl | |
// @match https://www.figma.com/* | |
// @grant none | |
// ==/UserScript== | |
// Mouse wheel scrolling in Figma on Firefox + Linux is unbearably slow. | |
// | |
// This script catches all mouse wheel events on the main canvas, |
This file contains 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(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.FlyJsonQL = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){ | |
/* FlyJson v1.11.2 | (c) 2021 M ABD AZIZ ALFIAN | MIT License | https://github.com/aalfiann/fly-json-odm */ | |
"use strict"; | |
/** | |
* Helper class | |
*/ | |
class Help |
This file contains 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
{ | |
"sts_res": "true", | |
"sts_des": "Open Inbox Notification Success", | |
"sts_fal": "inboxnotification", | |
"metadata": { | |
"page_now": 1, | |
"total_page": 2, | |
"record_count": 2, | |
"total_record": 4 | |
}, |
This file contains 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
:root { | |
--image-filter: grayscale(50%); | |
} | |
img:not([src*=".svg"]) { | |
filter: var(--image-filter); | |
} |
This file contains 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
var z1=["https://i.imgur.com/jlsuK7h.gif","https://i.imgur.com/OviMzSp.gif","https://i.imgur.com/WfDsE6u.gif","https://i.imgur.com/xzhiT9r.gif","https://i.imgur.com/m6TPnQE.gif","https://i.imgur.com/0vEcDHa.gif"],z2=["https://i.imgur.com/SucrA8q.gif","https://i.imgur.com/Ohn543u.gif","https://i.imgur.com/eEVLSl1.gif","https://i.imgur.com/PBZrm9r.gif","https://i.imgur.com/27mBXMO.gif","https://i.imgur.com/DA5iugB.gif"],z3=["https://i.imgur.com/mjH3HvH.gif","https://i.imgur.com/ZyDN6e8.gif","https://i.imgur.com/MK3zNnY.gif","https://i.imgur.com/xAxgke3.gif","https://i.imgur.com/XyzfP3n.gif","https://i.imgur.com/DxavF3g.gif"],linktarget="https://datinghererightnow13.com/?u=z8lp60t&o=tfda7xz";function randomItem(t){return Math.floor(Math.random()*t)}function generateADV(t,i){var e=document.createElement("img");e.setAttribute("onclick","window.open('"+linktarget+"')"),e.setAttribute("target","_blank"),e.setAttribute("class","lazyload"),e.setAttribute("style","width:100%;max-width:300px"),e.setAttribute("data-src", |
This file contains 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
var z1 = [ | |
'https://i.imgur.com/jlsuK7h.gif', | |
'https://i.imgur.com/OviMzSp.gif', | |
'https://i.imgur.com/WfDsE6u.gif', | |
'https://i.imgur.com/xzhiT9r.gif', | |
'https://i.imgur.com/m6TPnQE.gif', | |
'https://i.imgur.com/0vEcDHa.gif' | |
]; | |
var z2 = [ |
This file contains 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
const cluster = require('cluster'); | |
const numCPUs = require('os').cpus().length; | |
const fastify = require('fastify')(); | |
const port = 8123; | |
if (cluster.isMaster) { | |
console.log(`Master ${process.pid} is running`); | |
for (let i = 0; i < numCPUs; i++) { | |
cluster.fork(); | |
} |
This file contains 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 removeParam(key, sourceURL) { | |
var rtn = sourceURL.split("?")[0], | |
param, | |
params_arr = [], | |
queryString = (sourceURL.indexOf("?") !== -1) ? sourceURL.split("?")[1] : ""; | |
if (queryString !== "") { | |
params_arr = queryString.split("&"); | |
for (var i = params_arr.length - 1; i >= 0; i -= 1) { | |
param = params_arr[i].split("=")[0]; | |
if (param === key) { |