Skip to content

Instantly share code, notes, and snippets.

View jeehalways's full-sized avatar

Jessica Rodrigues jeehalways

  • Sweden
  • 06:25 (UTC +02:00)
View GitHub Profile
@jeehalways
jeehalways / exercises.ts
Created August 29, 2025 13:11
Typescript exercises
//Union types
// Exercise 1:
type idType = number | string;
const showId = (code: idType) => {
console.log("Your ID is:" + code);
};
showId("45678");
@jeehalways
jeehalways / postgresql_queries.sql
Created October 1, 2025 10:47
PostgresSQL Advanced Queries & Relationships Assignment
-- Task 1: List All Players and Their Scores
SELECT
p.name AS player_name,
g.title AS game_title,
s.score
FROM
players p
INNER JOIN scores s ON p.id = s.player_id
INNER JOIN games g ON s.game_id = g.id