Giter Site home page Giter Site logo
  • πŸ‘‹ Hey, I am Arthur

GaecKo

  • Computer Science student undergraduate at Louvain School of Engineering
  • Passionate about Software Engineering, Logic of programs, Discrete Mathematics, and Advanced Computer theories.

Personal Projects πŸ’»

  • MDPSaver
    • Terminal-based program for local password management. Features password filter search, password generator, and uses hashing and encryption for security.
    • Roadmap: β–°β–°β–°β–°β–°β–°β–°β–°β–°β–° 100%
    • GUI: wip
  • TDQuicker
    • Note-taking app with pin-on-screen function, progress bar, and basic note-taking app functions.
    • Utilized PySide6 and the power of inheritance.
    • Roadmap: β–°β–°β–°β–°β–°β–°β–°β–°β–°β–° 100%
  • FluidStat
    • Simple resources displayer built in the terminal.
    • Displays CPU load, RAM usage, and battery percentage.
    • Roadmap: β–°β–°β–°β–±β–±β–±β–±β–±β–±β–± 30%
  • Many school projects, including:
    • C-Multi-Threading: Implementation of mutex, semaphores; applied them to famous problems like the Philosophers' problem, Lecter-Writer, and Producer-Consumer.
    • C-Memory-Manager: Implementation of malloc and free with a fragmentation visualizer.
    • Twit-Oz: Uses n-grams to predict the next word in a sequence of words with a Chat-GPT-like interface.
    • PacMoz: A PacMan game created using Oz and functional programming.
    • LocaWeb: A fully working website using NodeJS. The website allows you to rent and lease goods, add comments, and report users. It features a fully working moderation model with specific pages to moderate different ads.

Things I am currently doing ⏰

  • University
  • Ongoing development on multiple school and personal projects
  • Personally following training on JS, HTML/CSS, Advanced Python, Python QT, Java, C, ...

Coding Languages

Top Langs

For the beauty of it, here is a lazy Quicksort in mOZart. πŸ₯°

declare 
proc {Partition L X L1 L2}
	case L 
		of H|T then
			if H<X then 
				M1 in
					L1=H|M1 
					{Partition T X M1 L2}
			else /* Hβ‰₯X */ 
				M2 in
					L2=H|M2 {Partition T X L1 M2}
			end
		[] nil then 
			L1=nil 
			L2=nil
	end
end

declare
fun lazy {LAppend L1 L2}
	case L1 
		of H|T then 
	  		H|{LAppend T L2}
		[] nil then 
	  		L2 
	end
end

declare
fun lazy {LQuicksort L}
	case L 
		of X|M then 
			L1 L2 S1 S2 in
				{Partition M X L1 L2}
				S1={LQuicksort L1}
				S2={LQuicksort L2}
				{LAppend S1 X|S2}
		[] nil then 
			nil
	end
end

declare X in 
X = {LQuicksort 2|3|1|5|7|nil}
{Browse X}		% >> _	~> I am lazy 
{Browse X.1}	% >> 1	~> Ok but just the first one then

Arthur De Neyer's Projects

c-multi-threading icon c-multi-threading

LINFO1152 Projet 1: Multi threading exploration (Mutex, Semaphore, self-made Polling)

fluidstat icon fluidstat

FluidStat is an app to fluidly check statistics about your computer

gaecko-website icon gaecko-website

A first try on creating a personnal website (kind of a portfolio)

javageodash icon javageodash

A try on recreating a Java Geometry Dash version with a level editor

mdpsaver icon mdpsaver

Personnal app in terminal to manage password.

neuromed-vision icon neuromed-vision

Medical Analyzer is a small website based on RestAPI that allows you to display DICOM & EEG files, with many features

p2_vincent_9 icon p2_vincent_9

Second project of LINFO1002 - Web Page for "La ferme des 3 chΓͺnes"

tdquicker icon tdquicker

TDQuicker is a simple note taking app allowing you to always have a look on your tasks, the easier way possible.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.