Thursday, April 17, 2014

Having problem on "DYLD_ environment variables" on Mac Mountain Lion OS?

From the console terminal it suddenly shows :  (I'm using Mountain Lion)

dyld: DYLD_ environment variables being ignored because main executable (/usr/bin/login) is setuid or setgid

I found a link where we can fix the problem. Google directs me the fix to my problem and Here is how to fix it. It will show you the link to download the http://asepsis.binaryage.com/ too. So when I download and install the .dmg file, basically its what ASEPSIS will do it get rid of your .DS_Store files and unnecessary files on your terminal. Just run the .dmg file and the annoying text on the terminal (problem) you're having with will be gone after you restart your machine. ciao!

Wednesday, April 16, 2014

If You Have A Mac, Memorize These 13 Keyboard Tricks


1. If your boss walks by while you're reading this article, press… 
COMMAND + W

2. If your boss walks by and basically everything you're reading is incriminating, press… 
COMMAND + H

3. If you're drowning in a sea of windows...
COMMAND + OPTION + M

4. If you need to cut through the clutter, press...
COMMAND + F3

5. To become a tab-scrolling expert, press..
COMMAND + 1 (and so on)

6. If you're kind of picky about your computer volume, press... 
OPTION + SHIFT + F11
and
OPTION + SHIFT + F12

7. If you need to add a little psychedelic flavor to your day, press...
CONTROL + OPTION + COMMAND + 8

8. If you don't want to watch the entire hour-long YouTube video of your niece's dance recital, press...
1, 2, 3 (and so on)

9. If you frequently write words like "antidisestablishmentarianism," press...
OPTION + DELETE

10. If your vocabulary isn't quite as advanced, try...
CONTROL + COMMAND + D

11. If formatting copied text drives you insane, try...
CONTROL + COMMAND+V

12. If you're a fast reader or a little over-caffeinated, try 
COMMAND + UP
and
COMMAND + DOWN

13. If the feeling of the sun on your face has been permanently replaced with the feeling of your retina display on your face, try... 

CONTROL + OPTION + COMMAND + EJECT

Tuesday, February 18, 2014

Execute it on iOS

It's been awhile since I posted something in here. It's just that I'm quite busy working on my Rent App and some Human Resource job portal projects using Ruby and Ruby on Rails. I found an interested link that attracts my eagerness to work with iOS devices then I got this  https://executeios.com.

It's pretty awesome following their podcast from videos to videos which will enhance your skill in Apple iOS application from scatch.  In fact I'm still on the 2nd day and I learnt alot already.  See for your self and get ready to embrance the Objective-C language on iOS app. Pretty cool … See you for the next post ;-)

Wednesday, September 4, 2013

Apple’s September 10 iPhone Event Now Official As Invites Sent To Press


Apple has just sent out invites for a September 10 special event focusing on iPhone. The event is set to take place at 10 AM PT on the 10th at the Apple Campus in Cupertino, according to the invite, which will probably come as no surprise to those who watch the company and the rumors surrounding its impending product launches.

Wednesday, June 26, 2013

Rails 4.0: Final version released!

Happy to inform you that the Rails 4.0 is release today. Quite excited to play around this upgrade and a sets of package is coming around for this too.

Tuesday, May 21, 2013

Difference Between Rules and Policies

Moving up to a Seniore role made me analys something I miss in my career. It's way back my functional role which I almost forgot.  Now I'm reading some blogs to catch me up on things that I need to plan for the team. First I decided to distinguish Policy vs Rules.

Difference Between Rules and Policies

Friday, April 19, 2013

Install rmagick gem on latest imagemagick. (Problem on Mountain Lion 10.8)

I had earlier a Mac Air at hand and install my Ruby environment for web application development. I came across a problem whereby I need install the gems required to run my apps. And one of those gem that I need is RMajick, which I need to work with images in my RoR or Sinatra applications.

The issue was:  RMagick won't compile with ImageMagick formula version 6.8.0-10

I found an article that fix my problem about RMajick not compiling with ImageMagick formula version 6.8.0-10  and its here =>  https://coderwall.com/p/wnomjg


Basically just follow the link below

$ cd /usr/local/Cellar/imagemagick/6.8.0-10/lib
$ ln -s libMagick++-Q16.7.dylib libMagick++.dylib
$ ln -s libMagickCore-Q16.7.dylib libMagickCore.dylib
$ ln -s libMagickWand-Q16.7.dylib libMagickWand.dylib

After overwriting libMagick files you can now 

brew install --fresh libtool
brew link libtool

Additionally you may switch from RMajick to MiniMajick because RMajick is quite sometime outdated and Homebrew the missing package manager for OS X isn't compiling the later formula.