This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace Alvornithms | |
| { | |
| class Itertools | |
| { | |
| static IEnumerable<T[]> Permutations<T>(T[] ts) where T : System.IComparable<T> | |
| { | |
| Array.Sort(ts); | |
| while (true) | |
| { | |
| yield return (T[])ts.Clone(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Game | Link | Authors | |
|---|---|---|---|
| Agent Aloe | https://itch.io/jam/love2d-jam-2024/rate/2549349 | @mehlerp | |
| Back Window | https://itch.io/jam/love2d-jam-2024/rate/2548702 | @britdan | |
| BangPong | https://itch.io/jam/love2d-jam-2024/rate/2549445 | @zhengying#5215 | |
| Body is thirsty | https://itch.io/jam/love2d-jam-2024/rate/2550182 | undercoverDemoness | |
| BrightBound | https://itch.io/jam/love2d-jam-2024/rate/2548448 | @coldchange | |
| BuiLLET HELL | https://itch.io/jam/love2d-jam-2024/rate/2550565 | @the_syncr0 | |
| Button Clicker | https://itch.io/jam/love2d-jam-2024/rate/2546495 | LolmanBruh | |
| Catch the Interface | https://itch.io/jam/love2d-jam-2024/rate/2547097 | mitya | |
| Click OK | https://itch.io/jam/love2d-jam-2024/rate/2550183 | @14rry. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| board = """ fffff | |
| fffffffff | |
| fffffffff | |
| fffffffff | |
| fffffffff | |
| fffffffffff | |
| fffffff | |
| fffffff | |
| fffffff | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Game | Link | Authors | |
|---|---|---|---|
| 4x Space Journey | https://itch.io/jam/love2d-jam-2025/rate/3418869 | @venca8174 | |
| A Tooth for a Tooth | https://itch.io/jam/love2d-jam-2025/rate/3416975 | @peterplaty, @paintsimmon, Alex Devine | |
| A|L|T|3|R | https://itch.io/jam/love2d-jam-2025/rate/3397587 | LesbidaGremlim | |
| According to Plan | https://itch.io/jam/love2d-jam-2025/rate/3413040 | deadpoolISAlive | |
| Apocalyptic City | https://itch.io/jam/love2d-jam-2025/rate/3401485 | @juansanchez0001 | |
| Async Gambits | https://itch.io/jam/love2d-jam-2025/rate/3419256 | henrykeane | |
| AutoKnight | https://itch.io/jam/love2d-jam-2025/rate/3418456 | hwjd8999 | |
| Bad Wizard | https://itch.io/jam/love2d-jam-2025/rate/3397499 | @coder8bit | |
| Barnyard Brawl | https://itch.io/jam/love2d-jam-2025/rate/3419115 | @boldbigflank |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from itertools import product | |
| from math import lcm | |
| sizes = (8,8,8) | |
| initial_positions = (6,5,4) | |
| buttons = [ | |
| (1,1,1), | |
| (0,1,1), | |
| (1,0,1), | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Game | Link | Authors | |
|---|---|---|---|
| [redacted] | https://itch.io/jam/love2d-jam-2025b/rate/3869477 | @literallyjosh | |
| Armored Egg | https://itch.io/jam/love2d-jam-2025b/rate/3870224 | TheRulerMeasure | |
| Candela | https://itch.io/jam/love2d-jam-2025b/rate/3868333 | @moth_kira @tofe | |
| DiGGer | https://itch.io/jam/love2d-jam-2025b/rate/3869423 | CutePenguin | |
| Game Over | https://itch.io/jam/love2d-jam-2025b/rate/3869561 | @jakeojeff | |
| Georgio's Reveal | https://itch.io/jam/love2d-jam-2025b/rate/3869588 | @ross_____ | |
| HopeCore | https://itch.io/jam/love2d-jam-2025b/rate/3848661 | @fnicon | |
| Isla Obscura | https://itch.io/jam/love2d-jam-2025b/rate/3870015 | @badduck32 | |
| NiceNESs | https://itch.io/jam/love2d-jam-2025b/rate/3856835 | @xanthiacoder |
OlderNewer