The Wiert Corner – irregular stream of stuff

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

  • My badges

  • Twitter Updates

  • Pages

  • All categories

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

    Join 1,854 other subscribers

How can I debug git/git-shell related problems? – Stack Overflow

Posted by jpluimers on 2020/07/07

Always read the comments (:

Cool tip by Paul Irish (but remember it will dump the binary curl output as well) at [WayBack] How can I debug git/git-shell related problems? – Stack Overflow:

There are a few GIT_TRACE options, beyond the core one. Here’s the über-verbose option: set -x; GIT_TRACE=2 GIT_CURL_VERBOSE=2 GIT_TRACE_PERFORMANCE=2 GIT_TRACE_PACK_ACCESS=2 GIT_TRACE_PACKET=2 GIT_TRACE_PACKFILE=2 GIT_TRACE_SETUP=2 GIT_TRACE_SHALLOW=2 git pull origin master -v -v; set +x

Related: [WayBack] Git – Environment Variables

–jeroen

Posted in Development, DVCS - Distributed Version Control, git, Software Development, Source Code Management | Leave a Comment »

13 Noteworthy Points from Google’s JavaScript Style Guide

Posted by jpluimers on 2020/07/07

If I ever go deep into JavaScript: [WayBack13 Noteworthy Points from Google’s JavaScript Style Guide.

Via: [WayBack] 13 noteworthy points from Google’s Javascript style guide. https://medium.freecodecamp.org/google-publishes-a-javascript-style-guide-here-are-some-key-… – Lars Fosdal – Google+

Read the rest of this entry »

Posted in Development, JavaScript/ECMAScript, Scripting, Software Development | Leave a Comment »

MacOS/OS X/Mac OS X: Keeping an eye on your used disk space

Posted by jpluimers on 2020/07/06

Two tools I like:

GrandPersctive is good at showing a visual overeview. OmniDiskSweeper is better at gradually drilling down.

Easy installation:

brew install caskroom/cask/omnidisksweeper

$ brew install caskroom/cask/grandperspective

–jeroen

Posted in Apple, Mac OS X / OS X / MacOS, Power User | Leave a Comment »

RB450G and “..could not get answer from dns server” – MikroTik

Posted by jpluimers on 2020/07/06

[WayBack] RB450G and “..could not get answer from dns server” – MikroTik: I do not see a default route. It would be the route with “dst-address=0.0.0.0/0.

–jeroen

Posted in Internet, MikroTik, Power User, routers | Leave a Comment »

lifeliners volgen – P2000 monitor (support forums)

Posted by jpluimers on 2020/07/06

[WayBack] lifeliners volgen – P2000 monitor (support forums):

–jeroen

Posted in LifeHacker, Power User | Leave a Comment »

MacOS/OS X/ Mac OS X tip: AppCleaner

Posted by jpluimers on 2020/07/03

[WayBack] AppCleaner helped me get rid of a the gazillion number of versions that GoToMeeting had silently installed and their dependencies.

Gigabytes recovered.

Installing is easy: $ brew install caskroom/cask/appcleaner

AppCleaner is a small application which allows you to thoroughly uninstall unwanted apps.

Installing an application distributes many files throughout your System using space of your Hard Drive unnecessarily.
AppCleaner finds all these small files and safely deletes them.

Simply drop an application onto the AppCleaner window. It will find for the related files and you can delete them by clicking the delete button.

–jeroen

Posted in Apple, Mac OS X / OS X / MacOS, Power User | Leave a Comment »

Cipher: a command-line tool to decrypt/encrypt files and directories (een recursively) on Windows

Posted by jpluimers on 2020/07/03

A while ago, I had to mass encrypt a lot of directories and files on Windows for some directories in an existing directory structure.

This helped me to find out which ones were already done (it lists all encrypted files on all drives; the /n ensures the files or encryption keys are not altered):

cipher.exe /u /n /h

This encrypted recursively in one directory B:\Directory:

cipher /D /S:B:\Directory /A

It also has options to wipe data (/W), export keys into transferrable files (/X) and many more.

If you like the Windows Explorer more then to encrypt/decrypt (it is a tedious process): [WayBack] How do I encrypt/decrypt a file? | IT Pro.

Via:

–jeroen

Posted in Encryption, NTFS, Power User, Security, Windows | Leave a Comment »

Tools I use for audio/video downloading, media conversion and audio editing

Posted by jpluimers on 2020/07/03

A friend asked me what tools I use for downloading media, converting it to various formats (including audio extraction) and audio editing.

It is a surprisingly short list:

Most of it runs out of the box on Mac OS X/MacOS/OS X, as I’ve moved there form Windows for most of my day to day access to systems (there is a great set of Microsoft Remote Desktop in the app store: [Archive.isMicrosoft Remote Desktop 8.0 on the Mac App Store and [Archive.isMicrosoft Remote Desktop 10 on the Mac App Store; I like the first one better).

Audacity shortcuts

Read the rest of this entry »

Posted in Apple, Audacity, Audio, ffmpeg, iMac, Mac, Mac OS X / OS X / MacOS, MacBook, MacBook Retina, MacBook-Air, MacBook-Pro, MacMini, Media, Power User, Remote Desktop Protocol/MSTSC/Terminal Services, SocialMedia, Windows, YouTube, youtube-dl | Leave a Comment »

delphi – How do I build an array of const? – Stack Overflow

Posted by jpluimers on 2020/07/02

As I one day likely need to pas a dynamically created array of const from scratch (which behind the scenes actually is an array of TVarRec, where each element is, TVarRec which is a variant record that can have both values and pointers to values. So the result will be kind of a mess :)

Further reading:

Edit 20251105: also relevant is this excellent article [Wayback/Archive] Rudy’s Delphi Corner – Open array parameters and array of const which was pointed to me [W/A] at Delphi Developers

--jeroen

Posted in Conference Topics, Conferences, Delphi, Development, Event, Software Development | Leave a Comment »

What is pragmatism? Why do I care? How do I practice it? | Agile Uprising

Posted by jpluimers on 2020/07/02

Pragmatism is possibly one of those words you’ve heard 1000 times and feel confident you know what it means. I did. On the surface, it seems like a straightforward concept. The definition is simple: Pragmatism /’praɡmətɪz(ə)m/ (noun) : an approach that evaluates theories or beliefs in terms of the success of their practical application. The philosophy lies at the heart of many aspects of agile. Think about it, empiricism is deeply tied to pragmatism.

Source: [WayBack] What is pragmatism? Why do I care? How do I practice it? | Agile Uprising

Via: [WayBack] Pragmatism debunked – Marjan Venema – Google+

–jeroen

Posted in Agile, Development, Software Development | Leave a Comment »