I hereby claim:
- I am noahm on github.
- I am noahm (https://keybase.io/noahm) on keybase.
- I have a public key whose fingerprint is 0C74 EB0F 7D6A A7B5 DB92 3444 2D5F D1FC A5EA 4381
To claim this, I am signing this object:
// ==UserScript== | |
// @name Disable GWJ editor keyboard shortcuts | |
// @description Avoids frustration while composing a post | |
// @author Noah Manneschmidt | |
// @namespace gamerswithjobs | |
// @include http://www.gamerswithjobs.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== |
using System; | |
using System.Text.RegularExpressions; | |
class Program | |
{ | |
static void Main() | |
{ | |
// Input string. | |
const string example = "Name:\r\n\r\nEmail: [email protected]\r\n\r\nPhone: 333-343-0909\r\n\r\n"; |
package Tribunal; | |
import java.io.BufferedReader; | |
import java.io.File; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.net.URL; | |
import java.net.URLConnection; | |
import java.util.ArrayList; |
Index: /src/stl_logging_unittest.cc | |
=================================================================== | |
--- /src/stl_logging_unittest.cc (revision 136) | |
+++ /src/stl_logging_unittest.cc (working copy) | |
@@ -31,17 +31,20 @@ | |
#ifdef HAVE_USING_OPERATOR | |
-#ifdef __GNUC__ | |
+#include <iostream> |
I hereby claim:
To claim this, I am signing this object:
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("gamerswithjobs.devcloud.acquia-sites.com") { | |
body { | |
font-size: initial; | |
/* Don't, don't, DON'T hard-code font size. All browsers default to 16px anyway. | |
Anyone changing the default will be doing so for good reason. */ | |
} | |
#header #logo { |
yarn test --json --outputFile=testResult.json | |
jq -r ".testResults | map(select(.status == \"failed\"))[].name" testResult.json | sort | colrm 1 `pwd | wc -c` |
type ArraysOfEachProperty<T> = { | |
[Property in keyof T]: Array<T[Property]>; | |
} | |
function fieldArrsToObjs<T extends {}>(arrs: ArraysOfEachProperty<T>): Array<T> { | |
const ret: T[] = []; | |
Object.entries(arrs).forEach(([key, values]) => { | |
(values as unknown[]).forEach((value, idx) => { | |
if (!ret[idx]) { | |
// @ts-expect-error |
The package that linked you here is now pure ESM. It cannot be require()
'd from CommonJS.
This means you have the following choices:
import foo from 'foo'
instead of const foo = require('foo')
to import the package. You also need to put "type": "module"
in your package.json and more. Follow the below guide.await import(…)
from CommonJS instead of require(…)
.