This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"liveblocksType": "LiveObject", | |
"data": { | |
"mode": "active", | |
"clappingHandsReactions": { | |
"liveblocksType": "LiveList", | |
"data": [ | |
{ | |
"uid": "92d3c9fd-b9a8-4721-a029-e0fd88e5f0bc", | |
"at": "1695539736755", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ docker-compose run --rm maintenance bash setup.sh | |
Creating gc-digital-talent_maintenance_run ... done | |
Installing dependencies from lock file (including require-dev) | |
Verifying lock file contents can be installed on current platform. | |
Package operations: 0 installs, 4 updates, 0 removals | |
- Downloading monolog/monolog (2.6.0) | |
- Downloading league/commonmark (2.3.1) | |
- Downloading laravel/framework (v8.83.12) | |
- Downloading laravel/sail (v1.14.4) | |
- Upgrading monolog/monolog (2.5.0 => 2.6.0): Extracting archive |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs'); | |
const ssri = require('ssri'); | |
const path = require('path'); | |
const npmCachePath = process.env.npm_config_cache; | |
// Get this from npmjs? Not cache? | |
let integritySha512 = 'sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==' | |
let packageName = 'get-caller-file'; | |
let packageVersion = '2.0.5'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git bisect start 2043-lint-fixes f4fcef97cecbefb7a4c1fcfda3f4bcaf553fa88c | |
# known good: f4fcef97cecbefb7a4c1fcfda3f4bcaf553fa88c | |
# known bad: 2043-lint-fixes | |
$ git bisect run bash 1-bisect-test.sh | |
>>> stdout | |
[...] | |
ef5a3f2504e72647af0526a6af093672e65f7a4a is the first bad commit | |
commit ef5a3f2504e72647af0526a6af093672e65f7a4a | |
Author: Patrick Connolly <[email protected]> | |
Date: Sun Feb 20 23:29:58 2022 -0500 |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"statusCode": 200, | |
"type": "rpc", | |
"tid": 3, | |
"ref": false, | |
"action": "MapPageController", | |
"method": "remoteSearch", | |
"result": [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright Datalogics, Inc. 2015 | |
*/ | |
package pdfjt.cookbook.forms; | |
import java.io.InputStream; | |
import java.net.URL; | |
import java.net.URLConnection; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd client-participation/js/strings/ | |
cat en.js \ | |
| grep '^ ' \ | |
| cut -d '"' -f2 \ | |
| xargs -E $'\n' sh -c 'for arg do echo "$arg"; git grep "s\.$arg" ../../ \ | |
| cat; done' > used-strings.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/server/package-lock.json b/server/package-lock.json | |
index f3d300fa..c4b26bb5 100644 | |
--- a/server/package-lock.json | |
+++ b/server/package-lock.json | |
@@ -224,6 +224,11 @@ | |
} | |
} | |
}, | |
+ "abbrev": { | |
+ "version": "1.1.1", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- /tmp/polis-convo01.out 2020-06-05 14:09:11.000000000 -0300 | |
+++ /tmp/polis-convo02.out 2020-06-05 14:08:53.000000000 -0300 | |
@@ -20,15 +20,15 @@ | |
is_data_open | f | |
profanity_filter | t | |
spam_filter | t | |
-strict_moderation | f | |
+strict_moderation | t | |
prioritize_seed | f | |
-vis_type | 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6c6 | |
< var polisUrl = "https://pol.is"; | |
--- | |
> var polisUrl = "https://preprod.pol.is"; | |
101a102 | |
> | |
234,236c235,237 | |
< if (data === "cookieRedirect" && cookiesEnabledAtTopLevel()) {// // temporarily redirect to polis, which will set a cookie and redirect back | |
< window.location = polisUrl + "/api/v3/launchPrep?dest=" + encodeReturnUrl(window.location+""); | |
< } |