I hereby claim:
- I am mvolfik on github.
- I am mvolfik (https://keybase.io/mvolfik) on keybase.
- I have a public key ASDDaXK1Eg2w4eURSQ3GtP_eu8u4TFM637ckRfvRJg5GZgo
To claim this, I am signing this object:
#include <iostream> | |
#include <memory> | |
class Foo | |
{ | |
private: | |
int i; | |
public: | |
Foo(int i) |
const { Actor } = require("apify"); | |
const { Readable } = require("node:stream"); | |
const https = require("node:https"); | |
class MyStream extends Readable { | |
constructor() { | |
super(); | |
this.i = 0; | |
} |
import { gotScraping } from 'got-scraping'; | |
const fetcher = gotScraping.extend({ | |
proxyUrl: process.env.PROXY_URL, | |
retry: { limit: 3 }, | |
}); | |
async function main() { | |
let baseUrl; | |
try { |
use std::{cell::RefCell, collections::HashMap, rc::Rc}; | |
use js_sys::{Array, Function}; | |
use wasm_bindgen::{ | |
prelude::{wasm_bindgen, Closure}, | |
JsCast, JsValue, | |
}; | |
#[wasm_bindgen] | |
pub struct Writable { |
// ==UserScript== | |
// @name Learningapps.org solver | |
// @namespace https://mvolfik.github.io/ | |
// @version 0.1 | |
// @description Add button to autofill learningapps.org | |
// @author Matěj Volf | |
// @match https://learningapps.org/tools/*/watch?id=* | |
// @downloadUrl https://gist.github.com/mvolfik/af53d9f52825bf1c4911d8536980fb43/raw/liveworksheets.user.js | |
// @updateUrl https://gist.github.com/mvolfik/af53d9f52825bf1c4911d8536980fb43/raw/liveworksheets.user.js | |
// @grant none |
I hereby claim:
To claim this, I am signing this object:
// ==UserScript== | |
// @name Liveworksheets.com solver | |
// @namespace https://mvolfik.github.io/ | |
// @version 0.2 | |
// @description Add button to autofill liveworksheets.com | |
// @author Matěj Volf | |
// @match https://www.liveworksheets.com/* | |
// @downloadUrl https://gist.github.com/mvolfik/5d663fd304c38a872813e0576a58573a/raw/liveworksheets.user.js | |
// @updateUrl https://gist.github.com/mvolfik/5d663fd304c38a872813e0576a58573a/raw/liveworksheets.user.js | |
// @grant none |
import sys, subprocess, tempfile, os.path, warnings | |
A4 = (595, 842) | |
source = sys.argv[1] | |
target = sys.argv[2] | |
pages = None | |
page_size = None |
// ==UserScript== | |
// @name Canvas tweaks | |
// @namespace https://mvolfik.github.io/ | |
// @version 0.4 | |
// @description Try to take over the world! | |
// @author matjey | |
// @match http://i.protab.cz/mazec/live/ | |
// @downloadURL https://gist.githubusercontent.com/mvolfik/bc928b6334edcca9f3049eb9941ea324/raw/canvas_upgrade.user.js | |
// @grant GM_addStyle | |
// @grant unsafeWindow |