- Startup versus lifestyle business
- Some ideas here in this PDF (from the same guy of the post above)
- My New "Office" - also from the guy above
- Actually, 37 signals is a lifestyle business
- Startup: Manual do Empreendedor - actually a video with great ideas
- Techcrunch - a blog for startups
- Google for Entrepreneurs
- Up Global
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn factorial | |
([n] (factorial n 1)) | |
([n total] | |
(if (= n 0) | |
total | |
(recur (dec n) (* n total))))) | |
(defn combination-with-repetition | |
"Calculates (h+v)! / (h! * v!)" | |
[h v] |
This is a list of my personal references for Clojure. The main idea is to keep documented my learning path of Clojure.
- [Clojure Radar] (https://juxt.pro/radar.html)
- [Brave Clojure] (http://www.braveclojure.com/) - A great book of Clojure. You can read it online or buy it at a book store.
- [Clojure Design Patterns] (http://mishadoff.com/blog/clojure-design-patterns/)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl --connect-timeout 1 www.google.com.br:81 > /dev/null 2>&1; echo $? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Version 1 | |
# Some basic include & extend approach | |
module AnyModule | |
def an_instance_method | |
end | |
module ClassMethods | |
def a_class_method | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo chown --from=<current_owner> <new_owner> -R * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Wellington Pinheiro é mestre em Ciência da Computação pelo IME/USP na área de Inteligência Artificial e trabalha com desenvolvimento de sistemas desde 1997, utilizando Java e JEE na maior parte do tempo. Foi instrutor de Java na YAW, empresa parceira da Globalcode, e instrutor da disciplina de Arquitetura de Software no curso de SOA da pós graduação do IBTA por 3 anos. Atualmente está trabalhano com Ruby on Rails no e-commerce do Walmart. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
<servers> | |
<server> | |
<!-- The following configuration is used to authenticate with --> | |
<!-- Artifactory if we need to deploy a file to the repository --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<distributionManagement> | |
<repository> | |
<id>artifactory</id> | |
<name>artifactory-releases</name> | |
<url>http://localhost:8081/artifactory/libs-release-local</url> | |
</repository> | |
</distributionManagement> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mvn archetype:generate -B -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-quickstart -DgroupId=<groupId> -DartifactId=<artifactId> -DpacakgeName=<packageName> -Dversion=1.0 |