“Dance like no one’s watching.
T-Shirts & Hoodies by Dumb Shirts | Redbubble
–jeroen
Posted by jpluimers on 2017/07/24
Posted in Fun, Quotes, T-Shirt quotes | Leave a Comment »
Posted by jpluimers on 2017/07/22
Since 22/7 is a better approximation for Pi than 3,14: happy Pi approximation day.
–jeroen
Posted in Geeky | Leave a Comment »
Posted by jpluimers on 2017/07/21
It’s been a while ago, but still relevant and available as both Standard PDF [WayBack] and Mobile PDF [WayBack]:
free ebook, Introducing Windows Server 2016 (ISBN 9780735697744), by John McCabe and the Windows Server team. Enjoy!
Source: Free ebook: Introducing Windows Server 2016 – Microsoft Press blog [WayBack]
Via: Ondrej Kelle – Google+ [WayBack]
Posted in Power User, Windows | Leave a Comment »
Posted by jpluimers on 2017/07/21
Posted in Fun, Quotes, T-Shirt quotes | Leave a Comment »
Posted by jpluimers on 2017/07/20
you cannot rename a task except for exporting, renaming and importing again
Source: How do I rename a task in Task Scheduled on Windows Server 2008 R2 – Server Fault [WayBack]
–jeroen
Posted in Power User, Windows | Leave a Comment »
Posted by jpluimers on 2017/07/20
Interesting tool as it just works magically:
Firebird 3.0 – MonitorNeed to monitor you firebird 3.0 database? We have the right tool for you!
–jeroen
Posted in Database Development, Development, Firebird | Leave a Comment »
Posted by jpluimers on 2017/07/19
Cool: [WayBack] Postman offers free (small-project) API developer tools – Open Source Insider.
I’ve used the [Archive.is] Postman – Chrome Web Store for HTTP/HTTPS API testing using various REST services. It’s awesome even though unlike the postmanlabs/postman-chrome-extension-legacy: Postman REST Client Chrome Extension (Legacy Version) it’s not open source any more as it now can run server side and has an API of itself [WayBack].
Get it at [WayBack] Postman | Supercharge your API workflow. Available for Mac OS X, Windows, Linux and Chrome users.
–jeroen
Posted in Communications Development, Development, HTTP, Internet protocol suite, REST, SOAP/WebServices, Software Development, TCP | 2 Comments »
Posted by jpluimers on 2017/07/19
I’ve not tracked down the cause yet, but these seem to be related:
I’ve “fixed” 4. by doing this as recommended at osx – Copy and Cut sometimes don’t work – Ask Different:
launchctl list | grep com.apple.pboardIf the pboard daemon is running, then stop and start it. If it’s not running, start it:
launchctl stop com.apple.pboard launchctl start com.apple.pboard
Now 4. works again if I restart each application, 6. still works, but these applications still cannot copy/paste to 1. 2. and 3.
What does work is a full reboot, but that takes a while (especially Chrome re-loading lots of Windows: I need to get more organised here).
It might be that I need to restart each application in 6.
Grrr…..
–jeroen
Posted in *nix, *nix-tools, Apple, atom editor, Hardware, iMac, Internet, Mac, Mac OS X / OS X / MacOS, MacBook, MacBook Retina, MacBook-Air, MacBook-Pro, MikroTik, Network-and-equipment, OS X 10.10 Yosemite, OS X 10.11 El Capitan, OS X 10.9 Mavericks, Power User, routers, Text Editors, tmux | 4 Comments »
Posted by jpluimers on 2017/07/18
It’s from a while ago, so I wonder if this is still true:
I just got my Embarcadero update to RC6 that includes #10Seattle support.
–jeroen
Source: Can I say that I’m a bit disappointed by the way the Raize acquisition has been…
Posted in Delphi, Development, Software Development | 1 Comment »
Posted by jpluimers on 2017/07/18
Earlier, I wrote “:for loops are a strange beast so I will elaborate on those in a separate post.” so now is the time to do that.
The :for loop documentation is very dense:
Command Syntax Description for :for <var> from=<int> to=<int> step=<int> do={ <commands> }execute commands over a given number of iterations
So a for loop has these elements:
Luckily, the old RouterOS 2.7 documentation on loops (which they’ve revamped after Router OS 2.7 removing many useful examples) has this:
:for – It has one unnamed argument, the name of the loop variable. from argument is the starting value for the loop counter, tovalue is the final value. This command counts loop variable up or down starting at from and ending with to, inclusive, and for each value it executes the do statement. It is possible to change the increment from the default 1 (or -1), by specifying the stepargument.
[admin@MikroTik] > :for i from=1 to=100 step=37 do={:put ($i . " - " . 1000/$i)} 1 - 1000 38 - 26 75 - 13 [admin@MikroTik] >
You might think that from= the start value, to= the finish value and the loop won’t execute when step= a positive value and from= larger than to=. Or that without a step= the loop will always iterate in ascending order.
Wrong! And wrong!
So it’s time for some…
Posted in Development, Internet, MikroTik, Power User, RouterOS, routers, Scripting, Software Development | Leave a Comment »