The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 4,262 other subscribers

Archive for March 15th, 2019

Is It Better to Rent or Buy? – The New York Times

Posted by jpluimers on 2019/03/15

[WayBackIs It Better to Rent or Buy? – The New York Times

Via: [WayBack] This is the #calculator you need in your life but no one ever told you about. Is it better for you to #rent or #own a #property? Drag the sliders for yo… – Jason Mayes – Google+

Source: This is the #calculator you need in your life but no one ever told you about….

–jeroen

Read the rest of this entry »

Posted in LifeHacker | Leave a Comment »

scp a remote file to a local machine

Posted by jpluimers on 2019/03/15

For me, scp is like tar; somehow I Google this every time…

  1. On the remote machine, find out the full path of the remote file:
    ~ # ssh username@192.168.71.123
    ...
    ~ # ls -alh `find /vmfs/volumes/ | grep -w W81Entx64CI | grep '\.vmdk$'`
    -rw-------    1 root     root      200.0G Aug 26 22:48 /vmfs/volumes/552f5788-33e30274-8dba-001f29022aed/VM/PSO/W81Entx64CI/W81Entx64CI-flat.vmdk
    -rw-------    1 root     root         500 Aug 19 16:36 /vmfs/volumes/552f5788-33e30274-8dba-001f29022aed/VM/PSO/W81Entx64CI/W81Entx64CI.vmdk
    
  2. On the local machine, go to the right directory, then copy the file from the remote machine:
    ~ # cd /vmfs/volumes/Samsung512NVME/PSO/VM/W81Entx64CI/
    ~ # time scp -v username@192.168.71.123:/vmfs/volumes/552f5788-33e30274-8dba-001f29022aed/PSO/W81Entx64CI/W81Entx64CI-flat.vmdk W81Entx64CI-flat.vmdk

 

I don't know what's worse--the fact that after 15 years of using tar I still can't keep the flags straight, or that after 15 years of technological advancement I'm still mucking with tar flags that were 15 years old when I started.

I don’t know what’s worse–the fact that after 15 years of using tar I still can’t keep the flags straight, or that after 15 years of technological advancement I’m still mucking with tar flags that were 15 years old when I started.

The last line will logon over ssh and shows the file transfer in a verbose way.

Requirements:

  • both machines have ssh
  • local machine has firewall entry to allow client ssh
  • remote machine has sshd and firewall entry to allow sshd server connections

Via [WayBackshell – How to scp a folder from remote to local? – Stack Overflow (thanks [WayBack] Gryphius)

Image source: [WayBackxkcd: tar

–jeroen

Posted in Communications Development, Development, Internet protocol suite, SSH, TCP | Leave a Comment »

(24) 8 KNOTS You Need to Know – How to tie knots that you will actually use. – YouTube

Posted by jpluimers on 2019/03/15

  1. Chain Sinnet (AKA Daisy Chain or Monkey Chain)
  2. Farrimond Friction Hitch
    https://nl.scoutwiki.org/Farrimond_steek
  3. Trucker’s Hitch
  4. Constrictor Knot
    https://nl.scoutwiki.org/Constrictorknoop
  5. Cow Hitch
    ringknoop
  6. Half hitch
    https://nl.scoutwiki.org/Halve_steek
  7. Fisherman’s Bend
    https://nl.scoutwiki.org/Vissersknoop
  8. Water Knot

Dutch / English knot translations via

Via the comments: the Automatic Trucker’s Hitch:

–jeroen

Posted in LifeHacker, Power User | Leave a Comment »