Skip to content

Instantly share code, notes, and snippets.

View justrdk's full-sized avatar
💭
hello friend

Osman Hernandez justrdk

💭
hello friend
View GitHub Profile
{
"sections": [{
"title": "Top Empfehlungen",
"tiles": [{
"title": "Life",
"subtitle": null,
"image_ration": "16by9",
"image_url": "https://images.zattic.com/cms/e645ac7935c900ed7819/format_640x360.jpg",
"action_data": "{\"type\": \"Tv::Broadcast\", \"program_id\": 175723982, \"cid\": \"servus_tv\"}",
"is_playable": true
@justrdk
justrdk / zipline.md
Last active July 4, 2017 15:25
Ziplining without coverage

Ziplines, Fear, and Custom Software: A Parable

Hello, daredevils out there. Have you ever tried ziplining at over 50 mph? My team did during our recent Summit in Copan Ruinas, Honduras. Some of us were very, very, very skeptical about doing this activity. Others were really excited and rode the zipline twice during the Summit. Why didn't some of us feel confident about trusting our lives to a steel cable and some mountain climbing gear? The answer is simple: Fear of the unknown.

Creating Custom Software Is Like a Scary Zipline

Building custom software is a lot like trusting your life to a zipline. The stakes are high, and the payoff can be absolutely exhilarating. Successful custom software projects make everyone involved feel like they’re on cloud nine. The wind in your hair, the spectacular view, the amazing feeling of accomplishment! But it can also go badly: we hear grisly stories of failed products, blown budgets, or vanishing developers on a regular basis. No wonder some people are apprehe

Meteor Meteor Meteor

Over the past years I've been working mainly on web applications, full stack (backend as well as client side code). We all go through the same steps to start our application.

  1. Setup server environment
  2. Setup client environment

I've been mainly working with Nodejs on the backend (feathers, hapi, express and sails lately) and I've really enjoyed it, especially now with all the ES6 goodies out there, and node V4 supporting a lot of them without flags on runtime. But One day I decided to try something entirely new, and that was the moment I met Meteor. I read the docs and went through their tutorial, The classic TODO Appm but what really got me was that there was no backend per-se, no models/services on my client requesting data from the server, no endpoints defined on a router and THEN I noticed the curious

if(Meteor.isClient) {
@justrdk
justrdk / katas.js
Last active June 24, 2020 19:22
some of my solutions for some katas on codewars
//default configuration
function defaults(obj, defs) {
result = {};
for (var key in obj) {
result[key] = obj[key];
}
for (var key in defs) {
if (!obj.hasOwnProperty(key)) {