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 1,828 other subscribers

Archive for the ‘Uncategorized’ Category

Kerlink IoT station page | LoRa | Semtech

Posted by jpluimers on 2016/11/07

This can be used for TheThingsNetwork.org.

Some downloads:

Attachments
File Last modified Size
Kerlink_gateway_channel_setup_v0.2.pdf 2015-05-18 17:20 838Kb
Kerlink_gateway_installation_R7.pdf 2015-08-13 14:32 805Kb
Python_gateway_spectrum_display.zip 2015-04-09 15:54 10Kb
kerlink_IoT_LoRa_update.zip 2015-08-13 14:27 63Kb
kerlink_IoT_LoRa_update_DHCP.zip 2015-08-13 14:27 64Kb

Source: Kerlink IoT station page | LoRa | Semtech

Posted in *nix, IoT Internet of Things, LoRa - Long Range wireless communications network, Network-and-equipment, Power User, Uncategorized | Leave a Comment »

Apple says new MacBook Pro’s 16GB RAM limitation is to maintain battery life efficiency | 9to5Mac

Posted by jpluimers on 2016/10/29

Yeah right: Apple says new MacBook Pro’s 16GB RAM limitation is to maintain battery life efficiency | 9to5Mac

Posted in Uncategorized | Leave a Comment »

Merging multiple commands and piping it to one output.

Posted by jpluimers on 2016/10/20

The unix shell is hard, but boy, sometimes it can work like magic, for instance piping two testssl.sh commands into one gist:

retinambpro1tb:testssl.sh jeroenp$ ( ./testssl.sh --version ; ./testssl.sh --local ) | gist -d "testsll version and local ciphers for Mac OS X Darwin binarries supporting zlib"
https://gist.github.com/701496d7fbf929967aa1

The source of this magic was this AskUbuntu answer: How to merge and pipe results from two different commands to single command? – Ask Ubuntu

–jeroen

via: openssl.Darwin.x86_64 lacks zlib support · Issue #164 · drwetter/testssl.sh

Posted in *nix, *nix-tools, bash, bash, Development, Power User, Scripting, Software Development, Uncategorized | Leave a Comment »

Viewing an USB camera on Mac OS X without mirroring

Posted by jpluimers on 2016/10/03

Even though Photo Booth has an “Auto Flip New Items” option, but that only works for stills, not videos.

I needed it to see without mirroring the images from a DBPOWER 2 Million Pixels Cmos 7M/23FT USB Waterproof HD 6-led Borescope Endoscope Inspection Tube Visual Camera.

What does work are these:

I forget how I bumped into QCamera, but later I found out he posted on apple.stackexchange.com.

–jeroen

Posted in Uncategorized | Leave a Comment »

Moeder na zoveelste zorgaanvraag: huilen staat me nader dan het lachen | NOS

Posted by jpluimers on 2016/09/21

http://nos.nl/artikel/2133703-moeder-na-zoveelste-zorgaanvraag-huilen-staat-me-nader-dan-het-lachen.html

Posted in Uncategorized | Leave a Comment »

Why the Apple II ProDOS 2.4 Release is the OS News of the Year « ASCII by Jason Scott

Posted by jpluimers on 2016/09/18

http://ascii.textfiles.com/archives/5054

Posted in Uncategorized | Leave a Comment »

linux – How do I increase the scrollback buffer in a running screen session – Stack Overflow

Posted by jpluimers on 2016/09/04

The man page explains that you can enter command line mode in a running session by typing Ctrl+A, :, then issuing the scrollback <num> command.

Source: linux – How do I increase the scrollback buffer in a running screen session – Stack Overflow

Posted in Uncategorized | Leave a Comment »

Getting the internal TeeChart version numbers

Posted by jpluimers on 2016/08/30

Even though TeeChart uses a year and minor version number during installation, that’s not the only version number available or used.

For instance their bug reporting site bugs.teechart.net uses build versions.

They are easy to get for your product: just look at the units TeeConst, VCLTee.TeeConst or FMXTee.Constants having consts like these:

TeeChartVersion =String('9'); // Cast to String to force CPP *.hpp generation as AnsiString instead of AnsiChar
TeeProductName =String('2015');
TeeVCLMinorVersion ='.15'; // ie: '.01' '.02' , etc
TeeVCLBuildVersion ='150420'; //YYMMDD
TeeVCLBuildVersionInteger = 150420; // <-- Same as above as integer number

You probably get the drift:

  • TeeProductName.TeeVCLMinorVersion is what you see when installed.
  • TeeVCLBuildVersion is what is on the bug report site.
  • TeeChartVersion is in the package names.

It’s sort of documented as well: Steema Central • View topic – How to find TeeChart version number at runtime?

–jeroen

Posted in Uncategorized | Leave a Comment »

`Known IDE Packages` in Delphi prompted by a comment +Jeroen Wiert Pluimers made

Posted by jpluimers on 2016/06/08

Known IDE Packages in DelphiPrompted by a comment +Jeroen Wiert Pluimers ‘s Google+ post I had a look at what is actually listed in  [HKEY_CURRENT_USER\Software\Borland|Codegear|Embarcadero\BDS|Delphi\#.0\Known IDE Packages] … – Thomas Mueller (dummzeuch) – Google+

Source: Known IDE Packages in Delphi Prompted by a comment +Jeroen Wiert Pluimers ‘s…

Related:

Posted in Delphi, Development, Software Development, Uncategorized | 1 Comment »

Chrome “Developer Tools” to the rescue. Literally: to salvage a pending forum post.

Posted by jpluimers on 2016/06/02

Lessons learned

  1. Don’t trust online text entry.
  2. Always compose answers in an external text editor, preferably one that understands the markup used (Atom often is a good choice).
  3. Post when ready.
  4. Wonder why every forum software seems to have invented their own markup.

The story

A few weeks ago, while composing an extensive answer on the Scooter Software: Home of Beyond Compare (a tool which – like any development tool – I really love, but sometimes hate): Keyboard handling driving me nuts: how to make it work like BC for Windows, I pressed the “Image” button which:

  1. Made all the edited text to dim and non-selectable
  2. Failed an image selection to show

It was more than an hour of work, so I was determined to try obtaining at least the post text.

Read the rest of this entry »

Posted in Uncategorized | Leave a Comment »