.
├── dev-us-east-1.env
├── local_lookups
│ ├── awslambda.py
│ └── __init__.py
├── my_function
│ ├── index.py
This file contains hidden or 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
I, [2015-09-29T11:43:35.284721 #7051] INFO -- Kitchen: -----> Starting Kitchen (v1.4.2) | |
I, [2015-09-29T11:43:36.569206 #7051] INFO -- Kitchen: -----> Creating <winsrvr-windows7>... | |
I, [2015-09-29T11:51:46.488762 #7051] INFO -- Kitchen: -----> Converging <winsrvr-windows7>... | |
E, [2015-09-29T11:54:41.999419 #7051] ERROR -- Kitchen: ------Exception------- | |
E, [2015-09-29T11:54:41.999453 #7051] ERROR -- Kitchen: Class: Kitchen::ActionFailed | |
E, [2015-09-29T11:54:41.999472 #7051] ERROR -- Kitchen: Message: Failed to complete #converge action: [[WinRM::Transport::FileTransporter] Upload failed (exitcode: 2147943401) | |
] | |
E, [2015-09-29T11:54:41.999489 #7051] ERROR -- Kitchen: ---Nested Exception--- | |
E, [2015-09-29T11:54:41.999512 #7051] ERROR -- Kitchen: Class: WinRM::Transport::FileTransporterFailed | |
E, [2015-09-29T11:54:41.999535 #7051] ERROR -- Kitchen: Message: [WinRM::Transport::FileTransporter] Upload failed (exitcode: 2147943401) |
This file contains hidden or 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
--- | |
driver: | |
name: ec2 | |
instance_type: m3.medium | |
spot_price: "0.05" | |
provisioner: | |
name: chef_zero | |
platforms: |
This file contains hidden or 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
#!/bin/bash | |
mkdir lambdatest && cd lambdatest | |
pip3 install elasticsearch requests_aws4auth -t ./ | |
touch __init__.py | |
touch packages/__init__.py | |
cat << EOF > lambdatest.py | |
from packages.elasticsearch import Elasticsearch, RequestsHttpConnection | |
from packages.requests_aws4auth import AWS4Auth |
This file contains hidden or 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 -ru evolution-3.38.3/src/calendar/gui/e-comp-editor.c evolution-3.38.3-patched/src/calendar/gui/e-comp-editor.c | |
--- evolution-3.38.3/src/calendar/gui/e-comp-editor.c 2021-01-08 02:49:31.000000000 -0800 | |
+++ evolution-3.38.3-patched/src/calendar/gui/e-comp-editor.c 2021-02-23 17:39:13.623163055 -0800 | |
@@ -968,6 +968,9 @@ | |
gboolean close_after_save) | |
{ | |
EActivity *activity; | |
+ ECalComponent *comp; | |
+ EShell *shell; | |
+ ESourceRegistry *registry; |
This file contains hidden or 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 -Naur libpod-3.0.1+dfsg1/pkg/api/handlers/compat/auth.go libpod-3.0.1+dfsg1-patched/pkg/api/handlers/compat/auth.go | |
--- libpod-3.0.1+dfsg1/pkg/api/handlers/compat/auth.go 1969-12-31 16:00:00.000000000 -0800 | |
+++ libpod-3.0.1+dfsg1-patched/pkg/api/handlers/compat/auth.go 2021-03-08 15:59:36.566483940 -0800 | |
@@ -0,0 +1,51 @@ | |
+package compat | |
+ | |
+import ( | |
+ "context" | |
+ "encoding/json" | |
+ "fmt" |
The following are my notes on todos/blockers before moving from X11->Wayland (possibly sway):
- Enable screensharing support
- Probably easiest to wait for xdg-desktop-portal-wlr to get packaged instead of manually handling it too:
- https://soyuka.me/make-screen-sharing-wayland-sway-work/
- Test Xwayland apps (e.g. vscode, chromium) running on DPI-scaled displays (currently noticably blurry)
- Test copy/pasting and ensure CRLF line endings aren't being added (^M), e.g.:
- From Firefox (running in wayland) to XWayland app (e.g. gvim)
- From LXTerminal to neovim-gtk
OlderNewer