/[\u0600-\u06ff]|[\u0750-\u077f]|[\ufb50-\ufbc1]|[\ufbd3-\ufd3f]|[\ufd50-\ufd8f]|[\ufd92-\ufdc7]|[\ufe70-\ufefc]|[\uFDF0-\uFDFD]/
Arabic (0600—06FF, 225 characters)
Arabic Supplement (0750—077F, 48 characters)| import http from 'k6/http'; | |
| import { check, sleep } from 'k6'; | |
| export const URL = 'https://test.k6.io'; | |
| export default function () { | |
| let res = http.get(URL); | |
| check(res, { | |
| 'resource returns status 200': (r) => r.status === 200, | |
| }); |
extension_id=jifpbeccnghkjeaalbbjmodiffmgedin # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc"
unzip -d "$extension_id-source" "$extension_id.zip"Thx to crxviewer for the magic download URL.
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| const newman = require('newman'); | |
| newman.run({ | |
| collection: require('./postman_collection.json'), | |
| reporters: 'cli' | |
| }).on('beforeRequest', function (error, args) { | |
| if (error) { | |
| console.error(error); | |
| } else { | |
| // Log the request body |
| const data = `<Foo> | |
| <Bar baz='17'>textvalue</Bar> | |
| <Baz>hello,world</Baz> | |
| </Foo>`; | |
| const xmldom = require('@xmldom/xmldom'), | |
| DOMParser = xmldom.DOMParser, | |
| xpath = require('xpath'), | |
| doc = new DOMParser().parseFromString(data), | |
| attr = xpath.select('/Foo/Bar/@baz', doc)[0], |
This novel workaround simply hides any command log entries that originate from fetch/XHR requests.
While I've updated this receipe for Cypress 10 and converted it to TypeScript you should be able to use it in a JavaScript project by ignoring the cypress.d.ts file and placing the snippet from e2e.ts in e2e.js instead.
This novel workaround simply hides any command log entries that originate from fetch/XHR requests.
While I've updated this receipe for Cypress 10 and converted it to TypeScript you should be able to use it in a JavaScript project by ignoring the cypress.d.ts file and placing the snippet from e2e.ts in e2e.js instead.
| namespace Vurdalakov | |
| { | |
| using Microsoft.Win32; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Globalization; | |
| using System.Runtime.InteropServices; | |
| public class KeyboardLayout |
| # Sets the default input method for the user to Dvorak with the most-preferred | |
| # locale currently active | |
| # Author: Lilac Kapul <lilac@enby.ninja> | |
| # Copyright (c) 2020 Lilac Kapul | |
| # License: MIT | |
| ##################### | |
| # BEGIN PREFERENCES # | |
| ##################### |