You are browsing as a guest. Sign up (or log in) to start making projects!

Joseph-T

@Joseph-T

Joined June 1st, 2026

  • 19Devlogs
  • 3Projects
  • 0Ships
  • 0Votes
Open comments for this post

1h 38m 48s logged

I switched to an extension based thing. So anyone can make their own extensions for the app. The picture is of a JSON that has the data for all the extensions at the moment. I tried making the frosted glass look by adding random noise but I was not able to make it work.

I switched to an extension based thing. So anyone can make their own extensions for the app. The picture is of a JSON that has the data for all the extensions at the moment. I tried making the frosted glass look by adding random noise but I was not able to make it work.

Replying to @Joseph-T

0
1
Open comments for this post

1h 44m 39s logged

Added settings.json, the ability to open apps, and continued to attempt a frosted glass look. Settings.json will now allow for more customization. The ability to open apps is kind of the whole point its to avoid windows weird search bar thing that’s slow and not great to use. And after doing more looking into the blur effect it looks like the only way to do it is to have some js take screenshots of whats behind the page and then save that png and load it under the transparent thing than use the blur filter but, it seems slow, complicated, and not great for cross platform, so I am still looking for other solutions

Added settings.json, the ability to open apps, and continued to attempt a frosted glass look. Settings.json will now allow for more customization. The ability to open apps is kind of the whole point its to avoid windows weird search bar thing that’s slow and not great to use. And after doing more looking into the blur effect it looks like the only way to do it is to have some js take screenshots of whats behind the page and then save that png and load it under the transparent thing than use the blur filter but, it seems slow, complicated, and not great for cross platform, so I am still looking for other solutions

Replying to @Joseph-T

0
1
Open comments for this post

51m 5s logged

Added a search feature. The feature just looks up what is currently in the search bar. Unfortunately the search feature uses Wikipedia’s API, which does make it much faster, than a bot crawling through google. But is susceptible to misinformation. I don’t think this is a massive problem because I am only taking the first sentence of the article. But I may look into alternatives in the future.

Added a search feature. The feature just looks up what is currently in the search bar. Unfortunately the search feature uses Wikipedia’s API, which does make it much faster, than a bot crawling through google. But is susceptible to misinformation. I don’t think this is a massive problem because I am only taking the first sentence of the article. But I may look into alternatives in the future.

Replying to @Joseph-T

0
1
Open comments for this post

42m 40s logged

added a timer to the thing, you also can instead of relying on autodetect to figure out what action you want to take you can say @tool_name instead where tool_name is the tool you are calling

added a timer to the thing, you also can instead of relying on autodetect to figure out what action you want to take you can say @tool_name instead where tool_name is the tool you are calling

Replying to @Joseph-T

0
2
Open comments for this post

1h 16m 34s logged

added conversions to the app and a global shortcut to open the app I decided on Alt+Z for the shortcut because I don’t have that mapped to anything right now and the two keys are physically close to each other. The conversion thing was interesting because there are a lot of different units for the same stuff, miles, inches, cm, km, etc. all measure length. I really did not want to make a table for every possible conversion, so I wrote a function that takes a table with enough conversions and uses that to fill out the blanks. For example if I know the conversion between ft and in and in and cm. I can solve for the conversion between ft and cm.

added conversions to the app and a global shortcut to open the app I decided on Alt+Z for the shortcut because I don’t have that mapped to anything right now and the two keys are physically close to each other. The conversion thing was interesting because there are a lot of different units for the same stuff, miles, inches, cm, km, etc. all measure length. I really did not want to make a table for every possible conversion, so I wrote a function that takes a table with enough conversions and uses that to fill out the blanks. For example if I know the conversion between ft and in and in and cm. I can solve for the conversion between ft and cm.

Replying to @Joseph-T

0
3
Open comments for this post

52m 32s logged

I improved the looks slightly improved the functionality of the calculator. I tried for more than half this time to make the blur working unfortunately it does not appear to be possible maybe doing something with JS canvases. But if I have to use something like that the amount of compute time won’t be worth it. So I decided against doing it until there is an easy way to do that.

