Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

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

  1. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Sunday, 07-Jul-2019 12:38:50 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Test Your GitHub Repositories with Docker in 5 Minutes

    https://developer.okta.com/blog/2018/09/27/test-your-github-repositories-with-docker-in-five-minutes
    #Docker #Git #GitHub #Deployment

    In conversation Sunday, 07-Jul-2019 12:38:50 EDT from mastodon.social permalink
  2. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Sunday, 07-Jul-2019 11:13:15 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    I'm not into gaming, but apparently, Linux is gaining shares on that market too.

    I'm not sure though if it is about games developed for Linux. Or about running Windows games on Linux.
    https://www.youtube.com/watch?v=IWJUphbYnpg

    #Linux #Gaming

    In conversation Sunday, 07-Jul-2019 11:13:15 EDT from mastodon.social permalink

    Attachments

    1. Linux Gaming FINALLY Doesn't SUCK!
      By Linus Tech Tips from YouTube
  3. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Sunday, 07-Jul-2019 04:52:33 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    I'm a regular used of `hexdump` to view an hexadecimal dump of a file.
    But I wasn't aware of the `hexcurse` hexadecimal *editor*.

    https://www.maketecheasier.com/using-hex-editor-linux
    #hexcurse #ghex #hexadecimal #editor #linux

    In conversation Sunday, 07-Jul-2019 04:52:33 EDT from mastodon.social permalink
  4. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Saturday, 06-Jul-2019 17:30:28 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Another excellent cheatsheet by Jeremy Stretch:

    http://packetlife.net/media/library/6/IPsec.pdf
    Follow him on Twitter (https://twitter.com/packetlife/) and check his website for more (http://packetlife.net/)
    #IPSec #IP #Network #Security #Layer #Cheatsheet

    In conversation Saturday, 06-Jul-2019 17:30:28 EDT from mastodon.social permalink
  5. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Saturday, 06-Jul-2019 11:38:28 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    If your work is even slightly network-related, you should know how to use Wireshark .

    Take a look at that tutorial to learn more:
    https://www.howtogeek.com/107945/how-to-identify-network-abuse-with-wireshark/
    by Chris Hoffman (https://twitter.com/chrisbhoffman)
    #Wireshark #Network #Scanning

    In conversation Saturday, 06-Jul-2019 11:38:28 EDT from mastodon.social permalink

    Attachments

    1. How to Identify Network Abuse with Wireshark
      from How-To Geek
      Wireshark is the Swiss Army knife of network analysis tools. Whether you’re looking for peer-to-peer traffic on your network or just want to see what websites a specific IP address is accessing, Wireshark can work for you.
  6. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Saturday, 06-Jul-2019 07:54:26 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    `sed` is a great tool -- but the syntax is not always obvious.

    Whether you're a beginner or a more advanced user looking for a memory
    aid, this cheatsheet will help you remember the most basic `sed` commands:
    https://www.yesik.it/SEDCS1

    #Sed #Cheatsheet #Linux #Shell

    In conversation Saturday, 06-Jul-2019 07:54:26 EDT from mastodon.social permalink

    Attachments

    1. The Sed Cheatsheet
      from Yes I Know IT!
      `Sed` is really a great tool to filter & transform text -- but the syntax is not always easy. Whether you're a beginner or a more advanced user looking for a memory aid, this cheatsheet will help you remember the basic `sed` commands.
  7. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Saturday, 06-Jul-2019 01:20:28 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Install NodeJS from the sources on your Linux box. Useful if you need a very specific version of NodeJS (or simply, if you want to try out the latest cutting-edge version).
    That's also a very good way to make your first steps in installing software from sources! Aspiring developers will even be happy to make their first change to the source of NodeJS, to impress their peer with a customized version message ;)

    https://itsfoss.com/install-software-from-source-code/
    #Linux #Compiling #NodeJS

    In conversation Saturday, 06-Jul-2019 01:20:28 EDT from mastodon.social permalink

    Attachments

    1. How to Install Software from Source Code in Linux [Complete Guide]
      from It's FOSS
      Sooner or later you will have to compile some software from sources. This article guides you through that (not so) epic journey by showing you how to compile and install NodeJS from scratch on Debian and Red-Hat/CentOS based systems.
  8. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Friday, 05-Jul-2019 12:29:28 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    In your #shell, the `type` build-in command shows how a name would be interpreted if used as a
    command name:

    type cd ls rm adb
    => cd is a shell builtin
    => ls is aliased to `ls --color=auto'
    => rm is hashed (/bin/rm)
    => adb is /opt/android-sdk-linux/platform-tools/adb

    In conversation Friday, 05-Jul-2019 12:29:28 EDT from mastodon.social permalink
  9. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Thursday, 30-May-2019 15:25:26 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 Thursday, 30-May-2019 15:25:26 EDT from mastodon.social permalink
  10. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Thursday, 30-May-2019 10:06:31 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 Thursday, 30-May-2019 10:06:31 EDT from mastodon.social permalink
  11. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Thursday, 30-May-2019 04:30:57 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    seq 10 | awk NR%2
    Keep odd lines of a file

    #AWK #Shell

    In conversation Thursday, 30-May-2019 04:30:57 EDT from mastodon.social permalink
  12. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Wednesday, 29-May-2019 22:55:04 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“
    • Docker

    If you ever had to connect to an Oracle backend, you may know how painful it used to be to set up an Oracle Instance on your test/dev host.

    Thanks to @Docker, it is now several orders of magnitude simpler!

    https://yesik.it/EP18

    #Oracle #Database
    #Docker #Container
    #Linux

    In conversation Wednesday, 29-May-2019 22:55:04 EDT from mastodon.social permalink
  13. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Wednesday, 29-May-2019 18:30:22 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 Wednesday, 29-May-2019 18:30:22 EDT from mastodon.social permalink
  14. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Wednesday, 29-May-2019 12:20:56 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    In Bash `$(<file)` is equivalent to `$(cat file)`, but faster:

    P=( $(</etc/passwd) )
    echo ${P[0]}

    #Bash #Linux #Cat

    In conversation Wednesday, 29-May-2019 12:20:56 EDT from mastodon.social permalink
  15. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Wednesday, 29-May-2019 05:48:35 EDT 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 Wednesday, 29-May-2019 05:48:35 EDT 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!
  16. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Tuesday, 28-May-2019 23:25:09 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    In a #sed substitution pattern, you can use any character as a separator instead of /
    Useful for path or urls:
    s!/usr/local!/opt!

    #Linux #UNIX

    In conversation Tuesday, 28-May-2019 23:25:09 EDT from mastodon.social permalink
  17. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Tuesday, 28-May-2019 18:00:28 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Very great description of the difference between VMs and Containers
    by @mikegcoleman
    https://blog.docker.com/2016/03/containers-are-not-vms/

    #Docker #Containers

    In conversation Tuesday, 28-May-2019 18:00:28 EDT from mastodon.social permalink

    Attachments

    1. File without filename could not get a thumbnail source.
      Containers are not VMs
      By Mike Coleman from Docker Blog
      Containers are not VMs
  18. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Tuesday, 28-May-2019 15:30:38 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    From a POSIX shell `$OLDPWD` holds the name of the previous working directory:
    cd /tmp
    echo You are here: $PWD
    echo You were here: $OLDPWD
    cd $OLDPWD

    #Unix #Linux #Shell #cd

    In conversation Tuesday, 28-May-2019 15:30:38 EDT from mastodon.social permalink
  19. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Tuesday, 28-May-2019 09:30:02 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    When using the find command, use `-iname` instead of `-name` for case-insensitive search
    #Unix #Linux #Shell #Find

    In conversation Tuesday, 28-May-2019 09:30:02 EDT from mastodon.social permalink
  20. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Tuesday, 28-May-2019 04:08:41 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“
    • Docker

    If you ever had to connect to an Oracle backend, you may know how painful it used to be to set up an Oracle Instance on your test/dev host.

    Thanks to @Docker, it is now several orders of magnitude simpler!

    https://www.yesik.it/EP18

    #Oracle #Database
    #Docker #Container
    #Linux
    #YesIKnowIT

    In conversation Tuesday, 28-May-2019 04:08:41 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.