Skip to content

Instantly share code, notes, and snippets.

View dieb's full-sized avatar
🔬
Experimenting

Andre Dieb dieb

🔬
Experimenting
View GitHub Profile
@bagder
bagder / slop.md
Last active December 5, 2025 10:09
AI slop security reports submitted to curl

Slop

This collection is limited to only include the reports that were submitted as security vulnerabilities to the curl bug-bounty program on Hackerone.

Several other issues not included here are highly suspcious as well.

Reports

  1. [Critical] Curl CVE-2023-38545 vulnerability code changes are disclosed on the internet. #2199174
@raysan5
raysan5 / custom_game_engines_small_study.md
Last active December 2, 2025 17:16
A small state-of-the-art study on custom engines

CUSTOM GAME ENGINES: A Small Study

a_plague_tale

WARNING: Article moved to separate repo to allow users contributions: https://github.com/raysan5/custom_game_engines

A couple of weeks ago I played (and finished) A Plague Tale, a game by Asobo Studio. I was really captivated by the game, not only by the beautiful graphics but also by the story and the locations in the game. I decided to investigate a bit about the game tech and I was surprised to see it was developed with a custom engine by a relatively small studio. I know there are some companies using custom engines but it's very difficult to find a detailed market study with that kind of information curated and updated. So this article.

Nowadays lots of companies choose engines like [Unreal](https:

@vollnhals
vollnhals / gist:4031511
Created November 7, 2012 13:11 — forked from rafakuch/gist:3842277
Possible solution for CanCan Issue #646?
# overwrite conditions method to work on rails >= 3.2.6
class CanCan::ModelAdapters::ActiveRecordAdapter
def conditions
if @rules.size == 1 && @rules.first.base_behavior
# Return the conditions directly if there's just one definition
dig(tableized_conditions(@rules.first.conditions).dup)
else