Skip to content

Instantly share code, notes, and snippets.

View LeoSaucedo's full-sized avatar
👨‍💻
SWE @ Lowe's

Carlos Saucedo LeoSaucedo

👨‍💻
SWE @ Lowe's
View GitHub Profile
@LeoSaucedo
LeoSaucedo / makefile
Created January 28, 2020 22:57
Java Quick Makefile
build:
# Compile java files.
javac *.java
# Create jar file.
jar cfm out.jar MANIFEST.MF *.class *.java
# Build javadoc.
mkdir www && javadoc *.java -d www/
clean:
# Remove class files, java package, and javadoc.
@LeoSaucedo
LeoSaucedo / 📊 Weekly development breakdown
Last active April 25, 2022 00:53
Weekly Development Breakdown
Java 14 hrs 17 mins ███████████████░░░░░░ 71.5%
JSON 1 hr 21 mins █▍░░░░░░░░░░░░░░░░░░░ 6.8%
Gherkin 1 hr 14 mins █▎░░░░░░░░░░░░░░░░░░░ 6.2%
JavaScript 39 mins ▋░░░░░░░░░░░░░░░░░░░░ 3.3%
YAML 31 mins ▌░░░░░░░░░░░░░░░░░░░░ 2.6%
@LeoSaucedo
LeoSaucedo / mytheme.json
Created October 23, 2019 15:37
My VSCode Theme.
{
"$schema": "vscode://schemas/color-theme",
"type": "dark",
"colors": {
"activityBar.background": "#1a1a1a",
"activityBar.border": "#00000060",
"activityBar.foreground": "#eeffff",
"activityBarBadge.background": "#2979ff",
"activityBarBadge.foreground": "#ffffff",
"badge.background": "#00000030",
@LeoSaucedo
LeoSaucedo / index.ejs
Last active August 8, 2019 13:47
todo-mini initial EJS.
<html>
<head>
<title>ToDo App</title>
<link
href="https://fonts.googleapis.com/css?family=Lato:100"
rel="stylesheet"
/>
<link href="/styles.css" rel="stylesheet" />
</head>
<body>
@LeoSaucedo
LeoSaucedo / wolframapi.py
Last active June 3, 2019 21:05
Wolfram API for Python
"""
Wolfram API implementation for Python.
Returns queries as a text file.
Carlos Saucedo, 2019
"""
import wolframalpha
class Client(object):
def __init__(self, key):
self.key = key