I improved the looks slightly improved the functionality of the calculator. I tried for more than half this time to make the blur working unfortunately it does not appear to be possible maybe doing something with JS canvases. But if I have to use something like that the amount of compute time won’t be worth it. So I decided against doing it until there is an easy way to do that.

Replying to @Joseph-T

0
2
Open comments for this post

1h 7m 36s logged

Added glassy look and made a calculator app for the program. In the end I want an app that is completely transparent except for the results and search bar. Those should be tinted and blurred, but in electron the app I am using it is impossible to make a single element transparent through the apps behind it and blurred. I can do that for elements in my own app. Or the background for the entire app. So the search bar and results bar’s backgrounds are not blurred, which makes them hard to read over text.

Added glassy look and made a calculator app for the program. In the end I want an app that is completely transparent except for the results and search bar. Those should be tinted and blurred, but in electron the app I am using it is impossible to make a single element transparent through the apps behind it and blurred. I can do that for elements in my own app. Or the background for the entire app. So the search bar and results bar’s backgrounds are not blurred, which makes them hard to read over text.

Replying to @Joseph-T

0
1
Open comments for this post

58m 23s logged

Made a basic looking search bar that opens when you click a little icon in the corner of the screen, doesn’t do anything besides sit there yet. I am using electron and node JS for it.

Made a basic looking search bar that opens when you click a little icon in the corner of the screen, doesn’t do anything besides sit there yet. I am using electron and node JS for it.

Replying to @Joseph-T

0
1
Open comments for this post

1h 54m 10s logged

Fixed bugs

Worked on fixing some basic bugs in the card recommendation, so that I could make it work better with wild Mana on cards, it took me 30 minutes to realize a variable should have had the let keyword instead of the var keyword. But now it works much better and is in a place to where I can start adding slightly more advanced recommendations.

Fixed bugs

Worked on fixing some basic bugs in the card recommendation, so that I could make it work better with wild Mana on cards, it took me 30 minutes to realize a variable should have had the let keyword instead of the var keyword. But now it works much better and is in a place to where I can start adding slightly more advanced recommendations.

Replying to @Joseph-T

0
2
Open comments for this post

2h 12m 37s logged

Added a simple non-ai based card recommender for land, I also added a simple graph showing the land distribution. Started working on the backend for the AI recomendation.

Added a simple non-ai based card recommender for land, I also added a simple graph showing the land distribution. Started working on the backend for the AI recomendation.

Replying to @Joseph-T

0
4
Open comments for this post

1h 22m 35s logged

added filtering to the search and started on the training for AI card selection

added filtering to the search and started on the training for AI card selection

Replying to @Joseph-T

0
2
Open comments for this post

1h 4m 29s logged

Made search more reliable and added simple loading animation

Made search more reliable and added simple loading animation

Replying to @Joseph-T

0
2
Open comments for this post

1h 13m 45s logged

Made a basic website and managed to get the search feature working fully

Made a basic website and managed to get the search feature working fully

Replying to @Joseph-T

0
2
Open comments for this post

1h 32m 59s logged

I setup the project and started screwing with an API for getting basic information

I setup the project and started screwing with an API for getting basic information

Replying to @Joseph-T

0
2
Open comments for this post

33m 46s logged

added a readme and made a version for firefox

added a readme and made a version for firefox

Replying to @Joseph-T

0
4
Open comments for this post

31m 32s logged

made a nicer GUI for the citation extention

made a nicer GUI for the citation extention

Replying to @Joseph-T

0
4
Open comments for this post

1h 30m 58s logged

Added a simple memory system to remember previous citations

Added a simple memory system to remember previous citations

Replying to @Joseph-T

0
3
Open comments for this post

1h 33m logged

I was getting base functionality of the citer working

I was getting base functionality of the citer working

Replying to @Joseph-T

0
4

Followers

Loading…