sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update && sudo apt-get dist-upgrade
sudo apt-get install wine1.7 winetricks
Download Photoshop Installer
SUBSYSTEM=="usb", ATTRS{idVendor}=="0bb4", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="0e79", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="0502", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="0b05", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="413c", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="0489", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="091e", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="18d1", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="0bb4", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="12d1", MODE="0666", GROUP="plugdev" |
#!/bin/bash | |
# use this following line in the keyboard shortcut entry: | |
# xfce4-terminal --drop-down --command=/path/to/dwimux.sh | |
tm=$(tmux list-session) | |
if [ "$tm" ]; then | |
tmux a | |
else |
This example shows how it is possible to use a D3 sunburst visualization (partition layout) with data that describes sequences of events.
A good use case is to summarize navigation paths through a web site, as in the sample synthetic data file (visit_sequences.csv). The visualization makes it easy to understand visits that start directly on a product page (e.g. after landing there from a search engine), compared to visits where users arrive on the site's home page and navigate from there. Where a funnel lets you understand a single pre-selected path, this allows you to see all possible paths.
Features:
(function (unsafeWindow) { | |
// ==UserScript== | |
// @name total earning in envato marketplace items | |
// @creator dwiash | |
// @include http://codecanyon.net/* | |
// @include http://activeden.net/* | |
// @include http://audiojungle.net/* | |
// @include http://themeforest.net/* | |
// @include http://videohive.net/* | |
// @include http://graphicriver.net/* |
[Dialer Defaults] | |
Init = ATZ | |
Init = ATQ0 V1 E1 S0=0 &C1; &D2; +FCLASS=0 | |
Modem Type = USB Modem | |
Baud = 921600 | |
Modem = /dev/ttyUSB0 | |
Phone = #777 | |
Username = smart | |
Password = smart | |
New PPPD = yes |
[Dialer Defaults] | |
Init1 = ATZ | |
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 | |
Stupid Mode = 1 | |
Modem Type = Analog Modem | |
ISDN = 0 | |
Phone = #777 | |
New PPPD = yes | |
Modem = /dev/ttyUSB0 | |
Username = smart |
# put this following lines into /etc/udev/rules.d/haier-port-blacklist.rules | |
ACTION!="add|change", GOTO="mm_haier_port_types_end" | |
SUBSYSTEM!="tty", GOTO="mm_haier_port_types_end" | |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="201e", GOTO="mm_haier_vendorcheck" | |
GOTO="mm_haier_port_types_end" | |
LABEL="mm_haier_vendorcheck" | |
SUBSYSTEMS=="usb", ATTRS{bInterfaceNumber}=="?*", |
<?php | |
add_filter('woocommerce_product_tabs', 'lame_custom_product_tab_filter', 123); | |
function lame_custom_product_tab_filter($args){ | |
$args[] = array( | |
'title' => 'Custom tab', | |
'priority' => 999, | |
'callback' => 'lame_custom_product_tab' | |
); |
// ==UserScript== | |
// @name Display total earning in every envato marketplace item page | |
// @include http://codecanyon.net/* | |
// @include http://activeden.net/* | |
// @include http://audiojungle.net/* | |
// @include http://themeforest.net/* | |
// @include http://videohive.net/* | |
// @include http://graphicriver.net/* | |
// @include http://3docean.net/* | |
// @include http://marketplace.tutsplus.com/* |