diff --git a/ideas/concept.txt b/ideas/concept.txt new file mode 100644 index 0000000..4a31da0 --- /dev/null +++ b/ideas/concept.txt @@ -0,0 +1,23 @@ +What if I have static representations of a character, and have mutable modifers to that static state. + +i.e. + +struct { + int x, + int y, + int health, + }monster + +monster goblin; +goblin.x = 5; +goblin.y = 5; +goblin.health = 45; + +int goblin.health.mod; +goblin.health.mod = -5 (took dmg); + +current_goblin_health = goblin.health + goblin.health.mod + +something like that... + + diff --git a/ideas/loser_idea.txt b/ideas/loser_idea.txt new file mode 100644 index 0000000..7f66db8 --- /dev/null +++ b/ideas/loser_idea.txt @@ -0,0 +1,19 @@ +A replacement for podbeuter. +Write in ncurses with rust. +Have a hotkey to flag for delete. Also have undelete key +Have a hotkey that will open up the URLS file in an editor set in the config file +have a help of course + +config file + Can set editor + Can set default video/audio player + -- Have a hot key that allows to use a non-default player + Have list of hot key setable here (let's keep it easy, at least at first, it'll just be the actual variables to be loaded in) + +Allow to choose which episode to start from +Remember where we left off in the episode list (how do they do that?) +If possible, add some sort of resume feature. +Add YTPDL support. + Bassically it'll work the same way, but it will only create the update file, not run it. + Can we queue videos somehow? Just pull playlist information and make it look like the rest of the program? +