Skip to content

Instantly share code, notes, and snippets.

View glowiep's full-sized avatar
🦄
Pushing the limits of my creativity, one line of code at a time

Gloria Lim glowiep

🦄
Pushing the limits of my creativity, one line of code at a time
View GitHub Profile
@glowiep
glowiep / NewMemo.jsx
Created February 16, 2024 21:35
Quick Memo React App - New Memo Component (DEV.TO blog post)
import React, { useEffect, useState } from "react"
import '../styles/NewMemo.scss';
import { TextField } from '@mui/material'
const NewMemo = () => {
const [windowWidth, setWindowWidth] = useState(window.innerWidth - 150)
useEffect(() => {
const handleResize = () => {
setWindowWidth(window.innerWidth - 150);
@glowiep
glowiep / vs-code-js-react-snippets.json
Last active February 3, 2024 21:03
React Visual Studio Code JavaScript Snippets for component, useState, useEffect, and useReducer
{
"React Component": {
"prefix": "react",
"body": ["import React from \"react\"", "", "function ${1:ComponentName}() {", " return (", " <>", " $2", " </>", " )", "}", "", "export default ${1:ComponentName}"],
"description": "React Component"
},
"useState Hook": {
"prefix": "use",
@glowiep
glowiep / countries.geojson
Created July 8, 2022 15:32 — forked from ThomasG77/countries.geojson
Sample Leaflet with GeoJSON
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@glowiep
glowiep / review-introduction.ipynb
Created June 4, 2020 21:52
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@glowiep
glowiep / model-evaluation-and-refinement.ipynb
Created June 4, 2020 10:33
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@glowiep
glowiep / model-evaluation-and-refinement.ipynb
Created June 3, 2020 20:16
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@glowiep
glowiep / exploratory-data-analysis.ipynb
Created June 3, 2020 14:05
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.