Skip to content

Instantly share code, notes, and snippets.

View luisenriquecorona's full-sized avatar
😎
I may be slow to respond.

TextKi JS luisenriquecorona

😎
I may be slow to respond.
View GitHub Profile
@luisenriquecorona
luisenriquecorona / npm-from-git.sh
Created November 18, 2019 01:36 — forked from wmakeev/npm-from-git.sh
npm #npm #git
# https://docs.npmjs.com/cli/install
# 1
npm install <protocol>://[<user>[:<password>]@]<hostname>[:<port>][:][/]<path>[#<commit-ish>]
## Examples
npm install git+https://[email protected]/visionmedia/express.git
npm install git+https://[email protected]/visionmedia/express.git#branch
# 2
npm install <githubname>/<githubrepo>[#<commit-ish>]
import React from 'react';
import { Formik, Form, Field, FieldArray } from 'formik';
import styled from 'styled-components';
const languageState = [true];
export default () => {
const handleSubmit = values => {
console.log(values.languages);
};
@luisenriquecorona
luisenriquecorona / hello_world.py
Created April 23, 2019 04:53
Hello World Examples
class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()