-
InfoQ BR
-
Fuja da escravidão antes que ela te alcance - Nesta palestra, Vinícius Teles nos fala a respeito da realidade de muitos trabalhadores que possuem vidas estáveis, porém repletas de frustrações advindas de suas rotinas e carreiras aparentemente seguras. Vinícius trata do empreendedorismo, com dicas para profissionais de tecnologia que buscam atingir não apenas a estabilidade financeira, mas também a plena satisfação profissional e pessoal.
-
Agile Brazil 2012
-
| # Next time you need to install something with python setup.py -- which should be never but things happen. | |
| python setup.py install --record files.txt | |
| # This will cause all the installed files to be printed to that directory. | |
| # Then when you want to uninstall it simply run; be careful with the 'sudo' | |
| cat files.txt | xargs sudo rm -rf | |
Una de las necesidades más comunes en el desarrollo de Sitios profesionales es implementar URLs amigables, así convertimos algo como /index.php?articulo=1 por algo más cómodo y agradable a la vista del usuario: /blog/introduccion.htm
Para lograr esto existen muchos paquetes, que son altamente recomendables, como:.
En esta clase no buscamos superar a nadie, simplemente quiero demostrarles que puede ser sencillo hasta cierto nivel.
These are notes for myself on the crouton setup for my chromebook
Hold Power+ESC+Refresh, then let go of the power, when the OS verification warning screen appears enter Ctrl-D
Follow the instructions here to download the latest version of https://goo.gl/fd3zc.
| <?xml version="1.0" encoding="utf-8"?> | |
| <colorTheme id="9999" name="One Dark Like" modified="2015-09-01 19:55:49" author="Adam Gent" website="http://snaphop.com"> | |
| <searchResultIndication color="#E5C07B" /> | |
| <filteredSearchResultIndication color="#E5C07B" /> | |
| <occurrenceIndication color="#4B4E55" /> | |
| <writeOccurrenceIndication color="#4B4E55" /> | |
| <findScope color="#4B4E55" /> | |
| <deletionIndication color="#DF5F5F" /> | |
| <sourceHoverBackground color="#4B4E55" /> | |
| <singleLineComment color="#969896" italic="false" /> |
This is a collection of the most common commands I run while administering Postgres databases. The variables shown between the open and closed tags, "<" and ">", should be replaced with a name you choose. Postgres has multiple shortcut functions, starting with a forward slash, "". Any SQL command that is not a shortcut, must end with a semicolon, ";". You can use the keyboard UP and DOWN keys to scroll the history of previous commands you've run.
http://www.postgresql.org/download/linux/ubuntu/ https://help.ubuntu.com/community/PostgreSQL
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int ans(int n){ | |
| int sum=0; | |
| for(int i=1; i<n; i++){ | |
| if(n%i==0){ | |
| sum+=i; | |
| } | |
| if(sum>n) |
| from __future__ import division | |
| from itertools import chain | |
| from pyknon.genmidi import Midi | |
| from pyknon.music import Note, NoteSeq | |
| def fib(n): | |
| a, b = 0, 1 | |
| fibo = [a, b] | |
| while b < n: |
| // Node.js CheatSheet. | |
| // Download the Node.js source code or a pre-built installer for your platform, and start developing today. | |
| // Download: http://nodejs.org/download/ | |
| // More: http://nodejs.org/api/all.html | |
| // 0. Synopsis. | |
| // http://nodejs.org/api/synopsis.html |