profile
viewpoint

HeadTriXz/Horus 2

Horus is a PHP-based exam tracking web app with a custom backend framework adhering to PSR standards.

HeadTriXz/DWM3000-ESP32 0

Arduino library for precise person localization using DWM3000 and ESP32.

HeadTriXz/dysnomia 0

A fork of Eris, a Discord Node.js library, focused on keeping up with the latest Discord API changes.

HeadTriXz/memory-backend 0

Backend voor tweede deel van webtech 3

HeadTriXz/Trickcord-Treat 0

This is a Halloween-themed Discord bot that sends virtual trick-or-treaters to your server for a speed-based game.

PR opened hanze-hbo-ict/memory-backend

Snicker 🍫

De getAggregatedByDate functie maakte voorheen gebruik van een for-loop om de count te berekenen, als alternatief voor GROUP BY. Deze pull request maakt wijzigingen aan de SQL-query door gebruik te maken van een GROUP BY-clause, hierdoor is de for-loop niet meer nodig.

Note: Binnen Doctrine DQL bestaat er helaas geen DATE functie. Daarom wordt er gebruik gemaakt van de functie SUBSTRING om de datum te achterhalen.

Mocht deze pull request op een magische wijze geïmplementeerd worden, verzoek ik u vriendelijk contact met mij op te nemen via het volgende e-mailadres: hello@headtrixz.dev. Graag bespreken we dan een geschikte tijd en locatie om de Snicker aan mij te overhandigen.

+13 -20

0 comment

1 changed file

pr created time in 5 days

create barnchHeadTriXz/memory-backend

branch : snicker

created branch time in 5 days

fork HeadTriXz/memory-backend

Backend voor tweede deel van webtech 3

fork in 5 days

PublicEvent

push eventHeadTriXz/dysnomia

headtrixz

commit sha 161387b16756a9a30d5f48475085a60cd8482783

Forgot type for addGuildMember

view details

push time in 2 months

push eventHeadTriXz/dysnomia

headtrixz

commit sha a5c9923da7ab0bd2b327b7ca0304abd371fee9d9

Impl. requested changes

view details

push time in 2 months

push eventHeadTriXz/dysnomia

TTtie

commit sha e088cf3881cbb718c012ae3dde580c71ac420375

