From thezipcreator to ~sircmpwn/sr.ht-discuss
Steps to reproduce: 1. Create new project 2. Create a git repository for that project 3. Click the button to show the readme on the project page Since the repo doesn't have a readme, it just says: > An internal error occured fetching the README for this project. Obviously it should give an error of some sort, but maybe it should more be along the lines of > The repository for this project does not host a README. (could probably be phrased better than that, but you get it) If a repo doesn't have a readme, the button to add it to the project probably shouldn't show up in the first place, also.
From thezipcreator to ~thezipcreator/linlu
Linlu is an idea for a shell and UI toolkit designed around malleable software philosophy. The intent is to give the user the ability to compose independent programs, perhaps written by different people, in a way that does not require intimate knowledge of programming or of the machine. More info: https://thezipcreator.srht.site/projects/linlu/concept.html
From thezipcreator to ~rabbits/public-inbox
Minor issue, this code: ``` while(year++) { for(season = 0; season < 4; season++) { if(year == 2 && season == 3) print("Reached!"); return; } } ``` should probably be ``` while(year++) { for(season = 0; season < 4; season++) {