From 0d8b380244fc0f66f83dc35e3ad541b7a712fb4d Mon Sep 17 00:00:00 2001 From: Gareth Thomas Date: Sat, 16 Mar 2024 15:20:12 +0100 Subject: [PATCH 1/3] feat: add new joke --- src/Jokes.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Jokes.jl b/src/Jokes.jl index a05d8e4..9e08f5e 100644 --- a/src/Jokes.jl +++ b/src/Jokes.jl @@ -22,6 +22,7 @@ global jokes_en = ["There are 10 types of people in the world: those who underst "To err is human - and to blame it on a computer is even more so." "My software never has bugs. It just develops random features." "The more I C, the less I see." +"We'll we'll we'll... If it isn't autocorrect." "Why do functional programmers never break up? Because they always find a way to map and filter out their differences." "Why did the software engineer stay cool under pressure? Because he had excellent exception handling." "Why do Julia programmers never get coffee breaks? Because by the time they pour their coffee, their code's already done running!" From ce18a51b5a6a9ebd119fc623f3c99361d87d666a Mon Sep 17 00:00:00 2001 From: Gareth Thomas Date: Sat, 16 Mar 2024 15:23:07 +0100 Subject: [PATCH 2/3] feat: add a few more jokes --- src/Jokes.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Jokes.jl b/src/Jokes.jl index 9e08f5e..5c7f324 100644 --- a/src/Jokes.jl +++ b/src/Jokes.jl @@ -23,6 +23,9 @@ global jokes_en = ["There are 10 types of people in the world: those who underst "My software never has bugs. It just develops random features." "The more I C, the less I see." "We'll we'll we'll... If it isn't autocorrect." +"My password is the last 16 digits of Pi." +"What made the Java developers wear glasses? They can't C." +"I would tell you a UDP joke, but you might not get it." "Why do functional programmers never break up? Because they always find a way to map and filter out their differences." "Why did the software engineer stay cool under pressure? Because he had excellent exception handling." "Why do Julia programmers never get coffee breaks? Because by the time they pour their coffee, their code's already done running!" From f2ca1f4bf49069a5e9e3edaf044e7ad80e05e8fb Mon Sep 17 00:00:00 2001 From: Gareth Thomas Date: Sat, 16 Mar 2024 15:31:47 +0100 Subject: [PATCH 3/3] test: test with Julia 1.10 --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6ca734..9c84108 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,7 @@ jobs: - '1.7' - '1.8' - '1.9' + - '1.10' - 'nightly' os: - ubuntu-latest @@ -58,6 +59,7 @@ jobs: version: - '1.8' - '1.9' + - '1.10' steps: - uses: actions/checkout@v2 - uses: julia-actions/setup-julia@v1