- Introduction to Functional Programming Johannes Weiß - http://kcy.me/1ngiv
- ReactiveCocoa at MobiDevDay Andrew Sardone - http://kcy.me/1nhl3
- The Future Of ReactiveCocoa Justin Spahr-Summers - http://kcy.me/1nhs7
- Enemy of the State Justin Spahr-Summers - http://kcy.me/1njzs
- WWDC 2014 Session 229 - Advanced iOS Application Architecture and Patterns Andy Matuschak - http://kcy.me/1pyva
- Functioning as a Functionalist Andy Matuschak - http://kcy.me/22o45
- Controlling Complexity in Swift Andy Matuschak - http://kcy.me/23sc9
- Functional and reactive programming with Swift Ash Furrow -
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
| import getpass | |
| import sys | |
| import telnetlib | |
| host = raw_input("Enter your HOST") | |
| user = raw_input("Entre com o seu usuario: ") | |
| passwd = getpass.getpass() | |
| tel_net = telnetlib.Telnet(host) |
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
| https://plus.google.com/105051985738280261832/posts/FXCCYxepsDU |
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
| O Android é bem focado em boas práticas de programação, a equipe de desenvolvedores do Google prezam por código limpo e têem uma queda por implementação de testes. | |
| O Android sofreu algumas mudanças nos últimos tempos. Passou a ser adotado um padrão de design: o material design https://www.google.com/design/spec/material-design/introduction.html | |
| que são algumas padronizações de design e usabilidade que o android adotou. Neste link contém todos os padrões que pedem para que se use. Aí vcs podem questionar: mas como desenvolvedor preciso saber design? Você não precisa saber criar o design, mas precisa saber como aplicar (principalmente que pode vir das maos de um designer e vc precisa entender). Neste documento possui todos os componentes, interações, que devem ser utilizados nos projetos. | |
| Este outro link http://www.materialup.com/ não é do google, mas contém uns modelos de telas que designers e desenvolvedores postam, e passam pelo crivo de uma equipe, e pelo que vi, implementam as guides do Google. | |
| O que eu |
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
| A Política de Privacidade do Delivery descreve como lidamos com informações pessoais | |
| quando o usuario utiliza os produtos e serviços do Delivery de Comida. | |
| Informações enviadas à base de dados Delivery | |
| O Usuário não precisa fornecer dados de identificação pessoal para usar o Delivery. | |
| Ao usar o aplicativo para entrar em contato com os servidores do Delivery, o Delivery recebe | |
| informações de registro padrão, como Nome, E-Mail e Localização GPS(usado para determinar os serviços | |
| proximos a voce). | |
| Todos os dados são guardados e não compatilhados. |
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
| apply from: 'versionCode.gradle' | |
| android { | |
| defaultConfig { | |
| versionName VERSION_NAME | |
| versionCode Integer.parseInt(VERSION_CODE) | |
| } | |
| } |
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"?> | |
| <persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"> | |
| <!-- Setting for PostgreSQL--> | |
| <persistence-unit name="namePu"> | |
| <provider>org.hibernate.ejb.HibernatePersistence</provider> | |
| <properties> | |
| <property name="javax.persistence.jdbc.url" value="jdbc:postgresql://ADDRESS:PORT/DATABASE" /> | |
| <property name="javax.persistence.jdbc.user" value="USER" /> | |
| <property name="javax.persistence.jdbc.password" value="PASSWORD"/> | |
| <property name="javax.persistence.jdbc.driver" value="org.postgresql.Driver" /> |
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
| @ApplicationScoped | |
| public class EntityManagerProducer { | |
| private static EntityManagerFactory factory; | |
| private static final String namePu = "Persistence-Unit"; | |
| public EntityManagerProducer() { | |
| EntityManagerProducer.factory = Persistence.createEntityManagerFactory(namePu); | |
| } | |
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"?> | |
| <Context> | |
| <Manager pathname=""/> <!-- disables storage of sessions across restarts --> | |
| <Resource name="BeanManager" | |
| auth="Container" | |
| type="javax.enterprise.inject.spi.BeanManager" | |
| factory="org.jboss.weld.resources.ManagerObjectFactory"/> | |
| </Context> |
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
| public void setupNotification(){ | |
| NotificationCompat.Builder mBuilder = | |
| new NotificationCompat.Builder(this) | |
| .setSmallIcon(R.drawable.ic_launcher) | |
| .setContentTitle("Title") | |
| .setContentText("TEXT"); | |
| mBuilder.setOngoing(true); | |
| // Creates an explicit intent for an Activity in your app |
NewerOlder