You will need Android Debug Bridge
Display -> Customise Home
- Turn off "Display Google app"
- Turn off "Display Google Search Widget"
// Note this goes in /usr/lib/firefox/defaults/pref/autoconfig.js | |
pref("general.config.filename", "firefox.js"); | |
pref("general.config.obscure_value", 0); | |
pref("general.config.sandbox_enabled", false); |
You will need Android Debug Bridge
Display -> Customise Home
// Zed keymap | |
// | |
// For information on binding keys, see the Zed | |
// documentation: https://zed.dev/docs/key-bindings | |
// | |
// To see the default key bindings run `zed: open default keymap` | |
// from the command palette. | |
[ | |
{ | |
"context": "Workspace", |
const { parse } = require('date-fns'); | |
const { JSDOM } = require('jsdom'); | |
const { writeFileSync } = require('fs'); | |
async function main() { | |
const outputFile = 'output.json'; | |
const outputData = []; | |
for (let i = 1; i <= 10; i++) { | |
const res = await fetch(`https://www.gamespot.com/profile/reviews/?page=${i}`, { | |
"credentials": "include", |
FROM amazonlinux | |
ENV VERSION="8.9.4" | |
ENV NVM_DIR="/root/.nvm" | |
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash \ | |
&& [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" \ | |
&& nvm install $VERSION | |
ENV PATH="${NVM_DIR}/versions/node/v${VERSION}/bin:${PATH}" | |
WORKDIR /var/task |
/* | |
MiniKoa ^.^ | |
- In the real Koa, the module Koa-composer takes on the recursive behaviour. | |
- This still works with async functions because await will automatically convert resolved values into promises. | |
- The most notable difference of course is that this doesn't respond to an http request instead it just runs instantly with whatever context object you give it. | |
*/ | |
class MiniKoa { | |
constructor() { | |
this.middleware = []; |