Skip to content

Instantly share code, notes, and snippets.

View ooeunz's full-sized avatar
🎯
2024 DEV

Noah ooeunz

🎯
2024 DEV
View GitHub Profile
@ooeunz
ooeunz / I'm an early 🐤
Last active January 18, 2021 18:04
DAILY_CODING
🌞 Morning 475 commits ███████▋░░░░░░░░░░░░░ 36.9%
🌆 Daytime 335 commits █████▍░░░░░░░░░░░░░░░ 26.0%
🌃 Evening 59 commits ▉░░░░░░░░░░░░░░░░░░░░ 4.6%
🌙 Night 419 commits ██████▊░░░░░░░░░░░░░░ 32.5%
@ooeunz
ooeunz / Chat.js
Created January 17, 2020 05:28
Deltour-Chatbot
import React, { useState, useEffect } from "react";
import axios from 'axios';
import queryString from 'query-string';
import dotenv from 'dotenv';
import Messages from '../Messages/Messages';
import InfoBar from '../InfoBar/InfoBar';
import Input from '../Input/Input';
import './Chat.scss';
@ooeunz
ooeunz / gist:d99608cc339cd75e35bd8df8c1ebe554
Created January 28, 2019 13:10 — forked from tonymtz/gist:d75101d9bdf764c890ef
Uninstall nodejs from OSX Yosemite
# first:
lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done
sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.*
# To recap, the best way (I've found) to completely uninstall node + npm is to do the following:
# go to /usr/local/lib and delete any node and node_modules
cd /usr/local/lib
sudo rm -rf node*