Skip to content

Instantly share code, notes, and snippets.

View jorgeruvalcaba's full-sized avatar
🎯
Shooting to the moon

Jorge Ruvalcaba jorgeruvalcaba

🎯
Shooting to the moon
View GitHub Profile
@jorgeruvalcaba
jorgeruvalcaba / settings.json
Last active March 13, 2024 05:06
My current vscode settings based on Kent C Dodds's
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.detectIndentation": true,
"editor.lightbulb.enabled": false,
"editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": false,
"editor.rulers": [80],
"editor.snippetSuggestions": "top",
"editor.wordBasedSuggestions": false,
const Component = () => {
const firstHookDependency = () => {};
const secondHookDependency = ['We', '💕', 'React'];
React.useEffect(() => {
console.log('Why will this console statement run?');
}, [firstHookDependency, secondHookDependency]);
return (
// ...component details
);
};
@jorgeruvalcaba
jorgeruvalcaba / qui
Created March 4, 2018 21:47 — forked from agalin920/qui
/**
Practica 2
Andres Galindo
Jorge Ruvalcaba
**/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/time.h>
#include <omp.h>
@jorgeruvalcaba
jorgeruvalcaba / 0_reuse_code.js
Last active November 26, 2015 08:04
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console