Skip to content

Instantly share code, notes, and snippets.

View rproenza86's full-sized avatar
:octocat:
I may be slow to respond.

Raúl R. Proenza rproenza86

:octocat:
I may be slow to respond.
View GitHub Profile
@rproenza86
rproenza86 / gist:cfe809c67d5e1d7c8c01620f0164dbe5
Created November 7, 2022 18:26 — forked from danielestevez/gist:2044589
GIT Commit to an existing Tag
1) Create a branch with the tag
git branch {tagname}-branch {tagname}
git checkout {tagname}-branch
2) Include the fix manually if it's just a change ....
git add .
git ci -m "Fix included"
or cherry-pick the commit, whatever is easier
git cherry-pick {num_commit}
@rproenza86
rproenza86 / cloudSettings
Last active June 14, 2022 16:11
Visual Studio Code Settings Sync Gist
{"lastUpload":"2022-03-16T09:04:00.547Z","extensionVersion":"v3.4.3"}
@rproenza86
rproenza86 / TestDriveForm.tsx
Created December 4, 2018 11:30
How to use ReactJS Material UI lib DatePicker comp on ReduxForm comp
import * as React from 'react';
import { Component } from 'react';
import { Field, reduxForm } from 'redux-form';
import { connect } from 'react-redux';
import { assign } from 'lodash';
import { DatePicker } from 'redux-form-material-ui';
import * as testDriveSelectors from '../redux/testDriveSelectors';
import { selectors } from '@makemydeal/dr-offer-redux';
/**
Code Challenge Needed:
Using Javascript, given an array of n integers (example: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 100, 112, 113] ), remove all odd numbers, leaving only the even numbers.
Rules:
NO LOOPING. This means native methods, or libraries that loop for you are not allowed either.
Supply the answer on github via Gist
**/
var numbersArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 100, 112, 113];
/**
Code Challenge Needed:
Using Javascript, given an array of n integers (example: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 100, 112, 113] ), remove all odd numbers, leaving only the even numbers.
Rules:
NO LOOPING. This means native methods, or libraries that loop for you are not allowed either.
Supply the answer on github via Gist
**/
var numbersArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 100, 112, 113];
/**
Code Challenge Needed:
Using Javascript, given an array of n integers (example: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 100, 112, 113] ), remove all odd numbers, leaving only the even numbers.
Rules:
NO LOOPING. This means native methods, or libraries that loop for you are not allowed either.
Supply the answer on github via Gist
**/
/**
Code Challenge Needed:
Using Javascript, given an array of n integers (example: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 100, 112, 113] ), remove all odd numbers, leaving only the even numbers.
Rules:
NO LOOPING. This means native methods, or libraries that loop for you are not allowed either.
Supply the answer on github via Gist
**/
/**
Code Challenge Needed:
Using Javascript, given an array of n integers (example: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 100, 112, 113] ), remove all odd numbers, leaving only the even numbers.
Rules:
NO LOOPING. This means native methods, or libraries that loop for you are not allowed either.
Supply the answer on github via Gist
**/