Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices by Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social), page 4

  1. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 27-May-2019 22:48:31 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    If you don't know what is #Awk or how it could help you processing text files, then you NEED that little introduction:
    https://youtu.be/PUYS6MO4p7Y

    #Linux #Shell #AWK
    #YesIKnowIT

    In conversation Monday, 27-May-2019 22:48:31 EDT from mastodon.social permalink

    Attachments

    1. How to clean up a data file using AWK - Yes, I Know IT ! Ep 05
      By Yes, I Know IT ! from YouTube
  2. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 27-May-2019 17:25:05 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Centering text on 80 columns with stars:
    sed -E ':x
    s/^.{,80}$/*&/
    s/^.{,80}$/&*/
    tx
    ' file

    #Shell #Sed #Linux

    In conversation Monday, 27-May-2019 17:25:05 EDT from mastodon.social permalink
  3. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 27-May-2019 10:07:35 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Delete all but the last line of a file:
    sed -n '$p' file

    #Shell #Sed #Linux

    In conversation Monday, 27-May-2019 10:07:35 EDT from mastodon.social permalink
  4. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 27-May-2019 04:46:08 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Intriguing. What is the typical use case of running Docker on a RaspberryPi w/ Raspian?

    https://docs.docker.com/engine/installation/linux/docker-ce/debian/
    #Docker #RPi #RaspberryPi #Raspian

    In conversation Monday, 27-May-2019 04:46:08 EDT from mastodon.social permalink
  5. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 26-May-2019 22:01:19 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    To leave #vim with a non-zero exit code use `:cq`.

    Useful to abort a #Git commit or a #Bash `fc` command

    In conversation Sunday, 26-May-2019 22:01:19 EDT from mastodon.social permalink
  6. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 26-May-2019 16:28:12 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓
    • shapeshed

    Cool tutorial by @shapeshed on the "join" command. Useful to merge files based on their content.

    https://shapeshed.com/unix-join/

    #Join #Linux

    In conversation Sunday, 26-May-2019 16:28:12 EDT from mastodon.social permalink
  7. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 26-May-2019 10:25:45 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    AWK patterns are far more sophisticated than their SED counterpart:
    https://www.yesik.it/EP13

    #AWK #Linux #Unix
    #CommandLine
    #YesIKnowIT

    In conversation Sunday, 26-May-2019 10:25:45 EDT from mastodon.social permalink

    Attachments

    1. How to Write Complex Awk Patterns using Operators?
      from Yes I Know IT!
      Awk is a powerful tool using pattern matching to identify the data to process in a file. But Awk patterns are much more versatile than their `sed` counterpart. In this video, you will see the core logical and relational operators you can use in Awk patterns. And you will discover how you can use complex patterns to extract in a fraction of second the relevant informations from a data set containing more than 57000 records.
  8. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 26-May-2019 04:32:33 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    "I want to learn Linux. Is Kali right for me?"

    So, tired of the sterile controversies, I decided to forge my own opinion:
    https://itsfoss.com/kali-linux-review/

    #Linux #Kali

    In conversation Sunday, 26-May-2019 04:32:33 EDT from mastodon.social permalink

    Attachments

    1. The Kali Linux Review You Must Read Before You Start Using it
      from It's FOSS
      Kali Linux is not for beginners. Is that true? What is the use of Kali Linux then? Should you use Kali Linux or stick to some other mainstream distribution like Linux Mint or Zorin OS? Read this Kali Linux Review and find out.
  9. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 30-Apr-2019 18:47:26 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    In the Bash, `~-` is expanded to the content of `OLDPWD`. So:

    cd ~-/..

    is a shortcut for the 2 commands:

    cd "$OLDPWD" (or `cd -`)
    cd ..

    #Bash #Shell

    In conversation Tuesday, 30-Apr-2019 18:47:26 EDT from mastodon.social permalink
  10. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 30-Apr-2019 12:58:49 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Merging files on a line-by-line basis with the `paste` utility
    https://yesik.it/EP23

    #Paste #POSIX #Utility #Linux #Unix #Shell

    In conversation Tuesday, 30-Apr-2019 12:58:49 EDT from mastodon.social permalink

    Attachments

    1. The Paste Command
      from Yes I Know IT!
      In a previous video, we talked about the `cut` command which can be used to extract columns from a CSV or tabular text data file.
  11. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 30-Apr-2019 06:41:38 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Find words starting with `lin` (according to `/usr/share/dict/words`):

    ```
    look lin
    ```

    #Linux #Look #Utility

    In conversation Tuesday, 30-Apr-2019 06:41:38 EDT from mastodon.social permalink
  12. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 30-Apr-2019 00:54:38 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    csplit tweets.yaml /----/ '{*}'

    Split a collection of tweets stored in a YAML file into individual items.

    From https://linuxhandbook.com/csplit-command

    In conversation Tuesday, 30-Apr-2019 00:54:38 EDT from mastodon.social permalink

    Attachments

    1. csplit: A Better Way to Split File in Linux Based on its Content
      By Sylvain Leroux from Linux Handbook
      How to split a file in Linux based on its content? Learn some practical examples of the GNU coreutils csplit command. It's more useful than the popular split command.
  13. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 29-Apr-2019 06:11:11 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Poor's (wo)man stopwatch in your shell:

    ```
    time read
    ```

    #Linux #Shell #Stopwatch

    In conversation Monday, 29-Apr-2019 06:11:11 EDT from mastodon.social permalink
  14. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Friday, 26-Apr-2019 03:10:47 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Display a 2x3 matrix:

    seq 6 | paste - - -

    #Paste #Shell #Linux #Unix #POSIX #Utility

    In conversation Friday, 26-Apr-2019 03:10:47 EDT from mastodon.social permalink
  15. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Friday, 26-Apr-2019 01:13:48 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Do you know I have a "Bash and Linux Command Line" course On #Udemy?
    Take a look here for a discount:
    https://yesik.it/BSH101

    In conversation Friday, 26-Apr-2019 01:13:48 EDT from mastodon.social permalink

    Attachments

    1. The Bash & Linux Command Line Tools
      from Yes I Know IT!
      Using the command line might seem outdated by today standards in user interface & user experience. So, why someone might want to learn that ? Because it's cool and featured in many Hollywood movies ? Maybe. But more seriously, because even today it is incomparably efficient when you have to perform repetitive tasks or deal with lots of files or data.
  16. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 25-Apr-2019 19:18:59 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    vlc -Idummy -Vcaca "Star Wars: Episode IV - A New Hope (1977).mkv"

    Play #StarWars as it was originally intended by @GeorgeLucasILM back in the 70s

    #VLC #AsciiArt #Linux #CommandLine

    In conversation Thursday, 25-Apr-2019 19:18:59 EDT from mastodon.social permalink
  17. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 25-Apr-2019 13:44:45 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    .tar, .zip, .gz--you already have seen those extensions at the end of archive files, don't you?

    But what do they mean? What is the difference between those formats?

    https://itsfoss.com/tar-vs-zip-vs-gz/
    #Tar #Zip #Gzi #Archive #FileFormat

    In conversation Thursday, 25-Apr-2019 13:44:45 EDT from mastodon.social permalink
  18. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 24-Apr-2019 14:58:16 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Split a fixed-width or delimited text file into individual columns using the `cut` command
    https://yesik.it/EP22

    #Cut #POSIX #Utility #Linux #Unix #Shell

    In conversation Wednesday, 24-Apr-2019 14:58:16 EDT from mastodon.social permalink

    Attachments

    1. The Cut Command
      from Yes I Know IT!
      The `cut` command is a POSIX-defined utility to remove unwanted data from a tabular text data file. With the `cut` utility you can remove bytes, character range ("columns") or fields on each line of an input file. Something that is particularly useful when you have to pre-process a CSV file from (or "for") a spreadsheet or a database.
  19. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 23-Apr-2019 08:21:44 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    `split` and `csplit`. Old friends, I used them a lot in the 1.44MB floppy disk era...

    https://www.linux.com/learn/intro-to-linux/2017/8/splitting-and-re-assembling-files-linux
    by Carla Schroder (https://twitter.com/CarlaSchroder)

    In conversation Tuesday, 23-Apr-2019 08:21:44 EDT from mastodon.social permalink
  20. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 22-Apr-2019 23:43:27 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    I should definitely investigate Asciinema for my future screencasts:

    https://asciinema.org/

    #Asciinema #Terminal #Screencast

    In conversation Monday, 22-Apr-2019 23:43:27 EDT from mastodon.social permalink
  • After
  • Before
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

Jonkman Microblog is a social network, courtesy of SOBAC Microcomputer Services. It runs on GNU social, version 1.2.0-beta5, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All Jonkman Microblog content and data are available under the Creative Commons Attribution 3.0 license.

Switch to desktop site layout.