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
From Chrome Browser | |
Graphics Feature Status | |
Canvas: Hardware accelerated | |
Flash: Hardware accelerated | |
Flash Stage3D: Hardware accelerated | |
Flash Stage3D Baseline profile: Hardware accelerated | |
Compositing: Hardware accelerated | |
Multiple Raster Threads: Enabled | |
Native GpuMemoryBuffers: Software only. Hardware acceleration disabled |
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
[ | |
"postMessage", | |
"blur", | |
"focus", | |
"close", | |
"parent", | |
"opener", | |
"top", | |
"length", | |
"frames", |
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
// Wallet is a great app to track your expenses | |
// I just didn't want to buy premium subscription just to export my own data :shrug: | |
// First follow this gist to export all the data in indexeddb to console | |
// https://gist.github.com/harryi3t/d8779d3c0c0c4d41c37fdde81b268fd3 | |
// I will be assuming from here on that the the entire data is in a variable `data` | |
// All the transactions are store in the table 'by-sequence' | |
let sequence = data[2]['by-sequence']; |
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
// Use the latest version of your web-browser | |
// Tested on chrome 72 | |
// A function to inject scripts in the current webpage | |
async function injectScript (url) { | |
return new Promise((resolve) => { | |
let script = document.createElement('script'); | |
script.type = 'text/javascript'; | |
script.async = true; | |
script.onload = function(){ |
This file has been truncated, but you can view the full file.
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
require=(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){ | |
module.exports = { | |
trueFunc: function trueFunc(){ | |
return true; | |
}, | |
falseFunc: function falseFunc(){ | |
return false; | |
} | |
}; | |
},{}],2:[function(require,module,exports){ |
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
openapi: "3.0.0" | |
info: | |
version: 1.0.0 | |
title: Swagger Petstore | |
license: | |
name: MIT | |
servers: | |
- url: http://petstore.swagger.io/v1 | |
paths: | |
/pets: |
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
hello |
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
/** | |
** Postman as of the date of this writing does not support auto-refreshing of Oauth-2 tokens. | |
** This is an exmaple on how in one can refresh their Oauth-2 tokens just using the pre-request scripts. | |
** Pre-requisites: You need to have a refresh token. You can use the Postman app to get one. | |
**/ | |
// Set all these variables in an environment or at collection level | |
let tokenUrl = pm.variables.get('tokenUrl'), | |
clientId = pm.variables.get('clientId'), | |
clientSecret = pm.variables.get('clientSecret'), |
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 Benchmark = require('benchmark'), | |
suite = new Benchmark.Suite; | |
var x = new Array(20).fill(0); | |
// add tests | |
suite.add('test 1', function() { | |
// your code here | |
}) | |
suite.add('test 2', function() { |
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
#/bin/bash | |
TOKEN='put your token here. Get a new from https://api.slack.com/docs/oauth-test-tokens' | |
dbus-monitor --session type='signal',interface='com.canonical.Unity.Session' | while true | |
do | |
read x | |
if echo "$x" | grep -q Locked; then | |
echo "set yourself away at $(date)" | |
curl -X GET -H "Cache-Control: no-cache" "https://slack.com/api/users.setPresence?token=$TOKEN&presence=away" |