HackerTrans
TopNewTrendsCommentsPastAskShowJobs

z3

no profile record

comments

z3
·el año pasado·discuss
Here you can find the full article https://archive.is/ohFE5
z3
·hace 3 años·discuss
This is the great book, it covers the history of desktop computers

https://www.amazon.com/When-Computing-Got-Personal-Computer/...
z3
·hace 3 años·discuss
it's the same for "dog" search ;)

https://www.google.com/search?q=dog
z3
·hace 3 años·discuss
VeraCrypt
z3
·hace 4 años·discuss
Share love!
z3
·hace 4 años·discuss
full article -> https://archive.is/IxyHr
z3
·hace 4 años·discuss
full article -> https://archive.is/7zMvW
z3
·hace 4 años·discuss
Man, you are my hero
z3
·hace 4 años·discuss
full article -> https://archive.is/coBBz
z3
·hace 4 años·discuss
Great project! Well done boys, that’s a true hacker spirit
z3
·hace 4 años·discuss
>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.
z3
·hace 4 años·discuss
Maybe you can find some free courses[1] and learn something new.

[1]https://www.udemy.com/courses/free/
z3
·hace 4 años·discuss
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
z3
·hace 4 años·discuss
You can find interesting jobs in this Telegram group https://t.me/dailyapehr
z3
·hace 4 años·discuss
Company ~50 people uses Hangout/meeting/ or however google calls it now. All good. They’ve improved massively, you should give another try
z3
·hace 4 años·discuss
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 ----