Skip to content

Instantly share code, notes, and snippets.

View desponda's full-sized avatar

Daniel Esponda desponda

View GitHub Profile
#!/usr/bin/env python3
import argparse
import json
import math
import os
import re
import socket
import subprocess
import sys
from typing import Any, Dict, List, Tuple, Union, Iterable, Optional
@desponda
desponda / .zshrc
Last active September 20, 2022 16:08
ZSH file
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
package edu.cs6310.project4.entities;
import javax.persistence.*;
import java.util.Collection;
/**
* Created by DEsponda on 3/31/2015.
*/
@Entity
@Table(name = "course", schema = "", catalog = "project4")
package edu.cs6310.project4.entities;
import javax.persistence.*;
import java.util.Collection;
/**
* Created by DEsponda on 3/31/2015.
*/
@Entity
@Table(name = "course", schema = "", catalog = "project4")