To update the archlinux-keyring
, you can follow these steps:
First, ensure your package database is up to date:
sudo pacman -Sy
// PSEUDO CODE | |
// x=R1 | |
// y=R2 | |
// R3=0 | |
// while(x > 0) { | |
// R3 += y | |
// x-- | |
// } | |
@R1 |
procedure render | |
( p_item in apex_plugin.t_item | |
, p_plugin in apex_plugin.t_plugin | |
, p_param in apex_plugin.t_item_render_param | |
, p_result in out nocopy apex_plugin.t_item_render_result | |
) | |
as | |
-- attributes | |
l_attribute1 p_item.attribute_01%type := p_item.attribute_01; | |
l_attribute2 p_item.attribute_02%type := p_item.attribute_02; |
ssh -L 3000:localhost:3000 <devuser>@<remote server ip address> |
$ git init | |
hint: Using 'master' as the name for the initial branch. This default branch name | |
hint: is subject to change. To configure the initial branch name to use in all | |
hint: of your new repositories, which will suppress this warning, call: | |
hint: | |
hint: git config --global init.defaultBranch <name> | |
hint: | |
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and | |
hint: 'development'. The just-created branch can be renamed via this command: | |
hint: |
In some cases, only these lines will work
for product in IntelliJIdea WebStorm DataGrip PhpStorm CLion PyCharm GoLand RubyMine; do
rm -rf ~/.config/$product*/eval 2> /dev/null
rm -rf ~/.config/JetBrains/$product*/eval 2> /dev/null
done
But if not, try these
https://chatgpt.com/share/1d47cc33-1e69-4ae2-8f5b-c6a24b851e1b | |
xrandr --output eDP-1 --brightness 0.5 | |
setxkbmap -layout us,ir | |
setxkbmap -option 'grp:alt_shift_toggle' |
echo $@ | |
git add . | |
git commit -m "$@" | |
git push |
#!/bin/bash | |
red='\033[0;31m' | |
green='\033[0;32m' | |
yellow='\033[0;33m' | |
plain='\033[0m' | |
cur_dir=$(pwd) |