02:01 31.03.2026 yedek
This commit is contained in:
4
Code/User/History/78d1adf2/Yh87.json
Normal file
4
Code/User/History/78d1adf2/Yh87.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"window.autoDetectColorScheme": true,
|
||||
"workbench.preferredDarkColorTheme": "Visual Studio Dark - C++"
|
||||
}
|
||||
1
Code/User/History/78d1adf2/entries.json
Normal file
1
Code/User/History/78d1adf2/entries.json
Normal file
@@ -0,0 +1 @@
|
||||
{"version":1,"resource":"vscode-userdata:/home/y1lm0z/.config/Code/User/settings.json","entries":[{"id":"Yh87.json","timestamp":1774903888972}]}
|
||||
1
Code/User/chatLanguageModels.json
Normal file
1
Code/User/chatLanguageModels.json
Normal file
@@ -0,0 +1 @@
|
||||
[]
|
||||
@@ -0,0 +1 @@
|
||||
{"kind":0,"v":{"version":3,"creationDate":1774903678140,"initialLocation":"panel","responderUsername":"","sessionId":"82b474a9-8722-46e9-adc2-6a5835457148","hasPendingEdits":false,"requests":[],"pendingRequests":[],"inputState":{"attachments":[],"mode":{"id":"agent","kind":"agent"},"inputText":"","selections":[{"startLineNumber":1,"startColumn":1,"endLineNumber":1,"endColumn":1,"selectionStartLineNumber":1,"selectionStartColumn":1,"positionLineNumber":1,"positionColumn":1}],"contrib":{"chatDynamicVariableModel":[]}}}}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"environment": {
|
||||
"executable": "/usr/bin/python3",
|
||||
"prefix": "/usr",
|
||||
"version": "3.14.3.final.0",
|
||||
"is64Bit": true,
|
||||
"symlinks": [
|
||||
"/usr/bin/python3"
|
||||
]
|
||||
},
|
||||
"symlinks": [
|
||||
[
|
||||
"/usr/bin/python3",
|
||||
{
|
||||
"secs_since_epoch": 1770163200,
|
||||
"nanos_since_epoch": 0
|
||||
},
|
||||
null
|
||||
]
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"environment": {
|
||||
"executable": "/usr/bin/python",
|
||||
"prefix": "/usr",
|
||||
"version": "3.14.3.final.0",
|
||||
"is64Bit": true,
|
||||
"symlinks": [
|
||||
"/usr/bin/python",
|
||||
"/usr/bin/python3",
|
||||
"/usr/bin/python3.14"
|
||||
]
|
||||
},
|
||||
"symlinks": [
|
||||
[
|
||||
"/usr/bin/python",
|
||||
{
|
||||
"secs_since_epoch": 1770163200,
|
||||
"nanos_since_epoch": 0
|
||||
},
|
||||
null
|
||||
],
|
||||
[
|
||||
"/usr/bin/python3",
|
||||
{
|
||||
"secs_since_epoch": 1770163200,
|
||||
"nanos_since_epoch": 0
|
||||
},
|
||||
null
|
||||
],
|
||||
[
|
||||
"/usr/bin/python3.14",
|
||||
{
|
||||
"secs_since_epoch": 1770163200,
|
||||
"nanos_since_epoch": 0
|
||||
},
|
||||
null
|
||||
]
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"environment": {
|
||||
"executable": "/usr/bin/python3.14",
|
||||
"prefix": "/usr",
|
||||
"version": "3.14.3.final.0",
|
||||
"is64Bit": true,
|
||||
"symlinks": [
|
||||
"/usr/bin/python3.14"
|
||||
]
|
||||
},
|
||||
"symlinks": [
|
||||
[
|
||||
"/usr/bin/python3.14",
|
||||
{
|
||||
"secs_since_epoch": 1770163200,
|
||||
"nanos_since_epoch": 0
|
||||
},
|
||||
null
|
||||
]
|
||||
]
|
||||
}
|
||||
88
Code/User/globalStorage/ms-python.python/pythonrc.py
Normal file
88
Code/User/globalStorage/ms-python.python/pythonrc.py
Normal file
@@ -0,0 +1,88 @@
|
||||
import platform
|
||||
import sys
|
||||
|
||||
if sys.platform != "win32":
|
||||
import readline
|
||||
|
||||
original_ps1 = ">>> "
|
||||
is_wsl = "microsoft-standard-WSL" in platform.release()
|
||||
|
||||
|
||||
class REPLHooks:
|
||||
def __init__(self):
|
||||
self.global_exit = None
|
||||
self.failure_flag = False
|
||||
self.original_excepthook = sys.excepthook
|
||||
self.original_displayhook = sys.displayhook
|
||||
sys.excepthook = self.my_excepthook
|
||||
sys.displayhook = self.my_displayhook
|
||||
|
||||
def my_displayhook(self, value):
|
||||
if value is None:
|
||||
self.failure_flag = False
|
||||
|
||||
self.original_displayhook(value)
|
||||
|
||||
def my_excepthook(self, type_, value, traceback):
|
||||
self.global_exit = value
|
||||
self.failure_flag = True
|
||||
|
||||
self.original_excepthook(type_, value, traceback)
|
||||
|
||||
|
||||
def get_last_command():
|
||||
# Get the last history item
|
||||
last_command = ""
|
||||
if sys.platform != "win32":
|
||||
last_command = readline.get_history_item(readline.get_current_history_length())
|
||||
|
||||
return last_command
|
||||
|
||||
|
||||
class PS1:
|
||||
hooks = REPLHooks()
|
||||
sys.excepthook = hooks.my_excepthook
|
||||
sys.displayhook = hooks.my_displayhook
|
||||
|
||||
# str will get called for every prompt with exit code to show success/failure
|
||||
def __str__(self):
|
||||
exit_code = int(bool(self.hooks.failure_flag))
|
||||
self.hooks.failure_flag = False
|
||||
# Guide following official VS Code doc for shell integration sequence:
|
||||
result = ""
|
||||
# For non-windows allow recent_command history.
|
||||
if sys.platform != "win32":
|
||||
result = "{soh}{command_executed}{command_line}{command_finished}{prompt_started}{stx}{prompt}{soh}{command_start}{stx}".format(
|
||||
soh="\001",
|
||||
stx="\002",
|
||||
command_executed="\x1b]633;C\x07",
|
||||
command_line="\x1b]633;E;" + str(get_last_command()) + "\x07",
|
||||
command_finished="\x1b]633;D;" + str(exit_code) + "\x07",
|
||||
prompt_started="\x1b]633;A\x07",
|
||||
prompt=original_ps1,
|
||||
command_start="\x1b]633;B\x07",
|
||||
)
|
||||
else:
|
||||
result = "{command_finished}{prompt_started}{prompt}{command_start}{command_executed}".format(
|
||||
command_finished="\x1b]633;D;" + str(exit_code) + "\x07",
|
||||
prompt_started="\x1b]633;A\x07",
|
||||
prompt=original_ps1,
|
||||
command_start="\x1b]633;B\x07",
|
||||
command_executed="\x1b]633;C\x07",
|
||||
)
|
||||
|
||||
# result = f"{chr(27)}]633;D;{exit_code}{chr(7)}{chr(27)}]633;A{chr(7)}{original_ps1}{chr(27)}]633;B{chr(7)}{chr(27)}]633;C{chr(7)}"
|
||||
|
||||
return result
|
||||
|
||||
def __repr__(self):
|
||||
return "<Custom PS1 for VS Code Python Shell Integration>"
|
||||
|
||||
|
||||
if sys.platform != "win32" and (not is_wsl):
|
||||
sys.ps1 = PS1()
|
||||
|
||||
if sys.platform == "darwin":
|
||||
print("Cmd click to launch VS Code Native REPL")
|
||||
else:
|
||||
print("Ctrl click to launch VS Code Native REPL")
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"environment": {
|
||||
"executable": "/usr/bin/python3",
|
||||
"prefix": "/usr",
|
||||
"version": "3.14.3.final.0",
|
||||
"is64Bit": true,
|
||||
"symlinks": [
|
||||
"/usr/bin/python3"
|
||||
]
|
||||
},
|
||||
"symlinks": [
|
||||
[
|
||||
"/usr/bin/python3",
|
||||
{
|
||||
"secs_since_epoch": 1770163200,
|
||||
"nanos_since_epoch": 0
|
||||
},
|
||||
null
|
||||
]
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"environment": {
|
||||
"executable": "/usr/bin/python",
|
||||
"prefix": "/usr",
|
||||
"version": "3.14.3.final.0",
|
||||
"is64Bit": true,
|
||||
"symlinks": [
|
||||
"/usr/bin/python",
|
||||
"/usr/bin/python3",
|
||||
"/usr/bin/python3.14"
|
||||
]
|
||||
},
|
||||
"symlinks": [
|
||||
[
|
||||
"/usr/bin/python",
|
||||
{
|
||||
"secs_since_epoch": 1770163200,
|
||||
"nanos_since_epoch": 0
|
||||
},
|
||||
null
|
||||
],
|
||||
[
|
||||
"/usr/bin/python3",
|
||||
{
|
||||
"secs_since_epoch": 1770163200,
|
||||
"nanos_since_epoch": 0
|
||||
},
|
||||
null
|
||||
],
|
||||
[
|
||||
"/usr/bin/python3.14",
|
||||
{
|
||||
"secs_since_epoch": 1770163200,
|
||||
"nanos_since_epoch": 0
|
||||
},
|
||||
null
|
||||
]
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"environment": {
|
||||
"executable": "/usr/bin/python3.14",
|
||||
"prefix": "/usr",
|
||||
"version": "3.14.3.final.0",
|
||||
"is64Bit": true,
|
||||
"symlinks": [
|
||||
"/usr/bin/python3.14"
|
||||
]
|
||||
},
|
||||
"symlinks": [
|
||||
[
|
||||
"/usr/bin/python3.14",
|
||||
{
|
||||
"secs_since_epoch": 1770163200,
|
||||
"nanos_since_epoch": 0
|
||||
},
|
||||
null
|
||||
]
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
#!/bin/sh
|
||||
script_file=$0
|
||||
while [ -h "$script_file" ]; do
|
||||
script_file=$(readlink $script_file)
|
||||
done
|
||||
basedir=$(dirname "$(echo "$script_file" | sed -e 's,\\,/,g')")
|
||||
|
||||
# This file is placed in a stable (version-independent) location
|
||||
# and forwards to the currently installed version
|
||||
|
||||
# WSL detection borrowed from VS Code
|
||||
IN_WSL=false
|
||||
if [ -n "$WSL_DISTRO_NAME" ]; then
|
||||
# $WSL_DISTRO_NAME is available since WSL builds 18362, also for WSL2
|
||||
IN_WSL=true
|
||||
else
|
||||
WSL_BUILD=$(uname -r | sed -E 's/^[0-9.]+-([0-9]+)-Microsoft.*|.*/\1/')
|
||||
if [ -n "$WSL_BUILD" ]; then
|
||||
IN_WSL=true
|
||||
fi
|
||||
fi
|
||||
VSCODE_PATH=$(cat "$basedir/vscode-path")
|
||||
DEVCONTAINER_CLI_PATH=$script_file
|
||||
REMOTE_CONTAINERS_PATH=
|
||||
if [ -f "$basedir/remote-containers-path" ]; then
|
||||
REMOTE_CONTAINERS_PATH=$(cat "$basedir/remote-containers-path")
|
||||
if [ $IN_WSL = true ]; then
|
||||
REMOTE_CONTAINERS_PATH=$(wslpath -u $REMOTE_CONTAINERS_PATH)
|
||||
fi
|
||||
if [ ! -f "$REMOTE_CONTAINERS_PATH/dev-containers-user-cli/cli.js" ]; then
|
||||
REMOTE_CONTAINERS_PATH=
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -z "$REMOTE_CONTAINERS_PATH" ]; then
|
||||
echo "Failed to determine Dev Containers path"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ $IN_WSL = true ]; then
|
||||
export WSLENV="ELECTRON_RUN_AS_NODE/w:DEVCONTAINER_CLI_PATH/p:IN_WSL:WSL_DISTRO_NAME:$WSLENV"
|
||||
CLI=$(wslpath -m "$REMOTE_CONTAINERS_PATH/dev-containers-user-cli/cli.js")
|
||||
ELECTRON=$(wslpath -u "$VSCODE_PATH")
|
||||
|
||||
# TODO - piping to `cat` is a temporary workaround for the CRLF->LF conversion
|
||||
# that occurs when calling Windows Electron binary from WSL
|
||||
IN_WSL=$IN_WSL DEVCONTAINER_CLI_PATH="$DEVCONTAINER_CLI_PATH" ELECTRON_RUN_AS_NODE=1 "$ELECTRON" "$CLI" "$@" | cat
|
||||
exit $?
|
||||
else
|
||||
ELECTRON="$VSCODE_PATH"
|
||||
CLI=$REMOTE_CONTAINERS_PATH/dev-containers-user-cli/cli.js
|
||||
DEVCONTAINER_CLI_PATH="$DEVCONTAINER_CLI_PATH" ELECTRON_RUN_AS_NODE=1 "$ELECTRON" "$CLI" "$@"
|
||||
exit $?
|
||||
fi
|
||||
@@ -0,0 +1,37 @@
|
||||
@echo off
|
||||
@REM This file is placed in a stable (version-independent) location
|
||||
@REM and forwards to the currently installed version
|
||||
|
||||
setlocal
|
||||
SET DEVCONTAINER_CLI_PATH=%~f0
|
||||
SET VSCODE_PATH=
|
||||
|
||||
:vscode_path
|
||||
@REM Load the Code.exe path
|
||||
IF NOT exist "%~dp0vscode-path%" goto fail_vscode_path
|
||||
set /p VSCODE_PATH=<"%~dp0vscode-path%"
|
||||
IF exist "%VSCODE_PATH%" goto remote_container_path
|
||||
|
||||
:fail_vscode_path
|
||||
echo Failed to determine VS Code path
|
||||
exit 1
|
||||
|
||||
:remote_container_path
|
||||
|
||||
SET REMOTE_CONTAINERS_PATH=
|
||||
|
||||
@REM Check the remote-containers-path file
|
||||
@REM This is a cache (and enables Dev Containers development)
|
||||
IF NOT exist "%~dp0remote-containers-path%" goto fail_remote_container_path
|
||||
set /p REMOTE_CONTAINERS_PATH=<"%~dp0remote-containers-path%"
|
||||
IF exist "%REMOTE_CONTAINERS_PATH%\dev-containers-user-cli\cli.js" goto forwardcall
|
||||
|
||||
:fail_remote_container_path
|
||||
echo Failed to determine Dev Containers path
|
||||
exit 1
|
||||
|
||||
:forwardcall
|
||||
set ELECTRON_RUN_AS_NODE=1
|
||||
"%VSCODE_PATH%" "%REMOTE_CONTAINERS_PATH%\dev-containers-user-cli\\cli.js" %*
|
||||
|
||||
endlocal
|
||||
@@ -0,0 +1 @@
|
||||
/home/y1lm0z/.vscode/extensions/ms-vscode-remote.remote-containers-0.447.0
|
||||
@@ -0,0 +1 @@
|
||||
/usr/share/code/resources/app
|
||||
@@ -0,0 +1 @@
|
||||
d060eb0922916b4c336f750e52abe10ecb910b1ddcea62c9af7c5819f1e9421c
|
||||
@@ -0,0 +1 @@
|
||||
/usr/share/code/code
|
||||
@@ -0,0 +1 @@
|
||||
stable
|
||||
BIN
Code/User/globalStorage/state.vscdb
Normal file
BIN
Code/User/globalStorage/state.vscdb
Normal file
Binary file not shown.
BIN
Code/User/globalStorage/state.vscdb.backup
Normal file
BIN
Code/User/globalStorage/state.vscdb.backup
Normal file
Binary file not shown.
60
Code/User/globalStorage/storage.json
Normal file
60
Code/User/globalStorage/storage.json
Normal file
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"telemetry.sqmId": "",
|
||||
"telemetry.machineId": "d060eb0922916b4c336f750e52abe10ecb910b1ddcea62c9af7c5819f1e9421c",
|
||||
"telemetry.devDeviceId": "01d1ec48-e5d8-485f-98a4-5699f630b101",
|
||||
"backupWorkspaces": {
|
||||
"workspaces": [],
|
||||
"folders": [],
|
||||
"emptyWindows": [
|
||||
{
|
||||
"backupFolder": "1774903677299"
|
||||
}
|
||||
]
|
||||
},
|
||||
"windowControlHeight": 35,
|
||||
"profileAssociations": {
|
||||
"workspaces": {},
|
||||
"emptyWindows": {
|
||||
"1774903677299": "__default__profile__"
|
||||
}
|
||||
},
|
||||
"windowsState": {
|
||||
"lastActiveWindow": {
|
||||
"backupPath": "/home/y1lm0z/.config/Code/Backups/1774903677299",
|
||||
"uiState": {
|
||||
"mode": 0,
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"width": 1200,
|
||||
"height": 800
|
||||
}
|
||||
},
|
||||
"openedWindows": []
|
||||
},
|
||||
"theme": "vs-dark",
|
||||
"themeBackground": "#1e1e1e",
|
||||
"windowSplash": {
|
||||
"zoomLevel": 0,
|
||||
"baseTheme": "vs-dark",
|
||||
"colorInfo": {
|
||||
"foreground": "#cccccc",
|
||||
"background": "#1e1e1e",
|
||||
"editorBackground": "#1e1e1e",
|
||||
"titleBarBackground": "#3c3c3c",
|
||||
"activityBarBackground": "#333333",
|
||||
"sideBarBackground": "#252526",
|
||||
"statusBarBackground": "#007acc",
|
||||
"statusBarNoFolderBackground": "#68217a"
|
||||
},
|
||||
"layoutInfo": {
|
||||
"sideBarSide": "left",
|
||||
"editorPartMinWidth": 220,
|
||||
"titleBarHeight": 35,
|
||||
"activityBarWidth": 48,
|
||||
"sideBarWidth": 300,
|
||||
"auxiliaryBarWidth": 300,
|
||||
"statusBarHeight": 22,
|
||||
"windowBorder": false
|
||||
}
|
||||
}
|
||||
}
|
||||
4
Code/User/settings.json
Normal file
4
Code/User/settings.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"window.autoDetectColorScheme": true,
|
||||
"workbench.preferredDarkColorTheme": "Visual Studio Dark - C++"
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"version":2,"initialFileContents":[],"timeline":{"checkpoints":[{"checkpointId":"9ebb7500-da3f-4628-8991-2d55c025e543","epoch":0,"label":"Initial State","description":"Starting point before any edits"}],"currentEpoch":1,"fileBaselines":[],"operations":[],"epochCounter":1},"recentSnapshot":{"entries":[]}}
|
||||
BIN
Code/User/workspaceStorage/1774903677299/state.vscdb
Normal file
BIN
Code/User/workspaceStorage/1774903677299/state.vscdb
Normal file
Binary file not shown.
BIN
Code/User/workspaceStorage/1774903677299/state.vscdb.backup
Normal file
BIN
Code/User/workspaceStorage/1774903677299/state.vscdb.backup
Normal file
Binary file not shown.
Reference in New Issue
Block a user