Skip to content

Instantly share code, notes, and snippets.

View rock-007's full-sized avatar
πŸˆβ€β¬›

Umair Ashraf rock-007

πŸˆβ€β¬›
View GitHub Profile
@rock-007
rock-007 / jpa-cheatsheet.java
Created January 23, 2024 22:21 — forked from curenosm/jpa-cheatsheet.java
JPA Cheatsheet
/*
JPA (Java Persistence API)
Transaction Management with an Entity-Mananger:
---
entityManager.getTransaction().begin();
entityManager.persist(<some-entity>);
entityManager.getTransaction().commit();
entityManager.clear();
# Terminal Cheat Sheet
pwd # print working directory
ls # list files in directory
cd # change directory
~ # home directory
.. # up one directory
- # previous working directory
help # get help
-h # get help
@rock-007
rock-007 / regex.md
Created March 28, 2021 09:49 — forked from vitorbritto/regex.md
Regex Cheat Sheet

Regular Expressions

Basic Syntax

  • /.../: Start and end regex delimiters
  • |: Alternation
  • (): Grouping