Skip to content

Instantly share code, notes, and snippets.

View wardbeyens's full-sized avatar

Ward Beyens wardbeyens

View GitHub Profile
@wardbeyens
wardbeyens / docker-compose.yml
Created May 11, 2021 15:51 — forked from sgyyz/docker-compose.yml
Postgres & PgAdmin docker-compose.yml
version: '3'
services:
postgres:
image: postgres
ports:
- "5432:5432"
volumes:
- pg-dataset:/var/lib/postgresql/data
environment:
@wardbeyens
wardbeyens / twotone-fastfood.svg
Created July 6, 2021 19:50
FoodAndDrinksIcon
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);"><path d="M1 21.98c0 .56.45 1.01 1.01 1.01H15c.56 0 1.01-.45 1.01-1.01V21H1v.98z" fill="#626262"/><path opacity=".3" d="M8.5 10.99c-1.42 0-3.77.46-4.88 2.01h9.77c-1.12-1.55-3.47-2.01-4.89-2.01z" fill="#626262"/><path d="M8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM3.62 13c1.11-1.55 3.47-2.01 4.88-2.01s3.77.46 4.88 2.01H3.62zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5h-5z" fill="#626262"/><rect x="0" y="0" width="24" height="24" fill="rgba(0, 0, 0, 0)" /></svg>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@wardbeyens
wardbeyens / foodanddrinks.json
Created July 6, 2021 20:57
Food and Drinks mapcomplete json
{
"id": "foodanddrinks",
"title": {
"en": "Food & Drinks"
},
"shortDescription": {
"en": "Map with food and drink sellers"
},
"description": {
"en": "Are you hungry or thirsty?\nThen find a vender on this map"
@wardbeyens
wardbeyens / information.svg
Last active July 7, 2021 08:34
information icon
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@wardbeyens
wardbeyens / u4zawfidvseco6usxurddnzc6b7i3bjuih5wlh2omugbsmezjox7rcad.onion
Created September 22, 2021 21:20
u4zawfidvseco6usxurddnzc6b7i3bjuih5wlh2omugbsmezjox7rcad.onion
http://u4zawfidvseco6usxurddnzc6b7i3bjuih5wlh2omugbsmezjox7rcad.onion/
@wardbeyens
wardbeyens / Wordle words
Created January 25, 2022 22:40
Wordle words
aahed,aalii,aargh,aarti,abaca,abaci,aback,abacs,abaft,abaka,abamp,aband,abase,abash,abask,abate,abaya,abbas,abbed,abbes,abbey,abbot,abcee,abeam,abear,abele,abers,abets,abhor,abide,abies,abled,abler,ables,ablet,ablow,abmho,abode,abohm,aboil,aboma,aboon,abord,abore,abort,about,above,abram,abray,abrim,abrin,abris,absey,absit,abuna,abune,abuse,abuts,abuzz,abyes,abysm,abyss,acais,acari,accas,accoy,acerb,acers,aceta,achar,ached,aches,achoo,acids,acidy,acing,acini,ackee,acker,acmes,acmic,acned,acnes,acock,acold,acorn,acred,acres,acrid,acros,acted,actin,acton,actor,acute,acyls,adage,adapt,adaws,adays,adbot,addax,added,adder,addio,addle,adeem,adept,adhan,adieu,adios,adits,adman,admen,admin,admit,admix,adobe,adobo,adopt,adore,adorn,adown,adoze,adrad,adred,adsum,aduki,adult,adunc,adust,advew,adyta,adzed,adzes,aecia,aedes,aegis,aeons,aerie,aeros,aesir,afald,afara,afars,afear,affix,afire,aflaj,afoot,afore,afoul,afrit,afros,after,again,agama,agami,agape,agars,agast,agate,agave,agaze,agene,agent,agers,agger,aggie,aggri,aggr
<!DOCTYPE html>
<html>
<head>
<title>Basic Web Page</title>
</head>
<body>
Hello World!
</body>
</html>
@wardbeyens
wardbeyens / converter.py
Created May 26, 2022 13:02
TextUITester terminal to input file converter
dateStringToReplace = "18/03/2022 at 9:52"
input = open("input.txt", "r")
lines = input.readlines()
newlines = ["Ejava -cp target/classes be.kuleuven.assemassit.App\n"]
i = 0
while i < len(lines):
nextline = ""
if(i < (len(lines)-1)):