Rust substring

When we work on a project we need facilitator functions for strings. In rust we can make lots of things on strings (for example getting length, concataneting strings, split, trim etc) but unfortunatelly substring feature isn’t exist. When we make investigation then almost everybody suggest to use range operator over Devamı…

My VSCode settings

Every developer has own settings for each IDE. Because everybody have different habits and experiences. Now let me share my own settings for vscode. The config file path: .vscode/settings.json {  “editor.tabSize”: 4,  “search.exclude”: {    “**/.git/objects/**”: true,    “**/.git/subtree-cache/**”: true,    “**/node_modules/*/**”: true,    “**/bower_components”: true,    “**/*.code-search”: true,    “**/dist/*/**”: Devamı…

Update vscode in Linux (Ubuntu or others)

Hi, in linux there isn’t auto update feature in vscode. Because of that we have to update it ourself. This is the easiest and fastest way for updateing vscode: wget ‘https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-x64’ -O code_latest_amd64.deb sudo dpkg -i code_latest_amd64.deb Happy coding…