20 Apr, 2008
Mac Tips
Do you have a mac? Have you ever wanted an application to be hidden from the dock, even when it’s running, but there’s no option to do so? Follow these simple steps and you will have a hidden application.
- Navigate to the application in Finder (Usually ~/Applications/)
- Right-click (or control-click) on the application and select “Show Package Contents”
- Open Contents/info.plist
- Find a line that looks like:
- If it doesn’t exist, enter these two lines right before the </dict> tag:
<key>NSUIElement</key>
<string>1</string>
- Save the file and (re)start the program.
- You’re done!
6 Apr, 2008
Browsers CSS Web
After hunting and pecking for a way to effectively implement a background gradient without an image (because it poses a scrolling problem, see below), I came up empty. UNLESS you are using (in my opinion) worst internet browser ever created: Internet Explorer, but that’s the topic of another post. The point is there is no way to implement a gradient with simple CSS. I think that this feature should be implemented but that’s just me.
As mentioned above, using an image you run into a problem when the page is longer then the original image (if you’re repeating width-wise) or wider then the original image (if you’re repeating length-wise).
Bottom line: we need a gradient CSS hack/implementation.