The library is a simple API in Ruby for Microsoft Translator V2

MsTranslate The library is a simple API in Ruby for Microsoft Translator V2 The Microsoft Translator services can be used in web or client applications to perform language translation operations. The services support users who are not familiar with the default language of a page or application, or those desiring to communicate with people of a different language group. Installation Add this line to your application’s Gemfile: gem ‘ms_translate’ And then execute: ...

March 13, 2012 · 2 min · Carlo Bertini [WaYdotNET]
#AiS #gems #github #ms_transalte #OpenOttica #ruby #ruby #rubygems #tips #traduttore #translate #wrapper

Padrino-admin Twitter Bootstrap v2.0 is ready

(Padrino Admin TwitterBootstrap 2.0) Padrino-Modal: rack-flash and delete function into modal :D highlights error field tof helper: Automatic replace true or false with relative image (list.slim and list.haml) Breadcrumbs Automatic time_ago_in_words when column model is created_at or updated_at Migrate function for MiniRecord Padrino-Modal All result from rack-flash and delete request, now is automatic insert into modal javascript plugin highlights error field tof_helper Automatic replace true or false with relative image (list.slim and list.haml) ...

February 2, 2012 · 1 min · Carlo Bertini [WaYdotNET]
#AiS #bootsrtap #github #OpenOttica #padrino #padrino-admin #padrinorb #ruby #ruby #twitter #twitter bootstrap

Padrino Admin another new layout (based on Twitter Bootstrap v2.0-wip)

http://glowing-leaf-7114.heroku.com/admin/ user: [email protected] pass: test PLEASE DON’T CHANGE LOGIN/PASSWORD Additional feature: ✔ Padrino-Modal: rack-flash and delete function into modal :D ✔ highlights error field ✔ tof helper: Automatic replace true or false with relative image (list.slim and list.haml) ✔ Breadcrumbs ✔ Automatic time_ago_in_words when column model is created_at or updated_at ✔ Migrate function for MiniRecord clone my repository and enjoy :D https://github.com/WaYdotNET/padrino-framework See the code and comment please !!!!

January 30, 2012 · 1 min · Carlo Bertini [WaYdotNET]
#AiS #github #OpenOttica #padrino #padrino-admin #padrinorb #ruby #ruby #twitter #twtitter-bootstrap #waydotnet

Padrino Admin new layout

Hi to all, i’ve publish my version of padrino admin… based on Twitter Bootstrap Login page: Welcome page List user: clone my repository and enjoy :D https://github.com/WaYdotNET/padrino-framework comment please :P

October 24, 2011 · 1 min · Carlo Bertini [WaYdotNET]
#ruby #ruby padrino padrino-admin github #Script

CoffeScript (1.1.1) on Windows: simple method !

CoffeScript (1.1.1) on Windows: simple method ! Inspiration: http://blog.mnasyrov.com/post/2872046541/coffeescript-on-windows-how-to-roast-coffee To use CoffeScript you need: Node.js CoffeeScript Batch file to run CoffeeScript STEP 1: Node.js I’m very very lazy dev… :D And i don’t recompile NodeJs into Windows….. but I’m using v0.4.7 from http://node-js.prcn.co.cc/ [many thx] and install into: D:>cd ToolsNodeJsbin D:ToolsNodeJsbin>node –version v0.4.7 STEP 2: CoffeeScript Use the last version , grab it from https://github.com/jashkenas/coffee-script and install into: D:ToolsCoffeeScript Check version D:ToolsNodeJsbinnode /cygdrive/D/Tools/CoffeeScript/bin/coffee –version CoffeeScript version 1.1.1 ...

June 10, 2011 · 2 min · Carlo Bertini [WaYdotNET]
#batch #CoffeeScript #Javascript #Node.js #OpenOttica #ruby #ruby #Script #tips #Uncategorized #windows

LAZY Agnostic Application Generators (padrino-lazy)

Overview Through padrino-lazy, we can include some common properties shared between the model object used a base model object Padrino is very good framework, and almost follows the DRY principle (Don’t Repeat Yourself) When we need to have some common properties shared between the model object of our ORM, using the generator padrino-gen, We can only include these properties in each model to generate. I hope this idea will be included in Padrino Framework. Principle / Step ...

May 21, 2011 · 2 min · Carlo Bertini [WaYdotNET]
#lazy #linux #orm #padrino #ruby #ruby #Script #tips #Uncategorized

automatic-screenshot-insertion-in-org

Original idea from http://emacsworld.blogspot.com/2011/05/automatic-screenshot-insertion-in-org.html Original script using imagemagick: Using scrot : (defun org-screenshot () “Take a screenshot into a time stamped unique-named file in the same directory as the org-buffer and insert a link to this file.” (interactive) (setq filename (concat (make-temp-name (concat (buffer-file-name) “” (format-time-string “%Y%m%d%H%M%S_”)) ) “.png”)) (call-process “scrot” nil nil nil “-s” filename) (insert (concat “[[” filename “]]”)) (org-display-inline-images))

May 4, 2011 · 1 min · Carlo Bertini [WaYdotNET]
#emacs #linux #org-mode #Script #Script #tips #tips

Multiple X-session :D

startx – :n where n => free graphic session ( > F7 )

February 3, 2011 · 1 min · Carlo Bertini [WaYdotNET]
#bash #Script #shell #tips #tips #xorg #xserver

How to resize LVM logical volumes with ext4 as filesystem

# Unmount the filesystem and check its’ LV umount /mnt/foo e2fsck -f /dev/mapper/vg0-foo # Shrink ext4 and then the LV to the desired size resize2fs -p /dev/mapper/vg0-foo 40G lvreduce -L 40G /dev/mapper/vg0-foo # Before continuing, run e2fsck. If it bails because the partition # is too small, don’t panic! The LV can still be extended with # lvextend until e2fsck succeeds, e.g.: # lvextend -L +1G /dev/mapper/vg0-foo e2fsck -f /dev/mapper/vg0-foo ...

February 3, 2011 · 1 min · Carlo Bertini [WaYdotNET]
#bash #ext4 #linux #lvm #resize #Script #Script #tips #tips

tips: remove control-M with emacs

M-x replace-string C-q C-m return

February 2, 2011 · 1 min · Carlo Bertini [WaYdotNET]
#Script #tips #tips script emacs #Uncategorized