Oh yeah, 100%
No, that’s the entire curriculum […]
I was asking about what country has US meddling as a considerable fraction of the curriculum
Oh yeah, 100%
No, that’s the entire curriculum […]
I was asking about what country has US meddling as a considerable fraction of the curriculum
Which country?
In Brazil there have been several pretty important meddlings, but at most the schools say that there where “several parties involved”
Like our dictatorship, where I’d only learnt “other countries incentivized the coup”
Why would 2580 be common?
I don’t use VSCode, so I may be wrong, but I think it has version control integration out of the box (maybe just for git), an with it you can review merges and stuff
I’ll try this today and comeback here
Maybe D is too single quotes
0 == ''
Lambda calculus gang has entered the chat with λx.λy.x
as The Truth™
It’s mainly public transit. Trains, busses, etc
TCP is the way that you send information, HTTP is what it means.
The difference, in your case, is the port. You can’t CAN have TCP and UDP on the same port, but you can’t have the same protocol on the same port.
edit: I didn’t knew you could have different transfer protocols on the same port, ty!
Every decision is arbitrary in some way. We, as humans, defined it would be better to arrange the periodic table a certain way, based on characteristics of the elements, but the characteristics chosen are arbitrary. We could’ve just chosen a different set for ordering, like alphabetical.
Tho, that’s a correct (IIRC) yet weird usage of “arbitrary”, and since language exists to talk, not to be correct, we might as well not use this definition of arbitrary and stick to what conveys information better.
Edit: I’m wrong! perhaps “correct” was the word I meant to say, not sure tho.
I’d say 128 is understandable, but something like 256 or higher should be the limit. 64, however, is already bellow my default in bitwarden
Damm, I legit didn’t knew there bcrypt had a length limit! Thank you for another reason not to use bcrypt
Also rate of the requests. A normal user isn’t sending a 1 MiB password every second
Why are you hasing in the browser?
Also, what hashing algorithm would break with large input?
The problem is that you (hopefully) hash the passwords, so they all end up with the same length.
Oh, I already hated windows, that was just the last straw
The pandemic and programming.
I was watching some tutorials and saw how easily people used the terminal, and how clunky cmd felt.
Next day I had ubuntu running.
While it’s true that’s a progess bar is guessing (since it doesn’t know what would take more time in your computer). It should still finish when at 100%
You can just alias to do this in the programs you do use
Sure, the first time you won’t have this enabled, but after that it just works.
I made this one to find binaries in NixOs and other systems
get_bin_path() { paths=${2:-$PATH} for dr in $(echo $paths | tr ':' '\n') ; do if [ -f "$dr/$1" ] ; then echo "$dr/$1" return 0 fi done return 1 }
Then I made this one to, if I have a shell o opened inside neovim it will tell the neovim process running the shell to open a file on it, instead of starting a new process
_nvim_con() { abs_path=$(readlink --canonicalize "$@" | sed s'| |\\ |'g) $(get_bin_path nvim) --server $NVIM --remote-send "<ESC>:edit $abs_path<CR>" exit } # start host and open file _nvim_srv() { $(get_bin_path nvim) --listen $HOME/.cache/nvim/$$-server.pipe $@ } if [ -n "$NVIM" ] ; then export EDITOR="_nvim_con" else export EDITOR="_nvim_srv" fi
Lastly this bit: which if it detects a file and a line number split by a
:
it will open the file and jump to the line_open() { path_parts=$(readlink --canonicalize "$@" | sed s'| |\\ |'g | sed 's/:/\t/' ) file=$(echo "$path_parts" | awk ' { print $1 }' ) line=$(echo "$path_parts" | awk ' { print $2 }' ) if [ -n "$line" ] ; then # has line number if [ -n "$NVIM" ] ; then $(get_bin_path nvim) --server $NVIM --remote-send "<ESC>:edit $file<CR>:+$line<CR>" exit else $(get_bin_path nvim) --listen $HOME/.cache/nvim/$$-server.pipe $file "+:$line" fi else $EDITOR $file fi } alias nvim="_open"
all of my bash config is here