Search
public copyright
inscriptions
15016 results found for tag:"personal".
Respuesta a mis fans y detractores que omiti en mi ultima entrevista radial. Seguir leyendo →
All rights reserved
GUIA CON PILDORAS DE PROTENIA PARA LA CONFIANZA PARA QUE EMPIECES A BRILLAR CON TU IMAGEN. La confianza es crucial para vender. Una imagen que transmite confianza es la primera puerta de acceso para conseguir tus objetivos. La confianza lo es todo. Visualicé mi imagen como una sólida armadura, la necesitaba ROTUNDA para afrontar el nuevo reto. Tomé la firme determinación de cambiar mi envoltorio para reforzar mi seguridad interior. Hay una profunda relación entre autoestima y el estilo que proyectas. Existe una poderosa energía que se desprende cuando una persona se mira al espejo y le gusta lo que ve. Todo este proceso y las estrategias que desarrollé me han llevado a encontrar una fórmula mágica que hará que tu imagen te haga brillar. El principio del aplauso. Tu éxito depende de la imagen que los demás tengan de ti. “Power perceived is power achieved”. La gente cree lo que ve y en los negocios no sólo hay que ser bueno, también hay que parecerlo. Efecto Halo. Una buena imagen hará que atribuyan otras cualidades positivas a tu persona y eso influirá en tu retribución. Ley de la Quimera. Cuántas veces te has dicho a ti mismo que todo sería diferente si tuvieras un cuerpo más esbelto, más tiempo para ti o una cuenta corriente boyante. Eso no es lo que funciona. “La imagen es una cuestión de ACTITUD”. Cuando tomes conciencia de la energía que produce algo que aparenta ser banal y superficial pero que es fundamental para cada persona, cambiará tu imagen. Si te miras al espejo y te gusta lo que ves, serás capaz de comerte el mundo. No intentes ser otra persona. Método sprezzatura. El programa sprezzatura: Entrena tu poder de persuasión. Estilo para profesinales de éxito. Entrenamiento de imagen y marca personal.
All rights reserved
1801255576345
Cambio de Aires – Trabajar en Irlanda
01/25/2018
Como este es un blog personal puedo hablar realmente de lo que me de la gana. Normalmente hablo de móviles pero estos son tan “comodity” y aburridos que os voy a contar otra historia. Lo primero es deciros que siento no haber escrito mucho, pero realmente ha sido por dos … Sigue leyendo → La entrada Cambio de Aires – Trabajar en Irlanda aparece primero en Alberto J García Gago. Creative Commons: d61f2813-aeb9-3b0c-a99d-e2dc93628ae5
Creative Commons Attribution 3.0
Tired of the freaking “UnicodeEncodeError: ‘ascii’ codec can’t encode character u’\motherf*****’ in position 69: ordinal not in range(128)“ error message? Check this awesome Jupyter Notebook I created to clarify things! :)
All rights reserved
1711244920571
Softmax for dummies
11/24/2017
Here you will find a Jupyter Notebook where I explain the rationale behind the Softmax function and how it used in AI’s neural networks.
All rights reserved
1706212667688
Cion nosotros, todo; sin nosotros, nada
06/21/2017
Cómo MARCAR como LÍDER a tu EQUIPO HUMANO: una mirada interrogativo/afirmativa al liderazgo organizacional POSIBLE en tiempos de MARCA PERSONAL.
Creative Commons Attribution-NonCommercial-NoDerivatives 4.0
1705272444536
Two blogs in the same page
05/27/2017
Motivation: I want to show 2 blogs in my WordPress site. A quick search on the web reveals that apparently you must install each blog separately, but I don’t want to do so. In fact I don’t need two different blogs, I just want to split posts in two different pages (by category). Solution: the […]
All rights reserved
1705272443966
CoRD – Remote Desktop Protocol
05/27/2017
Motivation: I need to connect to from my Mac to a remote desktop which is running a Windows server. I want a tool to be able to do this connection by using RDP (Remote Desktop Protocol). Solution: I found this software, CoRD, which works better than the Microsoft Remote Desktop Connection for Mac (haven’t tried […]
All rights reserved
1705272443935
wp-cv plugin creation
05/27/2017
Motivation: I hate standard text-based CVs. They are so boring and I want something that gives you a quick look into the main things somebody has done. And I also want it to be strongly ‘time-based’. Plus: I want a very very simple design and I need to have a functional version very very soon. […]
All rights reserved
Motivation: protect some directories from being accessed without authorisation. Solution: using the .httaccess file. You just have to configure one and place it into the directory you want to protect. The code inside the file would look something like this: 1 2 3 4 AuthType Basic AuthName "guest" AuthUserFile "/home/user/.htpasswds/public_html/directory2storepass/passwd" require valid-user AuthType Basic AuthName […]
All rights reserved
1705272443911
VIM tab configuration
05/27/2017
Motivation: I like to edit files using VIM. In my server (Bluehost) the default configuration makes my ‘tab’ to produce really width spaces and I want it to be the size of 4 spaces. Solution: I edited a file .vimrc and I placed in my home directory in my server. The content of this file […]
All rights reserved
Motivation: in the single post page, the arrow that points to the next post appears one line below the ‘Next’ text in Safari and Chrome browsers. Solution: I don’t know if this is a ‘good’ way to solve it or if I should report it somewhere, but as a quick fix I’ve edited my child […]
All rights reserved
1705272443102
WordPress in Spanish
05/27/2017
Motivation: it’s pretty simple. I just wanted to create a WordPress site in Spanish. Solution: download the file from the source specified below. Extract the file es_ES.mo and place it in /wp-content/languages/. Finally, change the file wp-config.php in the root directory to point to Spanish language: define ('WPLANG', 'es_ES'); Source: http://es.wordpress.org
All rights reserved
1705272443096
remove_filter function in WordPress
05/27/2017
Motivation: In a specific website I am using the simplex theme. If one tries to place a static page as home instead of the blog, simplex keeps showing the Home page. Solution: as you can see, people have already reported this. But in the current version of the theme the line is introduced in functions.php […]
All rights reserved
1705272443065
SSH Public Key Based Authentication
05/27/2017
Motivation: I want to acces to my Bluehost server from my local computer, make some file copies ‘scp’ but from a script executed by Crontab, so I don’t want to introduce my password manually. Solution: Generate the key from your local machine (I don’t think it’s needed but, store the keys in ~/.ssh 1 ssh-keygen […]
All rights reserved
1705272443041
Permalinks on WordPress (amazon EC2)
05/27/2017
Motivation: in my particular case I moved a WordPress site from Bluehost to amazon’s EC2. Permalinks were not working. Solution: I had to modify the override option from my httpd service. Go to /etc/httpd/conf and edit httpd.conf 1 2 3 4 <Directory />     Options FollowSymLinks     AllowOverride All </Directory> <Directory /> Options […]
All rights reserved
1705272442945
Permalinks on WordPress (Ubuntu)
05/27/2017
1) Enable Mod Rewrite : sudo a2enmod rewrite 2) Change AllowOverride None to AllowOverride All : sudo nano /etc/apache2/sites-enabled/000-default 3) Restart Apache : sudo /etc/init.d/apache2 restart
All rights reserved
1705272442938
Permalinks WordPress
05/27/2017
So far, I found myself trying to solve the same problem on different machines. – EC2 amazon Ubuntu instance. In this one I had to modify http.conf. – Ubuntu server 12. Here I installed apache2 so the approach was a bit different.
All rights reserved
[this post will be properly edited] I was creating the new database and WordPress would tell me to install the site. Solution: dropped the database and created it from ‘mysql’ prompt. user$ mysql -u root -p’yourpassword’ -h localhost mysql> create database your_database_name; mysql> exit user$ mysql -u root -p’yourpassword’ -h localhost your_database_name
All rights reserved
1705272440699
Setting up FTP server on Ubuntu
05/27/2017
[TODO: nicely edit this post] source: http://www.noob2geek.com/linux/setup-vsftpd-debian-ubuntu/ the only thing you need to add to this tutorial is: ‘sudo chmod a-w /var/www/your_ftp_directory’ ‘sudo mkdir /var/www/your_ftp_directory/new_directory’
All rights reserved
First | Previous | Page 435 of 751 | Next | Last
write to us if you want to leave us a message
© 2026 Safe Creative