Horus is a PHP-based exam tracking web app with a custom backend framework adhering to PSR standards.
Arduino library for precise person localization using DWM3000 and ESP32.
A fork of Eris, a Discord Node.js library, focused on keeping up with the latest Discord API changes.
Backend voor tweede deel van webtech 3
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
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.
pr created time in 5 days
Backend voor tweede deel van webtech 3
fork in 5 days
push eventHeadTriXz/dysnomia
commit sha 161387b16756a9a30d5f48475085a60cd8482783
Forgot type for addGuildMember
push time in 2 months
push eventHeadTriXz/dysnomia
commit sha a5c9923da7ab0bd2b327b7ca0304abd371fee9d9
Impl. requested changes
push time in 2 months
push eventHeadTriXz/dysnomia
commit sha e088cf3881cbb718c012ae3dde580c71ac420375
feat(Guild): support addGuildMember (PR 1446) (#51) Backported from 61b3b4f9007b9909e309355d64f67f989941f5c2 Co-authored-by: Evan Broder <evan@ebroder.net>
commit sha 97efd000c7adae7a5afaa05bd40af0459f8d4185
fix(PrivateThreadChannel): properly propagate updates (#53)
commit sha 3040adb0ead6654479fd82da06cdd982c8b56abc
feat(Client): add missing properties to old guild object (#55) Backported from upstream: https://github.com/abalabahaha/eris/commit/9320ab2d15ade54b6f676e3f3f39531ceba9f06a
commit sha 500cfd5fb0f8e142e5e3027ea5f9139f0e1cfc72
refactor: bump the minimum node version to 18.x.x (#46) Let's hope nothing breaks...
commit sha 8d62d7f112e0b3bec684e9ff0b9e1282213bfde1
Implement new RESTClient
commit sha 61b3c862033bc9bb3d419eaac5bf203f61057c06
Small fixes
commit sha e1f3a8272c3c43930f2f9d721f328633354deb87
Add back deprecated ClientOptions
commit sha c0dbef96be0ce097ccda87fb851f6af7c23ca8c2
Forgot to save a file
push time in 2 months
push eventHeadTriXz/dysnomia
commit sha e088cf3881cbb718c012ae3dde580c71ac420375
feat(Guild): support addGuildMember (PR 1446) (#51) Backported from 61b3b4f9007b9909e309355d64f67f989941f5c2 Co-authored-by: Evan Broder <evan@ebroder.net>
commit sha 97efd000c7adae7a5afaa05bd40af0459f8d4185
fix(PrivateThreadChannel): properly propagate updates (#53)
commit sha 3040adb0ead6654479fd82da06cdd982c8b56abc
feat(Client): add missing properties to old guild object (#55) Backported from upstream: https://github.com/abalabahaha/eris/commit/9320ab2d15ade54b6f676e3f3f39531ceba9f06a
commit sha 500cfd5fb0f8e142e5e3027ea5f9139f0e1cfc72
refactor: bump the minimum node version to 18.x.x (#46) Let's hope nothing breaks...
push time in 2 months
issue commenthyprwm/Hyprland
autorandr
is for X11. Use kanshi
instead.
comment created time in 3 months
Pull request review commentprojectdysnomia/dysnomia
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.
comment created time in 3 months
Pull request review commentprojectdysnomia/dysnomia
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.
comment created time in 3 months
startedprojectdysnomia/dysnomia
started time in 3 months
push eventHeadTriXz/dysnomia
commit sha 1009490bbb43c410661b41e2d17cba5785a0ecf1
Forgot to save a file
push time in 3 months
PR opened projectdysnomia/dysnomia
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.
pr created time in 3 months
push eventHeadTriXz/dysnomia
commit sha 081eae4cec3977c34617f727a58ca7d9cef60ff0
Add back deprecated ClientOptions
push time in 3 months
push eventHeadTriXz/dysnomia
commit sha 1e5f2fe4420b6063d5bfcbb37e5f188a3c9292c4
Small fixes
push time in 3 months
issue commenthyprwm/Hyprland
Only one monitor resumes after dpms off with new wlroots
Can repro.
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.
comment created time in 3 months