~thezipcreator

~thezipcreator/linlu

Last active 29 days ago

~thezipcreator/qmod

Last active 3 months ago

~thezipcreator/public-inbox

Last active 4 months ago
View more

Recent activity

Adding a non-existent README to a project causes internal error. 6 days ago

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.

Linlu - A malleable computing environment. 29 days ago

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

Code on fractran page is slightly wrong 2 months ago

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++) {