One of the things that I absolutely love about Linux is the package manager. It was the thing that took the most getting used to when I switched from Windows, but now that I'm in the habit of apt-getting almost everything I need (especially as a developer) it's hard not to have it on other platforms. This year, I switched my life to Mac and am loving it, but I still miss my package manager. Enter homebrew , a package management system for Mac. I was suspicious for a while about this solution, since I'm not really comfortable with installing packages that aren't part of a trusted repository. My friend David convinced me to give it a try and I think the transparency of the system and the degree to which it keeps things nicely isolated soothes most of my concerns. I run my mac as a non-admin user for day-to-day work. This is a best practice that I think everyone should follow. It did mean that I needed to do things a little bit differently when setting up homebre...
TL;DR Delphi and C++ Builder Starter Editions now Free Many of you may not remember the glory days of Delphi. There was a time when Borland was the king of compilers: Turbo C++, Turbo Pascal, Turbo Basic... The breakthrough was with Delphi, a RAD studio IDE backed by the Pascal programming language (updated with OOP concepts and now called Object Pascal). Delphi provided a drag-and-drop window designer and went head-to-head with Visual Basic. It was wildly popular and the Win32 landscape is littered with important projects that used Delphi. Here are a few: Dev-Cpp (90,760 downloads at Sourceforge last week, by the way) Inno Setup (Popular installer package) WinRAR Just Basic / Liberty Basic FL Studio / Fruity Loops Digital Audio Workstation GameMaker Studio ... In any case, there was a lot of great software made with Delphi. Pascal is pretty good to work with once you master it and the Delphi IDE made it really fast to build desktop applications. We're talking ...
On a Windows machine, it's easy to set a file or folder as hidden (or show it again). On Mac, it isn't quite so obvious. There's no option for this from the UI. Like most Unix-inspired systems, OSX follows the convention that filenames are hidden if they start with a dot ( . ), but this doesn't translate well to Windows which doesn't obey this convention. A good example are the annoying .DS_Store files that OSX leaves behind and stick out like a sore thumb on a Windows filesystem. Well, instead of (or in addition to) prefixing files with a dot, you can set the hidden flag on the file and it won't show up. The command: chflags hidden To clear the hidden flag: chflags nohidden To see all files, even the hidden ones, from the command line: ls -la To show hidden files in Finder, use this command on Mavericks: defaults write com.apple.finder AppleShowAllFiles TRUE Use this for earlier versions of the OS: defaults write com.appl...
Comments
Post a Comment