Recent comments
- Dae on Guacamole 1.4: “Creation of WebSocket tunnel to guacd failed”
- Eric W. on Guacamole 1.4: “Creation of WebSocket tunnel to guacd failed”
- Dae on A trick to change card currency in PayPal when there’s no “Update” button
- Stanislav on A trick to change card currency in PayPal when there’s no “Update” button
- Lobezno on Forcing ReadyNAS to update via SSH when all else fails
Categories
Tags
- accusys gamma
- apogee duet
- applescript
- authentik
- bash
- caps lock
- cyberduck
- datadog
- data storage
- django
- egpu
- extjs
- gpu
- growl
- guacamole
- gulp
- i18n
- illustrator
- javascript
- jquery
- laserjet
- librsvg
- mac administration
- mac hardware
- mac mouse problems
- macos
- mac software
- mdadm
- meta business suite
- modx
- nginx
- paypal
- proxmox
- python
- raid
- readynas
- starcraft 2
- synology
- textmate
- virtualization
- vscode
- windows
- windows server
- xcode
Category Archives: Technical
“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 (I’m talking about MODx Evolution here). In order to restrict access I wrote a simple snippet, which you can now use as … Continue reading
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’);