Archives
Categories
Tags
на русском applescript bad programming practices bbedit bootcamp bsod canon caps lock cross-platform issues firefox greasemonkey i18n increasing productivity iphone itunes iwork javascript kaspersky internet security keynote keyremap4macbook mac hardware mac os mac pro mac software modx mootools mouse office pckeyboardhack powerpoint quicktime skype steam vkontakte windows windows firewallLinks
Moonlight Media Productions Group
My websites:
My profiles:Recommended
Category Archives: Technical
Скрипт для замены основного шрифта сайта
Я написал небольшой скрипт для файрфоксовского плагина GreaseMonkey, заменяющий основной шрифт сайта на Helvetica Neue. Это имеет смысл в тех случаях, когда дизайнер сайта использовал шрифт, отсутствующий на вашей Mac OS X, а предлагаемая им же замена выглядит намного хуже … Continue reading
Posted in Solutions
Tagged firefox, greasemonkey, mac software, vkontakte, на русском
Leave a comment
Inability to upload files using any browser on Windows
One my friend who runs Windows XP encountered a strange problem: she couldn’t upload any large (more than ≈100 KB) files using upload forms on websites under any browser. We tried Internet Explorer, Firefox and Chrome with no result, although … Continue reading
Slow startup and sleep problems on MacBook Pro 2,2
Once I noticed that it has been taking up to 5–7 minutes for my MacBook Pro 2,2 to boot (the longest phase of the startup process was the blue screen which usually appears right before the desktop) and additionally, sleep … Continue reading
Create an iPhone ringtone on Mac
This “how to” will guide you through the process of making an iPhone ringtone from a mp3 file using free tools on Mac OS X. I’m pretty sure most of those steps can as well be reproduced on Windows, since … Continue reading
“Building boot caches” error when changing startup disk
Once I tried to change the default startup disk on my Mac running Snow Leopard and the following error appeared: “you can’t change the startup disk to the selected disk. Building boot caches on boot helper partition failed”.
“Failed to expand the files” error
Getting “failed to expand the files” while installing Canon camera software, such as ZoomBrowser Ex? Just turn off your antivirus.
BBEdit preview shows raw PHP code
If your BBEdit preview shows raw PHP code, go to “Preferences” and configure a “HTML web-site” with “Use local preview server” ticked.
Launch character palette using AppleScript in Snow Leopard
tell application “CharacterPalette” to activate There is an issue though: the new character palette doesn’t get “bound” to any of the applications, therefore double-clicking a symbol doesn’t paste it automatically to the text field. You’d have to drag-and-drop. I’m posting … Continue reading
Restrict page access to authorized MODx managers only
A while ago I needed to create a private zone with documentation, accessible only by the MODx managers. In order to restrict access I wrote a simple snippet, which you can now use as well.
Add an <option> to a <select> using Mootools
var newoption = new Option(“option html”, “option value”); try { $(‘myselect’).add(newoption, null); } catch (err) { $(‘myselect’).add(newoption); } To select the newly created option: newoption.setProperty(‘selected’, ‘selected’);