Great cheat sheet [WayBack] C, Go – Hyperpolyglot
via: [WayBack] C to Go “cheat sheet”Try Go. You might like it.http://golang.org – Kevin Powick – Google+
Posted by jpluimers on 2018/03/06
Great cheat sheet [WayBack] C, Go – Hyperpolyglot
via: [WayBack] C to Go “cheat sheet”Try Go. You might like it.http://golang.org – Kevin Powick – Google+
Posted in C, Development, Go (golang), Polyglot, Software Development | Leave a Comment »
Posted by jpluimers on 2018/03/01
Reminder to self: check out WouterVanNifterick/C-To-Delphi: C To Delphi converter and the state it is in now.
via: [WayBack] Hi, I’ve created a C to Delphi converter.Because it’s been so useful to me that I’ve decided to share it.It converts C code as-you-type, and it keeps… – Wouter van Nifterick – Google+
–jeroen
Posted in C, Delphi, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2018/02/28
With the continued progress of non-local storage and distributed computing., I wonder how this is evolving over time:
[WayBack] +Alan Cox changed my thinking years ago with a simple statement that I’ll paraphrase as: “all (file based) data is a program that gets executed when read”… – Jan Wildeboer – Google+
–jeroen
Posted in Development, Software Development | Leave a Comment »
Posted by jpluimers on 2018/02/27
How cool are these related libraries:
[WayBack] Miguel de Icaza on Twitter: “On my copious spare time, I wrote a console UI toolkit for .NET, check it out: https://t.co/1fMKvcWUyd… “
–jeroen
Posted in .NET, C#, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2018/02/27
On Linux, always remember the splice function makes direct data paths between handles very cheap, so storing it as files is better.
Be sure to read the discussions here:
–jeroen
Posted in Design Patterns, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2018/02/20
Still relevant: [WayBack] Code Review Checklist – CodeProject
[WayBack] Best “Everything Else” Article of November 2016 Ebenezar John Paul – Code Review Checklist… – CodeProject – Google+
–jeroen
Posted in Agile, Code Quality, Code Review, Development, Software Development | Leave a Comment »
Posted by jpluimers on 2018/02/15
When you get a Window like this upon Atom.io start, and starting to report a bug, they guide you to a “start Atom in safe mode first, then try to disable all packages to sort out if it’s a package issue” and point to [WayBack] Debugging: using safe mode.
The problem here is that when you start Atom in safe mode (from the console using atom --safe) then in the preferences you cannot disable packages: clicking on the “Disable” button has absolutely no effect.
This was with atom --version
atom --version
Atom : 1.12.8
Electron: 1.3.13
Chrome : 52.0.2743.82
Node : 6.5.0
I worked around this by editing ~/.atom/config.cson as that already contained a section like this:
core:
disabledPackages: [
"nav-panel"
]
So I wrote a poor-mans little script that generated the inner portion of that block:
pushd ~/.atom && ls -1d packages/*/ | sed 's/packages\// "/g' | sed 's/\//"/g' && popd
which got me this nice list:
"atom-beautify"
"atom-html-preview"
"atom-keyboard-macros"
"atom-wrap-in-tag"
"autocomplete-xml"
"broadcast"
"close-tags"
"color-picker"
"counter"
"emmet"
"export-html"
"file-icons"
"git-plus"
"language-batch"
"language-bbcode"
"language-innosetup"
"language-pascal"
"language-plantuml"
"language-restructuredtext"
"language-routeros-script"
"linter"
"nav-panel-plus"
"nav-panel"
"omnisharp-atom"
"pandoc-convert"
"plantuml-preview"
"print-atom"
"rot13"
"rst-preview-pandoc"
"sort-lines"
"sync-settings"
"tabs-to-spaces"
"xml-formatter"
"xml-tools"
From there, I did a binary search for the offending package: broadcast so I’ve filed an issue there.
–jeroen
Posted in atom editor, Development, Diagram, PlantUML, Power User, Software Development, Text Editors, UML | 1 Comment »
Posted by jpluimers on 2018/02/15
Took me a while to figure out that you can run any command in Atom.io, even if it’s not in the menu or toolbar:
This isn’t very clear in Atom, but what you’re after is this menu item: Toggle Command Palette
Mac OS X: Shift+Command+P:
Windows: Ctrl+Shift+P
–jeroen
via: [WayBack] Where can I run Atom command? – Stack Overflow
Posted in atom editor, Development, Power User, Scripting, Software Development, Text Editors | Leave a Comment »
Posted by jpluimers on 2018/02/14
I’m still amazed this is not in stock Mac OS X:
In Finder > Select a folder > Right click, we get a popup with an option to create a new folder:Is there a way to add menu item New Textfile for adding a new text file?
[WayBack] macos – Right-click, create a new text file. How? – Ask Different
One way is to use Automator scripts, but: scripting…
–jeroen
Posted in Apple, Automator scripts, Development, iMac, Mac, Mac OS X / OS X / MacOS, MacBook, MacBook Retina, MacBook-Air, MacBook-Pro, MacMini, macOS 10.12 Sierra, OS X 10.10 Yosemite, OS X 10.11 El Capitan, OS X 10.9 Mavericks, Power User, Scripting, Software Development | Leave a Comment »