Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

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

  1. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Friday, 31-Aug-2018 02:36:23 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Fine tune Linux Kernel I/O by setting up dirty page parameters.

    https://lonesysadmin.net/2013/12/22/better-linux-disk-caching-performance-vm-dirty_ratio/

    #Linux #Kernel #Cache #Disk #Tuning

    In conversation Friday, 31-Aug-2018 02:36:23 EDT from mastodon.social permalink
  2. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Friday, 31-Aug-2018 00:04:53 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    #OpenStack is a complex and somewhat frightening beast
    https://opensource.com/resources/what-is-openstack

    In conversation Friday, 31-Aug-2018 00:04:53 EDT from mastodon.social permalink

    Attachments

    1. Invalid filename.
      What is OpenStack?
      from Opensource.com
      OpenStack is a set of software tools for building and managing cloud computing platforms for public and private clouds.
  3. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 30-Aug-2018 17:50:31 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    The history of Solaris and the free alternatives
    https://www.yesik.it/SOLARIS2017

    #Solaris #OpenSolaris #Illumos
    #YesIKnowIT

    In conversation Thursday, 30-Aug-2018 17:50:31 EDT from mastodon.social permalink

    Attachments

    1. Invalid filename.
      The history of Solaris
      from Yes I Know IT!
      Solaris is a Unix-like operating system developed since the 80s and particularly well suited for server or cloud infrastructure applications. Solaris has a rich and complex history made of code rebase, forks and acquisitions which are detailed in this infographics.
  4. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 30-Aug-2018 12:07:47 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    JSON command line processing:
    https://stedolan.github.io/jq/

    (never ever use #sed for that!)
    #JSON #CLI

    In conversation Thursday, 30-Aug-2018 12:07:47 EDT from mastodon.social permalink
  5. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 30-Aug-2018 06:41:04 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    So, you don't know yet the `grep` command ?
    https://youtu.be/HBNNO92Juw4

    #Shell #Linux #Grep
    #YesIKnowIT

    In conversation Thursday, 30-Aug-2018 06:41:04 EDT from mastodon.social permalink

    Attachments

    1. Invalid filename.
      How to filter data using Grep - Yes, I Know IT ! Ep 06
      By Yes, I Know IT ! from YouTube
  6. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 30-Aug-2018 00:52:24 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Print even lines
    seq 10 | sed -n '1b;P;N'

    #Shell #Sed #Linux

    In conversation Thursday, 30-Aug-2018 00:52:24 EDT from mastodon.social permalink
  7. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 29-Aug-2018 19:31:02 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    In #Bash, to edit the last three commands in your favorite EDITOR type:

    fc -3 0

    When leaving the editor, commands are executed

    In conversation Wednesday, 29-Aug-2018 19:31:02 EDT from mastodon.social permalink
  8. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 29-Aug-2018 12:47:30 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    `less -R` will handle gracefully ANSI "color" escape sequences:
    ls --color=always /tmp | less -R

    #Linux #Shell #ls

    In conversation Wednesday, 29-Aug-2018 12:47:30 EDT from mastodon.social permalink
  9. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Friday, 03-Aug-2018 17:12:22 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Display all user accounts separated by a colon in one very long line

    cut -d: -f1 /etc/passwd | paste -s -d:

    #Paste #Cut #Linux #Unix #POSIX #Utility

    In conversation Friday, 03-Aug-2018 17:12:22 EDT from mastodon.social permalink
  10. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Friday, 03-Aug-2018 11:13:13 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 Friday, 03-Aug-2018 11:13:13 EDT from mastodon.social permalink
  11. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Friday, 03-Aug-2018 05:54:05 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 Friday, 03-Aug-2018 05:54:05 EDT from mastodon.social permalink

    Attachments

    1. Invalid filename.
      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.
  12. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 02-Aug-2018 23:22:15 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 Thursday, 02-Aug-2018 23:22:15 EDT from mastodon.social permalink
  13. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 02-Aug-2018 04:53:33 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

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

    ```
    time read
    ```

    #Linux #Shell #Stopwatch

    In conversation Thursday, 02-Aug-2018 04:53:33 EDT from mastodon.social permalink
  14. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 29-Jul-2018 19:49:55 EDT 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 Sunday, 29-Jul-2018 19:49:55 EDT from mastodon.social permalink
  15. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 29-Jul-2018 14:24:56 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Display a 2x3 matrix:

    seq 6 | paste - - -

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

    In conversation Sunday, 29-Jul-2018 14:24:56 EDT from mastodon.social permalink
  16. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 29-Jul-2018 09:09:51 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 Sunday, 29-Jul-2018 09:09:51 EDT from mastodon.social permalink
  17. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Saturday, 28-Jul-2018 09:41:50 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 Saturday, 28-Jul-2018 09:41:50 EDT from mastodon.social permalink

    Attachments

    1. Invalid filename.
      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.
  18. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 25-Jul-2018 21:19:03 EDT 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 Wednesday, 25-Jul-2018 21:19:03 EDT from mastodon.social permalink
  19. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Saturday, 14-Jul-2018 22:25:59 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    How to catenate files scattered through several sub-directories?
    https://yesik.it/blog/2018-catenate-files-from-subdirectories

    #Linux #Grep #Find #Globstar #Catenate #TextFiles

    In conversation Saturday, 14-Jul-2018 22:25:59 EDT from mastodon.social permalink

    Attachments

    1. Invalid filename.
      How to catenate files scattered through several sub-directories
      from Yes I Know IT!
      Yesterday, I needed to catenate all the https://en.wikipedia.org/wiki/Comma-separated_values[CSV] files from some dataset. The trouble was they were scattered into many different directories on several levels. My initial reflex was to use the find command--but I then wondered if there were other ways of doing that?
  20. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Saturday, 14-Jul-2018 16:29:41 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Of bits and bytes
    https://yesik.it/blog/2018-bit-nibble-byte-and-word

    #Bit #Nibble #Byte #Octet #Word #BinaryArithmetic #BooleanAlgebra #ComputerScience #ComputerHistory

    In conversation Saturday, 14-Jul-2018 16:29:41 EDT from mastodon.social permalink

    Attachments

    1. Invalid filename.
      Of bits and bytes
      from Yes I Know IT!
      In computer science, we often express data size using fancy words like bit, bytes or words. But what do they represent exactly? And was it always like that?
  • 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.