Monday 30 September 2013

WikiMindMap

WikiMindMap is a tool to browse easily and efficiently in Wiki content, inspired by the mindmap technique.
http://www.wikimindmap.org/

Saturday 28 September 2013

android: list of apps/software i regularly use

9gag
adobe reader
afterfocus
bicing
blogger
chess free
chrome
chrome to phone
clean master
drive
dropbox
google earth
eltenedor.es
fbreader
feedly
flickr
astro
google analytics
aws console
prestashop mobile
gmail
gnucash
google+
grooveshark
hangouts
instagram
keepassdroid
linterna
google maps
meetup
movie studio
my tracks
pixlr-o-matic
power note
quickoffice
retouch free
skype
smart voice recorder
tasks free
tmb virtual
google translator
twitter
ubuntu one
viber
whatsapp
winamp
wlanaudit
wordpress
wunderlist
youtube

ubuntu: list of software i regularly use

thunderbird
chrome
firefox
vlc
keepassx
skype
skype call recorder
sublime text
filezilla
transmission
dragondisk
focuswriter
kapow punch clock
shutter
radio tray
alarm clock
dropbox
syncdrive
system load indicator
ubuntu one
classicmenu indicator
aptana
gimp
inkscape
libreoffice
pencil
gtimelog
tomate
pdf mod
xournal
wifi radar
wireshark
calibre
freemind
planner
gnucash
fbreader
smartgit
rabbitvcs
poedit
playonlinux
wine
brasero
recordmydesktop
openshot
handbrake
format junkie
gespeaker
gnomad 2
meld
ubuntu tweak
flickr uploader

Tuesday 24 September 2013

mobile devices icon sizes


Icon size:
  • iOS: 57x57, 72x72, 114x114 and 144x144.
  • Android: 48x48, 72x72, 96x96, 144x144.
then resize through code.



more...
http://developer.android.com/design/style/iconography.html
http://www.creativefreedom.co.uk/icon-designers-blog/android-app-icon-size-guide-4-0/
https://developer.apple.com/library/ios/documentation/userexperience/conceptual/mobilehig/LayoutandAppearance.html#//apple_ref/doc/uid/TP40006556-CH54-SW1

android: quick remote debugging on android with google chrome

1. Android

  • (only first time) Enable Developer Options in your Android phone: Settings > About phone > tap 7 times.
  • Enable USB debugging: Settings > Applications > Development Options > USB debugging.
  • Open Chrome.
  • Enable USB Web debugging: Settings > Advanced > Developer Tools > USB Web debugging.
  • Connect Android to the computer via USB.

2. Computer

  • Open Chrome.
  • Install ADB extension.
  • Start ADB extension: ADB Plugin > Start ADB
  • Inspect target: ADB Plugin > View Inspection Targets
Source

Monday 23 September 2013

Top 15 Must Have WordPress Plugins of 2013

"Top 15 Must Have WordPress Plugins of 2013: infographic" http://www.wordpressintegration.com/blog/top-15-must-have-wordpress-plugins-of-2013-infographic/

prestashop: setup php job in cron service

cron service time format:
* * * * * <instruction>
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday=0 or 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)

cron generators: here and here.

instruction format:
wget -q --spider http://example.com/modules/mymodule/cron.php
(or full path: /usr/bin/wget)
php -f /var/www/module/mymodule/cron.php
(or full path: /usr/bin/php)

Examples:
*/5 * * * * wget -q --spider http://example.com/modules/mymodule/cron.php
*/5 * * * * /usr/bin/php -f /var/www/module/mymodule/cron.php

Thursday 12 September 2013

10 Formas de Reducir las Devoluciones de tu Tienda Online

"10 Formas de Reducir las Devoluciones de tu Tienda Online - PrestaShop Blog EspaƱol" http://www.prestashop.com/blog/es/10-formas-de-reducir-las-devoluciones-de-tu-tienda-online/

prestashop: delete "our stores" from footer links

  • Locate <!-- MODULE Block footer --> in html code
  • Then target your changes to file: 
/prestashop/modules/blockcms/
or
/prestashop/themes/theme-name/modules/blockcms/
  • Delete or comment unnecessary lines:
{if $display_stores_footer}<!-- <li class="item"><a href="{$link->getPageLink('stores')}" title="{l s='Our stores' mod='blockcms'}">{ls='Our stores' mod='blockcms'}</a></li> -->{/if}


prestashop: add javascript and/or css file to a theme


  1. Add js and/or css files in /prestashop/themes/theme-name/js (or css).
  2. Edit /prestashop/classes/controller/FrontController.php.
  3. Add:

<?php
class FrontController extends FrontControllerCore
{
    public function setMedia()
    {
        parent::setMedia(); // CSS files
        Tools::addJS(_THEME_JS_DIR_.'myfile.js');
        Tools::addCSS(_THEME_CSS_DIR_.'myfile.css', 'all');
    }
}

Wednesday 11 September 2013

prestashop: manage newsletter list

create a mysql user with restricted access only to...
database: prestashop + table: prefix_newsletter

prestashop: add javascript file at the end of the html

open the prestashop/themes/theme-name/footer.tpl and add:
    <!-- added -->
    <script type="text/javascript" src="/js/myfile.js"></script>
    <!-- added  -->
</body>
</html>

create new javascript file in prestashop/js/myfile.js