kristofer / paralegalwebsites.md
Last active
I'd like to become a paralegal in Delaware. Recommend some authoritative websites which can help me.
Here are some authoritative websites that can help you on your journey to becoming a paralegal in Delaware:
-
American Bar Association (ABA) - Paralegal Education Programs
The ABA provides a list of approved paralegal education programs, which can help you choose a reputable program that meets high standards.
Website: americanbar.org -
Delaware Paralegal Association (DPA)
kristofer / paralegal.md
Last active
Becoming a paralegal in Delaware involves a combination of education, skills development, and sometimes gaining certification. Here’s a step-by-step guide on how to pursue a paralegal career in Delaware:
1. Obtain the Necessary Education
- High School Diploma or GED: The first step is to have a high school diploma or equivalent.
- Paralegal Studies Program: Enroll in a paralegal studies program. While Delaware does not mandate specific educational requirements, most employers prefer candidates with formal education in paralegal studies. You can choose from the following:
- Associate Degree: This is a two-year program offered by community colleges and technical schools.
- Bachelor's Degree: A four-year degree in paralegal studies or a related field.
- Paralegal Certificate: For those who already hold a degree in another field, a paralegal certificate program, which typically lasts a few months to a year, is a good option.
2. Consider National Certification
kristofer / Riplz.html
Last active
1 | <!doctype html> |
2 | <html> |
3 | <head> |
4 | <meta charset="UTF-8" /> |
5 | <style> |
6 | body, html { |
7 | height: 100%; |
8 | } |
9 | |
10 | body { |
kristofer / HTTP AytchTeeTeePee
Last active
1 | package rocks.zipcode; |
2 | |
3 | import java.io.IOException; |
4 | import java.net.ServerSocket; |
5 | import java.net.Socket; |
6 | import java.util.Date; |
7 | |
8 | |
9 | // Show how Sockets work. Lower level than Main class. |
10 | class SimpleHTTPServer { |
kristofer / Python Virtual Environments
Last active
use to effect change in the universe
Python3 Virtual Environment Fundamentals
Python Virtual Environments are a tool used to create isolated spaces on your computer where you can install and manage different versions of Python, as well as their respective packages, without affecting the global system installation. This isolation helps avoid version conflicts between projects that require different dependencies or libraries.
Here's an in-depth look at how they work:
Why Use Virtual Environments?
kristofer / Hmm-Phi3andCards.md
Last active
So I asked Phi3...
To generate some code like we talked about with Deal.java
Read this code.
To create a Java program that models a deck of cards, we'll define two main components: Card (using an enum to represent suits and ranks) and Hand (to hold a collection of cards). We will also implement a Deck class that initializes with all possible combinations of these cards.
Step 1: Define the Card Enum
First, we define an enum for both the suit and rank to represent each card uniquely.
kristofer / SpaceInvadersGame.java
Last active
1 | import javax.swing.*; |
2 | import java.awt.*; |
3 | import java.awt.event.ActionEvent; |
4 | import java.awt.event.ActionListener; |
5 | import java.awt.event.KeyEvent; |
6 | import java.awt.event.KeyListener; |
7 | import java.util.ArrayList; |
8 | import java.util.List; |
9 | import java.util.Random; |