For further actions, you may consider blocking this person and/or reporting abuse
For further actions, you may consider blocking this person and/or reporting abuse
Pantelis Theodosiou -
IagoLast -
Afonso Barracha -
Joe Mainwaring -
Once suspended, daniel13rady will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, daniel13rady will be able to comment and publish posts again.
Once unpublished, all posts by daniel13rady will become hidden and only accessible to themselves.
If daniel13rady is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Daniel Brady.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag daniel13rady:
Unflagging daniel13rady will restore default visibility to their posts.
Top comments (13)
Like a blackhole. You will have a dark room.
I will not use the
CTRL
+L
shortcut. Just press the^
arrow and look for theclear
command that I have used before. How lazy I am ~👏 I didn't tell the whole truth above: I currently have
ls
aliased toclear; tree
.You can even use
CTRL
+L
as a shortcut forclear
in most of the terminal emulators!I would rather CTRL+L
tree --dirsfirst -phFDC -L 3
I love tree. I currently have this aliased to
ls
.This one is my favorite because it allows for a recursive for loop in ZSH. You could use
find
to do the job, but you can have variables and write visually better code with this for loop.Note that it might not work in Bash.
I would be happy to learn an even better way of doing it though!
split -l 7000 my_giant_json.json sub_files.json . It is far from being the command I use most, but recently it saved me during a data migration process. You can use it to split a file into several smaller chunks and then operate them.
It works like this: split -l (form number of lines) -b (for bytes) my_giant_json.json sub_files.json
history | grep
I'm lazy and forgetful, what can I say.
I do this a lot for arcane commands I executed once 2 years ago to fix that one thing that popped up again.
du -h --max-depth=1
sl