Posted by jpluimers on 2017/06/02
Just one example; it applies to virtually all consumer IoT and routers I know: upgrading is hard especially if it’s undocumented on how to keep your configuration.
–jeroen
Posted in Internet, IoT Internet of Things, Power User, routers, TomatoUSB | Leave a Comment »
Posted by jpluimers on 2017/06/02
A while ago I had a “fzsftp could not be started” error using FileZilla on Mac OS X.
From the search results, it wasn’t exactly clear what I did wrong, as the “Show Package Contents” context menu showed “…/Contents/MacOS/fzsftp”
Then I remembered I got a bit confused with all the FileZilla updates coming out and renaming it to contain a version number (I do that with many applications so I can keep old versions allowing me to quickly revert to an older version if there are version compatibilities).
Renaming FileZilla.3.16.x.app back to FileZilla.app solved the issue: apparently FileZilla has a hardcoded dependency on exactly that name. I got there because of the hint about spaces in directories from this thread: fzsftp could not be started – FileZilla Forums
This was before Mac OS X El Capitan; with that version you have to set permissions correctly as well: fzsftp could not be started – Kruyswijk-ICT BV
–jeroen
Posted in Apple, Mac, Mac OS X / OS X / MacOS, MacBook, MacBook Retina, MacBook-Air, MacBook-Pro, OS X 10.10 Yosemite, OS X 10.11 El Capitan, OS X 10.8 Mountain Lion, Power User, Security | Leave a Comment »
Posted by jpluimers on 2017/06/01
It looks like the platform-neutral TIdURI from Indy solves some corner cases that WinInet.InternetCrackUrl doesn’t.
Someday I’ll check it against the .NET Uri class and report back about this.
An addition, you might want to extend it as it lacks some features: Indy, TIdURI.PathEncode, URLEncode and ParamsEncode and more | Marc Durdin’s Blog [WayBack]
–jeroen
Source: delphi – How do I parse a web URL? – Stack Overflow
Posted in Delphi, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2017/06/01
The picture tricked me into thinking it was a Makefile for Tic-Tac-Toe, but it is in fact a 174 kilobyte makefile for Conways’ game of life which proofs that make macros are Turing complete.
Source: Makefile Assignments are Turing-Complete « null program
via: Abusing POSIX make to implement Conway’s game of life to demonstrate that make macros are Turing complete, even if there are no if and loop macros. – Kristian Köhntopp – Google+
While running on my Mac, the recursivity will make it fail on lack of resources though.
If seen both these:
sleep: Resource temporarily unavailable
and
make[119]: /bin/sh: Resource temporarily unavailable
make[119]: *** wait: No child processes. Stop.
make[119]: *** Waiting for unfinished jobs....
make[119]: *** wait: No child processes. Stop.

–jeroen
Posted in Development, Makefile, Scripting, Software Development | Leave a Comment »
Posted by jpluimers on 2017/05/31
[WayBack] cov.fefe.de – The Isoblog.
(it was Scheduled for 09:00 UTC, but after all these years, WordPress.com at random still suffers from the “missed schedule” bug)
Brilliant move. Der Spiegel never had a chance, and even Der Postillion is in awe. (Context).
Yes, cov.fefe.de is the same content as blog.fefe.de.
Via: [WayBack] #covfefe punkt de http://blog.koehntopp.info/index.php/1833-cov-fefe-de/ – Kristian Köhntopp – Google+
Background:
–jeroen
Read the rest of this entry »
Posted in Fun, Missed Schedule, SocialMedia, WordPress | Leave a Comment »
Posted by jpluimers on 2017/05/31
A while ago I bumped into applications that write alternating UTF-16 and UTF-8 to files without checking what type of encoding the files were using.
So here are some notes to at least save some of the contents.
TODO: figure out how to strip the BOM.
–jeroen
Posted in Development, Encoding, Software Development, UTF-16, UTF-8, UTF16, UTF8 | Leave a Comment »
Posted by jpluimers on 2017/05/30
Since Google has a hard time searching G+: [WayBack] Anyone ever encountered a “[dcc32 Fatal Error] F2084 Internal Error: DBG3133″… – G+ – Jeroen Wiert Pluimers:
Anyone ever encountered a [dcc32 Fatal Error] F2084 Internal Error: DBG3133 in XE8 or newer?
I get it in XE8 version 22.0.19908.869 intermittently on a huge* project when compiling or building.
If it occurs, I have to:
- restart the IDE
- delete all DCU files
- build
Without deleting the DCU files, even a build throws the error after restarting the IDE.
The project never throws an AV while compiling as described in [WayBack] QC #127380: F2084 Internal error AV0B8A47D2-R3E1D3CF8-0 when compiling project unless the IDE runs out of memory (which I now resolved with DDevExtensions).
Every now and then on compile it also throws [dcc32 Fatal Error] F2084 Internal Error: MA1243.
For the other error, the same solution applies: if you don’t, then the next one is a [dcc32 Fatal Error] F2084 Internal Error: DBG3133.
Both errors occur during the Linking stage.
–jeroen
*huge as in that I needed DDevExtensions to work around [WayBack] Is there any tool that clears the Delphi memory overhead when a “build all” switches to the next project in a project group? XE8 constantly runs out of memory… – Jeroen Wiert Pluimers – Google+
Posted in Delphi, Delphi XE8, Development, F2084, QC, Software Development | Leave a Comment »
Posted by jpluimers on 2017/05/30
ILMerge has all sorts of drawbacks with things like XAML, WPF, NHibernate, dynamically loaded assemblies and reflection.
Jeffrey Richter: Excerpt #2 from CLR via C#, Third Edition | Microsoft Press blog has an interesting approach based on adding a callback to the AppDomain’s ResolveAssembly event with some steps so you can embed assemblies as resources which you then – unlike ILmerge- dynamically resolve.
Those steps require a bit of manual labour which is taken away by MiloszKrajewski/LibZ: LibZ, the alternative to ILMerge.
The repository on github even compresses your assembly resources.
–jeroen
Posted in .NET, .NET 3.0, .NET 3.5, .NET 4.0, .NET 4.5, C#, C# 3.0, C# 4.0, C# 5.0, C# 6 (Roslyn), Development, Software Development | Leave a Comment »