Skip to content

Instantly share code, notes, and snippets.

View yeisoncruz16's full-sized avatar
😄
Work harder than you did yesterday

Yeison Cruz yeisoncruz16

😄
Work harder than you did yesterday
View GitHub Profile
@yeisoncruz16
yeisoncruz16 / truncate-large-tables.sql
Created March 11, 2021 17:06
How to truncate Large Mysql Tables
CREATE TABLE new_foo LIKE foo;
RENAME TABLE foo TO old_foo, new_foo TO foo;
DROP TABLE old_foo;
@yeisoncruz16
yeisoncruz16 / Button.js
Created May 15, 2021 15:03
ReactJS onClick acts as event but only if they’re used on HTML-like elements.
import React from 'react';
export class Button extends React.Component {
render() {
return (
<button onClick={this.props.onClick}>
Click me!
</button>
);
}
var email = "YOU_EMAIL_WITHOUT_GMAIL_GOES_HERE";
var emailList = [];
for(let i = 1; i < email.length - 1; i++){
for(let x = 1; x <= email.length; x++){
if(i+1 !== x && i != x) {
let splitEmail = email.split("");
splitEmail.splice(i, 0, '.');
splitEmail.splice(x, 0, '.');
@yeisoncruz16
yeisoncruz16 / how-to-run.js
Last active August 19, 2021 23:45
How to update html field value when the page is using React
sendKeys(document.getElementById("SELECTOR_GO_HERE"), "My cool message to type", 'input');
@yeisoncruz16
yeisoncruz16 / serverless.yml
Created September 18, 2021 02:34
Trigger lambda function using AWS Elastic load balance
service: sample-lambda-alb
provider:
name: aws
runtime: nodejs14.x
stage: ${opt:stage, 'dev'}
region: ${opt:region, 'us-west-2'}
profile: crazy
alb:
targetGroupPrefix: tg-${opt:stage, 'dev'}- # this is the name for the target group