Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices by Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social), page 11

  1. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Saturday, 20-Oct-2018 00:52:04 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Once you tried Linux, it is hard to came back to Windows. According to Will Weaton:

    http://wilwheaton.net/2018/03/i-tried-turning-it-off-and-back-on-again/

    In conversation Saturday, 20-Oct-2018 00:52:04 EDT from mastodon.social permalink
  2. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Thursday, 18-Oct-2018 10:12:26 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    In JavaScript the "empty" regular expression literal is written `/(?:)/` since the parser would erroneously take `//` as the start of a single-line comment

    https://www.ecma-international.org/ecma-262/5.1/#sec-7.8.5
    #JavaScript #ECMA #Empty #RegExp

    In conversation Thursday, 18-Oct-2018 10:12:26 EDT from mastodon.social permalink
  3. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Sunday, 14-Oct-2018 16:26:01 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Nice illustration of several random shuffle algorithms, including Fisher–Yates Shuffle:
    https://bost.ocks.org/mike/shuffle/
    by Mike Bostock (https://twitter.com/mbostock)

    #Random #Shuffle #JavaScript #Array

    In conversation Sunday, 14-Oct-2018 16:26:01 EDT from mastodon.social permalink
  4. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Sunday, 14-Oct-2018 09:56:01 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    PDF to PNG using ImageMagick
    ```
    convert -background white \
    -define pdf:fit-page=A4 \
    sourcepath.pdf \
    -flatten \
    destpath.png
    ```
    #ImageMagick #IM #PDF #PNG #Convert

    In conversation Sunday, 14-Oct-2018 09:56:01 EDT from mastodon.social permalink
  5. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Sunday, 14-Oct-2018 04:22:58 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Despite increasing SSD popularity, hard drives are not yet an extinct specy. But how do they work?

    Here is a nice infographic to explain platters, arms, sectors, and much more:
    https://www.makeuseof.com/tag/understand-makes-hard-drive-tick/

    #HardDrive #HD

    In conversation Sunday, 14-Oct-2018 04:22:58 EDT from mastodon.social permalink
  6. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Saturday, 13-Oct-2018 14:42:29 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, 13-Oct-2018 14:42:29 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?
  7. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Saturday, 13-Oct-2018 02:32:29 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, 13-Oct-2018 02:32:29 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?
  8. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Friday, 12-Oct-2018 14:30:20 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    About the Execute Bit
    https://yesik.it/blog/2018-the-x-permission-bit

    #Linux #Permissions #Chmod

    In conversation Friday, 12-Oct-2018 14:30:20 EDT from mastodon.social permalink

    Attachments

    1. Invalid filename.
      About the Execute Bit
      from Yes I Know IT!
      What is the purpose of the execute (`x`) bit? And why directories have that bit too? After all, they are not executable! And what if my filesystem does not support Unix standard permissions? Find all the answers here. And more...
  9. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Wednesday, 03-Oct-2018 16:59:40 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Basic Vim Commands Every Linux User Must Know

    https://linuxhandbook.com/basic-vim-commands/
    #vim

    In conversation Wednesday, 03-Oct-2018 16:59:40 EDT from mastodon.social permalink
  10. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Wednesday, 03-Oct-2018 10:44:39 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    9 Useful Examples of Touch Command in Linux

    https://linuxhandbook.com/touch-command/
    #touch #unix #linux #command

    In conversation Wednesday, 03-Oct-2018 10:44:39 EDT from mastodon.social permalink
  11. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Wednesday, 03-Oct-2018 04:57:58 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    File Timestamps in Linux: atime, mtime, ctime Explained

    https://linuxhandbook.com/file-timestamps/
    #atime #mtime #ctime #unix #linux

    In conversation Wednesday, 03-Oct-2018 04:57:58 EDT from mastodon.social permalink
  12. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Tuesday, 02-Oct-2018 22:31:23 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Handle Line Breaking With Fold and FMT Commands in Linux Terminal

    https://linuxhandbook.com/fold-fmt-commands/
    #fold #fmt #shell #command #linebreaks #newline

    In conversation Tuesday, 02-Oct-2018 22:31:23 EDT from mastodon.social permalink
  13. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Tuesday, 02-Oct-2018 16:37:29 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Linux File Permissions and Ownership Explained with Examples

    https://linuxhandbook.com/linux-file-permissions/
    #linux #file #permissions

    In conversation Tuesday, 02-Oct-2018 16:37:29 EDT from mastodon.social permalink
  14. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Tuesday, 02-Oct-2018 10:06:03 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    5 Practical Examples of chgrp command in Linux

    https://linuxhandbook.com/chgrp-command/
    #chgrp #shell #command

    In conversation Tuesday, 02-Oct-2018 10:06:03 EDT from mastodon.social permalink
  15. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Tuesday, 02-Oct-2018 04:05:09 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    9 Simple Ways to Effectively use Less Command in Linux

    https://linuxhandbook.com/less-command/
    #less #shell #command

    In conversation Tuesday, 02-Oct-2018 04:05:09 EDT from mastodon.social permalink
  16. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Monday, 01-Oct-2018 22:09:54 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    WC Command Examples: Count Number of Lines, Words & Characters in Linux

    https://linuxhandbook.com/wc-command/
    #wc #wordcount #shell #command

    In conversation Monday, 01-Oct-2018 22:09:54 EDT from mastodon.social permalink
  17. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Monday, 01-Oct-2018 20:03:57 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Monitoring and Testing the Health of SSD in Linux

    https://linuxhandbook.com/check-ssd-health/
    #smart #ssd #hd #monitoring #smartctl #shell #command

    In conversation Monday, 01-Oct-2018 20:03:57 EDT from mastodon.social permalink
  18. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Monday, 01-Oct-2018 14:24:55 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    5 Practical Examples of Tail Command in Linux

    https://linuxhandbook.com/tail-command/
    #tail #shell #command

    In conversation Monday, 01-Oct-2018 14:24:55 EDT from mastodon.social permalink
  19. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Monday, 01-Oct-2018 09:07:39 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    7 Essential and Practical Usage of Paste Command in Linux

    https://linuxhandbook.com/paste-command/
    #paste #posix #shell #command

    In conversation Monday, 01-Oct-2018 09:07:39 EDT from mastodon.social permalink
  20. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Monday, 01-Oct-2018 03:12:54 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Load balancing with HAProxy, Nginx and Keepalived in Linux

    https://linuxhandbook.com/load-balancing-setup/
    #Nginx #HAProxy #Keepalived #WebServer #LoadBalancing #Linux

    In conversation Monday, 01-Oct-2018 03:12:54 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.