As a note, I've used windows 11, and these are the issues I've faced while using it.
- Head to https://www.marticliment.com/unigetui
- Download and install it
- Use the backup in your gists
As a note, I've used windows 11, and these are the issues I've faced while using it.
Use this command:
sudo grep -r '^psk=' /etc/NetworkManager/system-connections/
It will give you output like this:
/etc/NetworkManager/system-connections/<wifi1-ssid>:psk=<wifi1-password>
/etc/NetworkManager/system-connections/<wifi2-ssid>:psk=<wifi2-password>
/etc/NetworkManager/system-connections/<wifi3-ssid>:psk=<wifi3-password>
As a note, I've used kubuntu 24.04 and Ubuntu 22.04, and these are the issues I've faced while using them.
Follow steps in this guide but don't uninstall snap Essential and strongly recommended things to do directly after a Kubuntu 24.04 LTS installation
ssh-keygen -t ed25519 -C <account_email>cat <file_path> ## ~/.ssh/id_ed25519.pubhttps://github.com/settings/keys and click New SSH key.Authentication Key as key type, and add the copied key to the key box.Script to start apps in shell:
#!/bin/bash
# Open Google Chrome with specific tabs
google-chrome "https://www.google.com" "https://www.stackoverflow.com" "https://www.github.com" &
# Open Visual Studio Code
code &
| "files.associations": { | |
| "*.js": "javascriptreact" | |
| } |
| In the workspace create 'settings.json' file in '.vscode' folder and put this peice of code in it. | |
| { | |
| "liveSassCompile.settings.generateMap": true, // good for debugging | |
| "liveSassCompile.settings.formats": [ | |
| { | |
| "format": "expanded", | |
| "extensionName": ".css", | |
| "savePath": "~/../css", | |
| "indentType": "tab", |
| http://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging | |
| // adding branch2 commets to branch1 | |
| $ git checkout <branch1> | |
| $ git merge <branch2> | |
| // merging a branch to main | |
| $ git checkout main | |
| $ git merge <branch needed to be merged to main> |
| As described in this file, all windows store apps are blocked from accessing localhost, you need to enable that by cmd. | |
| https://github.com/jenius-apps/nightingale-rest-api-client/blob/master/docs/localhost.md | |
| To give Nightingale the permission to access your localhost you need to open cmd in administrator mode and enter that command: | |
| checknetisolation loopbackexempt -a -p=S-1-15-2-2472482401-1297737560-3464812208-2778208509-1273584065-1826830168-474783446 |
I faced a problem that I couldn't use vercel environment variables with a deployed angular app. I used to write my sensitive information in an env file while writing backend code and I forgot that browsers don't support the process module. So I searched for a while and got the result I want by following these steps:
npm install --save-dev @angular-builders/custom-webpack
angular.json and use "builder": "@angular-builders/custom-webpack:browser" instead of "builder": "@angular-devkit/build-angular:browser"customWebpackConfig key in options object with a path to a file that you will create later:
"options": { "customWebpackConfig": {"path": "custom-webpack-config.js"} }