- http://i.cmaas.net/pc/Linux/Wine/1368700507 (ja)
- https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/939301
- https://forums.ubuntulinux.jp/viewtopic.php?id=13910 (ja)
- OS: Knoppix 7.0.3 LCR
- DE: LXDE
| /* Free to use for everyone */ | |
| /* Example: http://codepen.io/elwint/pen/vGMRaB */ | |
| body { | |
| font-family: sans-serif; | |
| background-color: #111; | |
| } | |
| .button { | |
| display: inline-block; |
| var $window = $(window) | |
| /* Restore scroll position */ | |
| window.scroll(0, localStorage.getItem('scrollPosition')|0) | |
| /* Save scroll position */ | |
| $window.scroll(function () { | |
| localStorage.setItem('scrollPosition', $window.scrollTop()) | |
| }) |
| #!/bin/bash | |
| #============================================================================== | |
| #TITLE: mysql_backup.sh | |
| #DESCRIPTION: script for automating the daily mysql backups on development computer | |
| #AUTHOR: tleish | |
| #DATE: 2013-12-20 | |
| #VERSION: 0.4 | |
| #USAGE: ./mysql_backup.sh | |
| #CRON: | |
| # example cron for daily db backup @ 9:15 am |
| # vi: set ft=ruby : | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| config.vm.box = "ubuntu-14.04" | |
| config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box" | |
| config.vm.network :forwarded_port, guest: 80, host: 8888 |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant::Config.run do |config| | |
| # All Vagrant configuration is done here. The most common configuration | |
| # options are documented and commented below. For a complete reference, | |
| # please see the online documentation at vagrantup.com. | |
| # Every Vagrant virtual environment requires a box to build off of. | |
| config.vm.box = "kohadeps" |
| <?php | |
| /* | |
| * Resize images dynamically using wp built in functions | |
| * Victor Teixeira | |
| * | |
| * php 5.2+ | |
| * | |
| * Exemplo de uso: | |
| * | |
| * <?php |