[12:23:37.862] Remote server is listening on 34409
[12:23:37.862] Parsed server configuration: {"serverConfiguration":{"remoteListeningOn":{"port":34409},"osReleaseId":"alpine","arch":"x86_64","webUiAccessToken":"","sshAuthSock":"","display":"","tmpDir":"/tmp","platform":"linux","connectionToken":"111aa111-11a1-1a1a-11aa-111a1aaaa11a"},"serverStartTime":0,"installUnpackCode":""}
[12:23:37.864] Persisting server connection details to /home/aok-1/.config/Code/User/globalStorage/ms-vscode-remote.remote-ssh/vscode-ssh-host-80186c9a-f80445acd5a3dadef24aa209168452a3d97cc326-0.75.2022022515/data.json
[12:23:37.869] Starting forwarding server. localPort 43945 -> socksPort 39873 -> remotePort 34409
[12:23:37.870] Forwarding server listening on 43945
[12:23:37.870] Waiting for ssh tunnel to be ready
[12:23:37.872] [Forwarding server 43945] Got connection 0
[12:23:37.875] Tunneled 34409 to local port 43945
[12:23:37.876] Resolved "ssh-remote+godev" to "127.0.0.1:43945"
[12:23:37.892] ------
[12:23:37.894] Failed to set up socket for dynamic port forward to remote port 34409: Socket closed. Is the remote port correct?
[12:23:37.933] [Forwarding server 43945] Got connection 1
[12:23:37.936] Failed to set up socket for dynamic port forward to remote port 34409: Socket closed. Is the remote port correct?
Hey guys,
I need to use remote-ssh to connect to my organisation servers. However, I am facing a kind of two steps connection, where "ssh username@organisationName" + password brings me to a first platform which then asks me for the machine on which I want to connect.
When connecting through a terminal, it works well. However, if I want to do it with remote-ssh, as soon as I arrive on that first plateforme, vscode tries to install its remote applications.
How can I make remote-ssh to pause its installation until I select the machine on which I want to go and provide the server my password ?
thx =)
Is there a way to sort of exclude or "externalize" some setting from settings.json? I have set up my settings.json to be auto-synced with my Nextcloud, so I have the same settings on multiple devices. Now, I switch light and dark themes on my systems multiple times during the day, which also changes the theme setting in settings.json every time. so a new version will get uploaded to Nextcloud everytime.
Sometimes this results in a conflicted file, because I switched themes back and forth too fast, or whatever. So I was thinking of whether I can say something like "workbench.colorTheme": {"source": "/home/me/.config/vscode/workbench.colorTheme.json"} which will then be excluded from Nextcloud sync.
button.foreground in WebView
Theme colors are available as CSS variables in webviews, and an extension is available which provides IntelliSense for them.
Found it
globalThis.onunhandledrejection = event => {
console.log(event.promise);
console.log(event.reason); // get the rejection reason
};strace -f -o strace.txt -s 400000 -e trace=write codium is enough for my purposes
grep Content-Length strace.txt -A1 to get the requests and responses, a bit hacky but works for me
features option in devcontainers, and when I put git: latest there, it compiles it from source, which is insanely slow and impractical IMO. Any idea why this is the case? I will default to custom startup script but just wondering why compiling from source makes sense.
vscode isort and pre-commit hook question. I have this settings config
"python.sortImports.args": [
"--profile",
"black",
"--filter-files",
"--force-grid-wrap",
"--remove-redundant-aliases"
],and this pre-commit config
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
args:
[
"--profile",
"black",
"--filter-files",
"--force-grid-wrap",
"--remove-redundant-aliases",
]i would have expected imports sorted at file save not to be modified by the pre-commit. but I have few cases where this is happening. any idea how to troubleshoot or what could be the cause?