Here you can find the full article https://archive.is/ohFE5
HN user
z3
This is the great book, it covers the history of desktop computers
https://www.amazon.com/When-Computing-Got-Personal-Computer/...
it's the same for "dog" search ;)
VeraCrypt
Share love!
full article -> https://archive.is/IxyHr
full article -> https://archive.is/7zMvW
Man, you are my hero
full article -> https://archive.is/coBBz
Great project! Well done boys, that’s a true hacker spirit
I started as a hacker, reverse engineering
this is the key point which makes you good. you always think as a hacker and that's why you write good code.
Maybe you can find some free courses[1] and learn something new.
I absolutely agree with you. it's hard to deal with bad thoughts now days.
every time I find myself in such a situation, I find the best way out in training and sports. physical activity best heals the mind. running, push-ups, swimming
You can find interesting jobs in this Telegram group https://t.me/dailyapehr
Company ~50 people uses Hangout/meeting/ or however google calls it now. All good. They’ve improved massively, you should give another try
you can run and check the script:
$cat <(curl tea.xyz)
--- #!/bin/sh
set -e
if [ -n "$VERBOSE" ]; then set -x fi
if [ "$1" = "--show" ] && [ $2 = "twitter" ]; then echo "https://twitter.com/teaxyz_" elif [ -n "$1" ]; then # Hi, I know you’re excited but genuinely, pls wait for release # I added this so I can do CI :/ case $(uname) in Darwin) suffix=macOS-aarch64;; Linux) suffix=linux-x86-64;; *) echo "unsupported OS or architecture" >&2 exit 1;; esac
if [ "$1" = "brew" ]; then
d="$HOME"/.tea/bin
mkdir -p "$d"
curl https://tea.xyz/dist/tea-$suffix -o "$d"/tea
echo "$d" >> $GITHUB_PATH
else
mkdir opt
curl https://tea.xyz/dist/tea-$suffix -o ./opt/tea
chmod u+x ./opt/tea
shift
./opt/tea "$@"
fi
else
echo
echo "418 I’m a teapot"
echo
echo "thanks for your interest in tea."
echo "alas, we’re not quite ready to serve you yet."
echo
echo "while you wait why not follow us on Twitter:"
echo
echo ' open $(sh <(curl tea.xyz) --show twitter)'
echo
fi
----It's not only about Golang, it's a great textbook on network programming in general. Great job!
Thinkpad X1 is great laptop. Lenovo has one of the best keyboard on the market.
Read, read and just read.
I use https://families.google.com/familylink/ to control my son’s tablet. What he plays, how long and at what time.
I try to drink ~2L every day. I do this because I was Coca Cola addict and 2L bootleg was mine measure.
Arch/Gnome
My wife is the best financy tracking “app” indeed. When I buy something, she is screeming like alarm :)
it depends what kind of developers.
you should look at some developer roadmap https://github.com/kamranahmedse/developer-roadmap
Very nice and useful. Well done guys!
Awesome idea and implementation. tutorial is useful and clear. Well done mgechev, great job!
No. Still stuck to Java 8. We still didn't decide what to do. Probably move straight to Java 11
use Amazon's AWS, Google Cloud, Microsoft Azure or DigitalOcean you can run one or more instance and pay per use. it is easy to scale if you need.
other option is some cheep VPS hosting (~50$/y) but later you maybe need to migrate everything.
kubernetes has more advantages than pure horizontal scaling capacity. there are services, secrets, networking etc, which are useful for small size projects at the same way as big ones. I agree that it can be over kill, but I would not throw away whole kubernetes only for assumptions base on the size of the projects.