Skip to content

Instantly share code, notes, and snippets.

Privacy Statement
-----
SECTION 1 - WHAT DO WE DO WITH YOUR INFORMATION?
When you purchase something from our store, as part of the buying and selling process, we collect the personal information you give us such as your name, address and email address.
When you browse our store, we also automatically receive your computer’s internet protocol (IP) address in order to provide us with information that helps us learn about your browser and operating system.
Email marketing (if applicable): With your permission, we may send you emails about our store, new products and other updates.
@dhemmat
dhemmat / plan.rb
Last active February 1, 2016 04:08
Rails Magic 101
#------------------- Created by David Hemmat - dhemmat@gmail.com.
# REMOVE SQLite Databse
# Repo at: https://bitbucket.org/dhemmat/rails-magic
# 1. Generate new rails app
rails new message_box # Explicar estructura basica de Rails, patron MVC.
@dhemmat
dhemmat / back-end-scala.md
Created September 11, 2015 14:46
Back-end Scala Developer (Remoto - Contratista)

Back-end Scala Developer (Remoto - Contratista)

Estamos buscando un desarrollador backend de Scala excelente para trabajar en el desarrollo de una aplicación para un cliente extranjero. Nuestro equipo está principalmente en Santo Domingo pero la posición es 100% remota. Tenemos una preferencia fuerte por alguien que tenga experiencia en programación funcional.

Stack/Requerimientos:

  • Scala
  • HTTP4S
  • PostgreSQL + Doobie es un plus.
  • Testing en Scala
  • Programación funcional
@dhemmat
dhemmat / xamarin-android.md
Created September 11, 2015 14:45
Xamarin / Android developer (Santo Domingo - Contratista - Inglés)

Xamarin / Android developer (Santo Domingo - Contratista - Inglés)

We are looking for a top notch Xamarin developer with experience to help us continue developing the the Android (tablet) version of our fitness app. We have a small, fast moving team of experienced developers based in Santo Domingo, but our headquarters are in the UK. We have a strong preference for someone with functional programming experience. Our back-end is built with Scala and the Play Framework, our web front end is in Angular.js and we have mobile apps built on Xamarin for both iOS and Android.

Stack/Requirements:

  • Android development experience.
  • Xamarin (C#).
  • Functional programming is a plus.

Info:

  • English required!
@dhemmat
dhemmat / angular-js.md
Created September 11, 2015 14:42
Front-end Angular JS Developer (Santo Domingo - Contratista - Inglés)

Front-end Angular JS Developer (Santo Domingo - Contratista - Inglés)

We are looking for a top notch front end developer with Angular.JS experience to help us continue developing the front end for our fitness app. We have a small, fast moving team of experienced developers based in Santo Domingo, but our headquarters are in the UK. We have a strong preference for someone with functional programming experience. Our back-end is built with Scala and the Play Framework and we have mobile apps built on Xamarin for both iOS and Android.

Stack/Requirements:

  • Angular.JS
  • Karma for specs.
  • Functional programming is a plus.

Info:

  • English required!
@dhemmat
dhemmat / full-stack-php-flex.md
Created September 11, 2015 14:40
Desarrollador Full Stack PHP / Flex - Santo Domingo

Desarrollador Full Stack PHP / Flex (Santo Domingo - Empleado)

Nuestra empresa se dedica al desarrollo de software para Alianzas Francesas y otras instituciones culturales alrededor del mundo. Estamos buscando un desarrollador de PHP para trabajar como Team Lead en el desarrollo de nuestra aplicación principal. Utilizamos un framework propio para el back-end y Flex para el front-end. Buscamos a un desarrollador muy capaz que se sienta cómodo tomando decisiones de diseño e implementación importantes. Estará trabajando desde nuestras oficinas en Bella Vista con un equipo pequeño.

Requerimientos:

  • 3 + años de experiencia desarrollando software profesionalmente.
  • Experiencia con Flex es un plus pero no un requerimiento.
  • PHP avanzado.
  • TDD con PHPUnit.
  • Trabajo con MVC en PHP un plus (CakePHP, Laravel, etc.)
  • Cómodo tomando decisiones de diseño e implementación.
@dhemmat
dhemmat / full-stack-php-aus.md
Created September 11, 2015 14:36
Desarrollador Full Stack PHP (Remoto - Contratista - Inglés)

Desarrollador Full Stack PHP (Remoto - Contratista - Inglés)

We are looking for a top notch full stack PHP developer to join our team. Our company runs the most successful deals aggregator in Australia, and we are currently looking into pivoting to work directly with business owners to produce new deals. We are a small team and are looking for a more experienced developer that can bring in new knowledge. You will be able to make design and implementation decisions in a variety of situations and to pick the best way to complete requirements. An ideal candidate will feel comfortable up and down the stack and will be able to do wireframing, mockups, some UI/UX design, as well as front end and back end development and testing.

General requirements:

  • Great English!
  • 3 years experience coding professionally
  • Knowledge of coding best practices
  • Great English level
  • CodeIgniter / Laravel
  • MySQL
@dhemmat
dhemmat / web-full-stack-sd.md
Created September 11, 2015 14:32
Desarrollador Web Full Stack - Santo Domingo

Desarrollador Web Full Stack - Santo Domingo

Nuestra empresa se dedica al desarrollo de software para Alianzas Francesas y otras instituciones culturales alrededor del mundo. Estamos buscando un desarrollador web con buena experiencia trabajando con Javascript para desarrollar una mini-aplicación. El trabajo será principalmente desarrollo front-end con Javascript y jQuery, pero se debe interactuar con un API hecho en CakePHP. Estará trabajando desde nuestras oficinas en Bella Vista.

Requerimientos:

  • 3 + años de experiencia desarrollando software profesionalmente.
  • Experiencia con MVC en cualquier lenguaje (C#, Java, RoR, etc.)
  • HTML, CSS.
  • Javascript, jQuery.
  • Experiencia con TDD.
@dhemmat
dhemmat / scrum-master.md
Last active September 11, 2015 14:27
Scrum Master - Santo Domingo - Inglés

Scrum Master - Santo Domingo - Inglés

Our team is looking for a Scrum Master with development experience to work from our Santo Domingo offices. Our ideal candidate will be someone who has worked as a software developer in the past and knows the ins and outs of the scrum methodology. Our company is developing a fitness tracking application and our team includes several team members working back end, front end web and mobile apps. We use a hybrid Scrum/Kanban methodology.

As a Scrum Master you will be responsible for making sure our version of the agile process is being followed correctly, and you will work with the product owner and the rest of the team members to make sure that everything flows smoothly. Generating performance reports will also be an important part of the job.

Requirements:

  • English.
  • Previous development experience in any technology.
  • Good understanding of the Scrum methodology.
def available_with_start_or_end_date?
if start_date.nil? && end_date
end_date > Time.now
elsif start_date && end_date.nil?
start_date < Time.now
end
end