Rust 1.77.2 is the last version to support Windows 7.
rustup default 1.77.2
brew install mingw-w64
rustup target add x86_64-pc-windows-gnu
<# | |
.Synopsis | |
Provides access to Windows CredMan basic functionality for client scripts | |
****************** IMPORTANT ****************** | |
* | |
* If you use this script from the PS console, you | |
* should ALWAYS pass the Target, User and Password | |
* parameters using single quotes: | |
* |
// Algorithm by Tom O’Beirne | |
// (1961) Puzzles and Paradoxes. New Scientist, No. 228, p. 829, Table 1 | |
// https://books.google.com/books?id=zfzhCoOHurwC&pg=PA829 | |
// | |
// Implementation in JavaScript by Aldo Fregoso. | |
// Released under public domain without any kind of warranty or support. | |
// | |
function oBeirnesEasterAlgo(x) { | |
assert(x != 0, "Year zero does not exist in the Anno Domini (AD) calendar year system."); | |
if (x <= 1582) { |
# Días de los años 2000 a 2023 en que las entidades financieras sujetas a la | |
# supervisión de la Comisión Nacional Bancaria y de Valores (México) deberán | |
# cerrar sus puertas y suspender operaciones. | |
# | |
# Archivo en formato TOML creado por Aldo Fregoso, publicado como obra de | |
# dominio público y ofrecido sin garantía ni soporte de ningún tipo. | |
# | |
# === | |
# | |
# English: Mexico’s Bank Holidays from 2000 to 2023. |
[package] | |
name = "hello_world" | |
version = "0.1.0" | |
edition = "2021" | |
[profile.dev] | |
panic = "abort" | |
[profile.release] | |
lto = true |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>DisplayProductName</key> | |
<string>Sceptre C355W-3440UN</string> | |
<key>DisplayProductID</key> | |
<integer>3511</integer> | |
<key>DisplayVendorID</key> | |
<integer>19988</integer> |
setTimeout( | |
() => | |
navigator.clipboard.writeText( | |
[...document.getElementById("tablaMovimientos").rows] | |
.filter(({ id, children: [, { innerText: description }] }) => id.startsWith("idexpand") && /\d{3}\s\d{3}\s*$/.test(description)) | |
.map(({ children: [, { innerText: description }, { innerText: amount }] }) => [description, amount].join("\t")) | |
.join("\n") | |
), | |
1000 | |
); |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>local.user-key-mapping</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/bin/hidutil</string> | |
<string>property</string> |
const rocksdb = require('rocksdb'); | |
const valueCallback = resolve => (err, value) => err ? Promise.reject(err) : resolve(value); | |
class RocksDBIterator { | |
constructor(iterator) { | |
this.iterator = iterator; | |
} | |
async end() { |