In addition to the two methods mentioned at Two Quick Methods for Finding Shared Folders in Windows (use net share or compmgmt.msc) I like this one:
It directly gets you to the “Shared Folders” inside compmgmt.msc
–jeroen
Posted by jpluimers on 2017/05/01
In addition to the two methods mentioned at Two Quick Methods for Finding Shared Folders in Windows (use net share or compmgmt.msc) I like this one:
It directly gets you to the “Shared Folders” inside compmgmt.msc
–jeroen
Posted in Power User, Windows, Windows 7, Windows 8, Windows 8.1, Windows Server 2000, Windows Server 2003, Windows Server 2003 R2, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, Windows Server 2012 R2, Windows Vista, Windows XP | Leave a Comment »
Posted by jpluimers on 2017/04/29
I’d laugh if it wasn’t so embarrassing: [Archive.is] Troy Hunt: Reckon you’ve seen some stupid security things? Here, hold my beer….
It reminds me of a Dutch agency with > 1 million low income people paying for a service to be on a notification list for rental houses becoming available that was within their legal rental limits.
If you were not on the list, you’d never gain enough points to get a rental home at all.
If you were on the list, then they’d sent your credentials in plain text requiring very limited information.
Your credentials then would reveal name, date of birth, social security number, full address, bank account and some other personal information.
They never notified me if the security complaint I filed was ever addressed.
–jeroen
via:
[WayBack] Ready for some security nightmares? – This is why I Code – Google+
Posted in Power User, Security | Leave a Comment »
Posted by jpluimers on 2017/04/28
HowTo: Wget Command Examples – Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols
Source: HowTo: Wget Command Examples [WayBack]
I totally forgot about
-c switch that continues an aborted download.-r -A combination to only download certain file types.–jeroen
Posted in *nix, *nix-tools, Power User, wget | Leave a Comment »
Posted by jpluimers on 2017/04/28
Some notes as we got an error code 5 (the display showing E5) a while ago.
Our solution was to keep the reset button pressed for a few seconds, then wait for a “reboot” to happen.
Videos from someone else having searched for the E5 cause for 2 months:
E6 was already hinting at a faulty transformer, but the ionisation current definitely confirms that.
Manuals (the first two are almost identical):
–jeroen
Need to contact these in case of trouble as they are experienced: loodgietersbedrijfjongen.nl
Later: we ran into the above problem as well; the problem was the ignition transformer that could not keep the gas ignition current between 3 and 9 µA. The solution was this Remeha part [WayBack] Remeha ontstekingstrafo (incl. ionisatieelectrode) S100012 | Warmteservice. We got there after replacing the burner gasket ring [WayBack] Remeha pakkingring voor brander S103172 | Warmteservice that often solves the problem, is much cheaper and should be replaced every 2 years anyway.
See also
Posted in LifeHacker, Power User | 2 Comments »
Posted by jpluimers on 2017/04/28
The story isn’t a catch-22, but it is still fun to read:
SSH port is 22. The history of how I (Tatu Ylonen) got it. How to configure it through firewalls and iptables.
It also shows how agile the Internet was back then.
Source: [Archive.is] SSH Port
Via: [WayBack] “The SSH (Secure Shell) port is 22. It is not a co-incidence. This is a story I (Tatu Ylonen) haven’t told before.” https://www.ssh.com/ssh/port – This is why I Code – Google+
–jeroen
Posted in Development, History, Internet protocol suite, Software Development, SSH, TCP | Leave a Comment »
Posted by jpluimers on 2017/04/27
Nice find:
Look into the initialization block of FMX.Dialogs. The call to ActivateClassGroup(TFmxObject); turns off all the TRegGroups that don’t contain at least one type that inherits from TFmxObject which also happens to be the group that you register your form class to. GetClass then ignores such groups.
I don’t have the slightest idea what the intention behind all that code is but it certainly is one of the reasons why you cannot mix FMX and VCL officially.
In response to:
I have an VCL application. I need to register some form classes at run time. This is done in the form’s unit implementation section :
Initialization
If GetClass(‘TfmConnectiondialog’) = Nil Then
Classes.RegisterClass(TfmConnectiondialog);Suddenly my class wasn’t registered anymore. GetClass(‘TfmConnectiondialog’) was always nil and Classes.RegisterClass had no effects.
After some long search, I’ve found that I’ve inadvertently added an FMX.Forms in one of my unit. This was the culprit. Replacing FMX.Forms with VCL.Forms solved my problem.
Behaviour is really strange, why Classes.RegisterClass didn’t throw any exception ? Is this a “Bug” or is this “as expected” ?
–jeroen
Source: Hello, I have an VCL application. I need to register some form classes at ru… [WayBack]
Posted in Delphi, Delphi 10 Seattle, Delphi 10.1 Berlin (BigBen), Delphi XE7, Delphi XE8, Development, Software Development | 1 Comment »
Posted by jpluimers on 2017/04/27
Very long read so it’s on my list of things to read when I’ve a day or two to digest all of it: There he goes again. Even if you aren’t really interested in Elon Musk’s latest venture, this Wait but Why article is a must read on its own.#waitbutw… – Jeroen Wiert Pluimers – Google+
Posted in LifeHacker, Power User, science | Leave a Comment »
Posted by jpluimers on 2017/04/27
Brilliant cartoon by Jason Heeris. Don’t interrupt anyone processing a high cognitive load.
Source: Twitpic – Share photos and videos on Twitter (there is also a [WayBack] 2-column PDF – of course A4 sized).
I know it’s been around the interwebz dozens of times. It should rinse, repeat dozens of times more.
via:
–jeroen
Posted in Development, Software Development | Leave a Comment »
Posted by jpluimers on 2017/04/26
TL;DR:
Don’t use
halt, usepoweroffinstead.
A while ago I wrote about OpenSuSE 12.x not halting after a halt:
The same holds for more recent OpenSuSE systems, but ESXi would never tell what was going on.
Recently I installed an OpenSuSE Tumbleweed system under VMware Fusion (running on Mac OS X) which indicated “The CPU has been disabled by the guest operating system.”
Which — Understanding the message: The CPU has been disabled by the guest operating system (2000542) | VMware KB [WayBack] — means that halt will not power down the VM but perform a CLI + HLT on the CPU. This effectively hangs the CPU even though the console log on the right tells does a real Shutdown.
In the past – even under ESXi – a halt would just power down the system, so based on the above I did more digging and fount this very interesting answer in rhel – What is the difference between these commands for bringing down a Linux server? – Unix & Linux Stack Exchange [WayBack] which comes down to:
halt, reboot, shutdown all invoke systemctl [WayBack] calling for a specific target [WayBack].systemctl isolate halt.target has the shorthands:
shutdown -H nowsystemctl halthaltsystemctl isolate reboot.target has the shorthands:
shutdown -r nowtelinit 6systemctl rebootrebootsystemctl isolate poweroff.target has the shorthands:
shutdown -P nowtelinit 0shutdown nowsystemctl poweroffpoweroffsystemctl isolate rescue.target has the shorthands:
telinit 1systemctl rescuesystemctl isolate multi-user.target has the shorthands:
telinit 2telinit 3telinit 4systemctl isolate graphical.target has the shorthand:
telinit 5For a SysV [WayBack] init runlevels versus systemd targets see:
The systemd parameters making things a bit confusing, for instance you can do reboot --halt and more of those shown in linux – Are there any good reasons for halting system without cutting power? – Super User [WayBack].
That also explains that halt without a powerdown can be useful: it for instance gives the end-user the opportunity to click the reset button instead of the power button after a halt.
–jeroen
Posted in *nix, Linux, openSuSE, Power User, SuSE Linux, systemd, SysVinit, Tumbleweed | Leave a Comment »
Posted by jpluimers on 2017/04/26
Printing Markdown with GitPrint
Simply view any Markdown file on GitHub, then in your URL bar replace the github.com part of the URL with gitprint.com — your markdown file will be rendered to a beautiful, printable PDF.
Try an example https://gitprint.com/jquery/jquery/blob/master/README.md
Every once in a while I feel like I’ve been living under a stone for years. Today is such a day as gitprint has been around since 2014 and I only noticed it until now.
It’s cool as it prints any github page (including Markdown, RestructuredText, etc) as a PDF file.
Notes:
Posted in Bookmarklet, Development, DVCS - Distributed Version Control, git, GitHub, jQuery, Software Development, Source Code Management, Web Browsers | Leave a Comment »