avatar

Andres Jaimes

Hombres G vs Jason Paradise

A quick note for Hombres G fans… on this video they discuss about Jason’s like on iPad’s. Enjoy it.

Cómo agregar la fecha al nombre de un fichero en linux o mac

Agregar la fecha a un nombre de un fichero desde un script es muy útil, pues te permitirá generar nombres únicos para, por ejemplo, crear una lista de respaldos. Aquí os dejo un script muy sencillo que ejemplifica cómo hacerlo: #!/bin/sh dt=`date +%y%m%d` touch ./archivo-$dt Este es un programa muy sencillo el cual asigna a la variable “dt” el resultado de ejecutar el comando date +%y%m%d, el cual devuelve la fecha en formato año, mes y día.

Google+

El día de hoy obtuve una de las codiciadas cuentas en Google+. A primera vista pareciera que estamos tratando con una copia de FaceBook, pues tiene cosas como los mensajes de estado y las fotografías… pero esconde muchas otras más.

Categories

Android (1) Apps (3) Architecture (1) C plus plus (4) C sharp (4) C/c++ (13) Command line (2) Database (1) Databases (5) Delphi (4) Docker (1) Dot net (1) Forex (3) Freebies (1) Freebsd (2) Graphic design (2) Html / css (5) Hugo (1) Ios (2) It management (1) Java (16) Javascript (3) Linux (19) Mac (5) Microentry (6) Mobile (1) Mql (1) Music (1) Mysql (4) Operating systems (15) Oracle xe (2) Other (3) Patterns (2) Photography (3) Php (5) Postgresql (2) Programming (33) Quotes (1) Scala (23) Sin categoría (26) Uml (1) Uncategorized (5) Web (6) Windows (5) Wordpress (5)

Tags

.net (1) Administration (1) Ads (1) Advertisement (1) Akka (1) Android (1) Api (1) Apple (2) Architecture (1) Array (1) Bash (1) Best practices (1) Blog (1) Blogging (1) C (8) C++ (13) C plus plus (5) C sharp (5) Calvin (1) Cartoons (1) Cellphone (1) Cellular (1) Centos (7) Command line (11) Console (6) Css (7) Css3 (5) Database (8) Debug (1) Delphi (3) Design (3) Dns (1) Docker (1) Dos (1) Download (1) Dynamodb (3) Error (1) Exchange (1) Finance (1) Finder (1) Firefox (1) Forex (3) Formats (1) Freebsd (4) Functional programming (1) Git (3) Google (1) Graphic design (3) Graphics (2) Hibernate (1) Hobbes (1) How to (2) Howto (1) Hp (1) Html (1) Html5 (3) Hugo (1) Image (2) Install (2) Ios (2) Ios7 (1) Ipad (3) Iphone (2) Iptables (1) It management (1) Java (19) Javascript (3) Jpa (1) Jquery (1) Laserjet (1) Laws (1) Linux (25) Low light (1) Mac (4) Metatrader (1) Mingw (1) Mobile (3) Module (1) Mongo (3) Mongodb (3) Mountain lion (1) Mql (1) Mssql (1) Music (1) Mysql (7) Netbeans (3) Openjdk (1) Oracle (4) Oracle xe (1) Osx (8) P1102w (1) Patterns (1) Phone (1) Photography (3) Php (8) Play framework (4) Plugins (1) Postgresql (2) Printing (2) Program (1) Programming (26) Rancher (1) Release (1) Resizer (1) Retina display (1) Rules (1) Scala (21) Scala basics (2) Server (1) Services (1) Setup (1) Snippet (7) Software architecture (1) Solr (1) Spam (1) Sql (1) Text search (1) Threads (1) Tips (4) Tomcat (1) Tricks (1) Tutorial (6) Ubuntu (1) Unix (6) Vi (2) Video (1) Visual c++ (3) Visual studio (5) Web (14) Windows (17) Witty (5) Wordpress (7) Wt (5) Xcode (1) Youtube (1)

No more spam…

Ok spammers, I’m tired. During the last weeks I was getting about 100 spam messages per hour. That was very difficult to control. So I decided to take that as an opportunity to upgrade my server. Now my website runs on the latest WordPress engine and I have also installed some new antispam plugins. All the website contents will be updated and uploaded during this month. I appreciate your patience while I finish applying this upgrade.

Comments have been temporarly disabled…

Sorry everyone, but I was getting the incredible quantity of 60 spam comments per hour… I will reopen them as soon as I get a good tool to fight spam… Thanks!

Java, brigther than ever

Java, the programming language for many of us, is shinning more than ever! Just see how Android (Google’s operating system) uses it for its applications: http://en.wikipedia.org/wiki/Android_%28operating_system%29

Windows Live Writer? nah… Adobe Contribute

Obsesed with looking for a good blogging tool on the web and reading a big list of complaints for the lack of a good tool for mac users, I didn’t realize I had had one for a long time on my computer: Adobe Contribute. Most people talk about Microsoft’s Windows Live Writer and how to run it on a Mac, but forget about this good option that runs natively on it.

How to access a Web service from a C# Desktop Application

This project will teach you how to create a C# Desktop Application that uses a Web Service as its backend. You will need Visual Web Developer Express and Visual C# Express. Step 1: Creating the Web Service Open Visual Web Developer and go to File > New Project. Under Project Types select Visual C# > Web. Under Templates select ASP.NET Web Service Application. Press the Ok button. By default, Visual Web Developer will create a Web Service and a HelloWorld operation (method) in it that returns a string.