feat(Guild): support addGuildMember (PR 1446) (#51) Backported from 61b3b4f9007b9909e309355d64f67f989941f5c2 Co-authored-by: Evan Broder <evan@ebroder.net>

view details

TTtie

commit sha 97efd000c7adae7a5afaa05bd40af0459f8d4185

fix(PrivateThreadChannel): properly propagate updates (#53)

view details

TTtie

commit sha 3040adb0ead6654479fd82da06cdd982c8b56abc

feat(Client): add missing properties to old guild object (#55) Backported from upstream: https://github.com/abalabahaha/eris/commit/9320ab2d15ade54b6f676e3f3f39531ceba9f06a

view details

TTtie

commit sha 500cfd5fb0f8e142e5e3027ea5f9139f0e1cfc72

refactor: bump the minimum node version to 18.x.x (#46) Let's hope nothing breaks...

view details

headtrixz

commit sha 8d62d7f112e0b3bec684e9ff0b9e1282213bfde1

Implement new RESTClient

view details

headtrixz

commit sha 61b3c862033bc9bb3d419eaac5bf203f61057c06

Small fixes

view details

headtrixz

commit sha e1f3a8272c3c43930f2f9d721f328633354deb87

Add back deprecated ClientOptions

view details

headtrixz

commit sha c0dbef96be0ce097ccda87fb851f6af7c23ca8c2

Forgot to save a file

view details

push time in 2 months

push eventHeadTriXz/dysnomia

TTtie

commit sha e088cf3881cbb718c012ae3dde580c71ac420375

feat(Guild): support addGuildMember (PR 1446) (#51) Backported from 61b3b4f9007b9909e309355d64f67f989941f5c2 Co-authored-by: Evan Broder <evan@ebroder.net>

view details

TTtie

commit sha 97efd000c7adae7a5afaa05bd40af0459f8d4185

fix(PrivateThreadChannel): properly propagate updates (#53)

view details

TTtie

commit sha 3040adb0ead6654479fd82da06cdd982c8b56abc

feat(Client): add missing properties to old guild object (#55) Backported from upstream: https://github.com/abalabahaha/eris/commit/9320ab2d15ade54b6f676e3f3f39531ceba9f06a

view details

TTtie

commit sha 500cfd5fb0f8e142e5e3027ea5f9139f0e1cfc72

refactor: bump the minimum node version to 18.x.x (#46) Let's hope nothing breaks...

view details

push time in 2 months

issue commenthyprwm/Hyprland

autorandr freezes Hyprland

autorandr is for X11. Use kanshi instead.

LDAP

comment created time in 3 months

delete branch HeadTriXz/Project-ISY

delete branch : jannie

delete time in 3 months

PR closed HeadTriXz/Project-ISY

Jannie komt je pingelen

Groetjes van Jannie

+20 -12

1 comment

2 changed files

jordycoding

pr closed time in 3 months

Pull request review commentprojectdysnomia/dysnomia

Implement new RESTClient

 class Client extends EventEmitter {             value: token         }); -        this.requestHandler = new RequestHandler(this, this.options.rest);+        this.rest = new RESTClient(Object.assign({+            client: this,+            token: token+        }, this.options.rest));         delete this.options.rest; +        // Backwards compatibility+        this.rest.on("response", (request) => this.emit("rawREST", request));+

Don't see the need of Client extending RESTClient. Two completely different things, and the reason RESTClient exists is to split them.

HeadTriXz

comment created time in 3 months

PullRequestReviewEvent

Pull request review commentprojectdysnomia/dysnomia

Implement new RESTClient

 class Client extends EventEmitter {     * @arg {String} roleID The ID of the role     * @arg {String} [reason] The reason to be displayed in audit logs     * @returns {Promise}+    * @deprecated     */     addGuildMemberRole(guildID, memberID, roleID, reason) {-        return this.requestHandler.request("PUT", Endpoints.GUILD_MEMBER_ROLE(guildID, memberID, roleID), true, {-            reason-        });+        process.emitWarning("addGuildMemberRole() is deprecated and will be removed in the future.", "DeprecationWarning");

Didn't do that on purpose so you can see which function is deprecated, otherwise you'd have to define A LOT of error messages in emitDeprecation.

HeadTriXz

comment created time in 3 months

PullRequestReviewEvent

startedprojectdysnomia/dysnomia

started time in 3 months

push eventHeadTriXz/dysnomia

headtrixz

commit sha 1009490bbb43c410661b41e2d17cba5785a0ecf1

Forgot to save a file

view details

push time in 3 months

PR opened projectdysnomia/dysnomia

Implement new RESTClient

This pull request deprecates all REST methods of Client and moves them into a new class called RESTClient. This will allow for making requests without needing to create an instance of Client.

In addition, this PR introduces a completely new RequestHandler, which will handle requests made through RESTClient. The new RequestHandler provides better performance and less spaghetti code 🍝.

The implementation of RESTClient has been designed with full backwards compatibility in mind, so existing code should continue to work seamlessly. One significant improvement in this PR is the use of undici's fetch function for making HTTP requests.

As this is a significant change, extensive testing will be required to ensure its stability and correctness. It also heavily depends on #46. Therefore, this PR will remain a draft until all testing is completed and #46 is merged.

Please review the changes and provide feedback as needed.

The new files currently use a different coding style (see class fields) than the rest of the library. It may, or may not change in the future, depending on #46.

+5539 -1973

0 comment

45 changed files

pr created time in 3 months

push eventHeadTriXz/dysnomia

headtrixz

commit sha 081eae4cec3977c34617f727a58ca7d9cef60ff0

Add back deprecated ClientOptions

view details

push time in 3 months

push eventHeadTriXz/dysnomia

headtrixz

commit sha 1e5f2fe4420b6063d5bfcbb37e5f188a3c9292c4

Small fixes

view details

push time in 3 months

create barnchHeadTriXz/dysnomia

branch : rest

created branch time in 3 months

issue commenthyprwm/Hyprland

Only one monitor resumes after dpms off with new wlroots

Can repro.

2e0byo

comment created time in 3 months

fork HeadTriXz/dysnomia

A fork of Eris, a Discord Node.js library, focused on keeping up with the latest Discord API changes.

fork in 3 months

issue commenthyprwm/Hyprland

Crashed after resuming from lock screen (swaylock-effects)

I use SDDM and swaylock-effects, got the same problem.

nawfalmrouyan

comment created time in 3 months

more