Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

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

  1. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 25-Feb-2019 10:01:54 EST 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, 25-Feb-2019 10:01:54 EST from mastodon.social permalink
  2. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 25-Feb-2019 03:56:44 EST 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, 25-Feb-2019 03:56:44 EST from mastodon.social permalink
  3. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 24-Feb-2019 21:48:25 EST Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Check your Bash skills and challenge your friends:
    https://www.yesik.it/BASH-IT-OUT

    #Bash #Shell #Challenge #Puzzle #Linux
    #YesIKnowIT @itsfoss2

    In conversation Sunday, 24-Feb-2019 21:48:25 EST from mastodon.social permalink

    Attachments

    1. Bash It Out!
      from Yes I Know IT!
      **Strengthen your Bash knowledge with 17 scripting challenges of varied difficulties** Do you want to improve your Bash skills? Be aware of the common or not-so-common pitfalls of interactive Bash usage? Or simply test your friends (and/or your employees!) with subtle brainteasers? Then, this book is for you!
  4. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 24-Feb-2019 09:41:14 EST 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, 24-Feb-2019 09:41:14 EST from mastodon.social permalink
  5. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 24-Feb-2019 03:50:09 EST 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, 24-Feb-2019 03:50:09 EST 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.
  6. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Saturday, 23-Feb-2019 22:59:32 EST 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 Saturday, 23-Feb-2019 22:59:32 EST 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.
  7. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Saturday, 23-Feb-2019 17:01:06 EST Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Does the opensource adoption in public services have evolved since I published that?
    https://itsfoss.com/open-source-adoption-europe/ …

    #FOSS #OpenData
    #eGovernment #PublicAdministrations
    #EU #Europe
    #YesIKnowIT @itsfoss2

    In conversation Saturday, 23-Feb-2019 17:01:06 EST from mastodon.social permalink

    Attachments

    1. Open Source is Taking Over Europe!
      By Sylvain Leroux from It's FOSS
      Open Source is Taking Over Europe!
  8. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Saturday, 23-Feb-2019 10:17:28 EST Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Print the first column of a space-separated data file:
    awk '{print $1}' data.txt # Print out just the first column

    For some unknown reason, I find that easier to remember than:
    cut -f1 data.txt

    #Linux #AWK #Cut

    In conversation Saturday, 23-Feb-2019 10:17:28 EST from mastodon.social permalink
  9. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 30-Jan-2019 15:36:17 EST 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 Wednesday, 30-Jan-2019 15:36:17 EST from mastodon.social permalink
  10. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 30-Jan-2019 09:17:18 EST 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 Wednesday, 30-Jan-2019 09:17:18 EST 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 Wednesday, 30-Jan-2019 03:47:17 EST 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 Wednesday, 30-Jan-2019 03:47:17 EST from mastodon.social permalink
  12. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 29-Jan-2019 04:58:18 EST Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

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

    ```
    time read
    ```

    #Linux #Shell #Stopwatch

    In conversation Tuesday, 29-Jan-2019 04:58:18 EST from mastodon.social permalink
  13. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 28-Jan-2019 08:57:01 EST Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    How to use the `chattr` command to secure shared files. An interesting post by Himanshu Arora on HowtoForge.
    https://www.howtoforge.com/linux-chattr-command/

    BTW, `chattr` has not to be confused with `chmod`!

    #Chattr #Linux #Utility

    In conversation Monday, 28-Jan-2019 08:57:01 EST from mastodon.social permalink
  14. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Friday, 25-Jan-2019 13:20:24 EST 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 Friday, 25-Jan-2019 13:20:24 EST from mastodon.social permalink
  15. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Friday, 25-Jan-2019 08:25:00 EST 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 Friday, 25-Jan-2019 08:25:00 EST from mastodon.social permalink
  16. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 24-Jan-2019 12:42:09 EST 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 Thursday, 24-Jan-2019 12:42:09 EST 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.
  17. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 23-Jan-2019 05:11:25 EST 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 Wednesday, 23-Jan-2019 05:11:25 EST from mastodon.social permalink
  18. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 22-Jan-2019 17:01:08 EST 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 Tuesday, 22-Jan-2019 17:01:08 EST from mastodon.social permalink
  19. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 22-Jan-2019 06:07:38 EST Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓
    • GitHub

    Excellent post by @benfrederickson showing the programming language popularity on @GitHub as of Jan, 2018
    https://www.benfrederickson.com/ranking-programming-languages-by-github-users/

    Do you think things have evolved since that post?

    In conversation Tuesday, 22-Jan-2019 06:07:38 EST from mastodon.social permalink
  20. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 21-Jan-2019 23:36:51 EST Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Take a little bit of computer history and a little bit of computer science, mix them together and you have that article introding the fundamental unit of measurement used in computing or electronic engineering.

    https://www.yesik.it/blog/2018-bit-nibble-byte-and-word

    In conversation Monday, 21-Jan-2019 23:36:51 EST 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.