x0x7 here
x0x7 here
Hi Everyone,
I'm checking in. I'm hoping rabbithole takes off. A bit about myself. I'm a bit of a tech nerd. I mostly do web development type stuff. I have more projects I'm working on at any one moment than I can count. I'm always happy to help anyone who needs a pointer or someone to chat with.
I'm checking in. I'm hoping rabbithole takes off. A bit about myself. I'm a bit of a tech nerd. I mostly do web development type stuff. I have more projects I'm working on at any one moment than I can count. I'm always happy to help anyone who needs a pointer or someone to chat with.
Re: x0x7 here
Welcome! It's an exciting moment with the API change coming up and all.
What are you working on currently?
What are you working on currently?
Re: x0x7 here
I bet you know a lot about JavaScript.x0x7 wrote: ↑Wed Jun 28, 2023 1:00 am Hi Everyone,
I'm checking in. I'm hoping rabbithole takes off. A bit about myself. I'm a bit of a tech nerd. I mostly do web development type stuff. I have more projects I'm working on at any one moment than I can count. I'm always happy to help anyone who needs a pointer or someone to chat with.
I took a self-taught course in JavaScript and passed. And then I immediately forgot everything it had supposedly taught me. I kind of think Python looks more interesting, though, so I'm more likely to try teaching myself Python rather than trying to remember JavaScript.
Re: x0x7 here
Hey x0x7 if you need any help for web development - I recently got into it and am loving it. I am looking for more regular intensive work if possible.
Re: x0x7 here
Cool. I'd love to look at that API.
So right now I'm working on improving a forum project I call Matrix. (sub domain of gvid) Just doing bug fixing and working on a custom sort option.
But I also work on Gvid as my main project. It was at the start an alternative to youtube, but it is now a meta tube that merges content from multiple platforms, and replaces the youtube suggestion algorithm.
My other major project is JSos aka JSsocial. It's a platform for creating front end apps. Like a social media site where all the front-end element are built by users. One example is 3dspread3 which is a spread sheet application that uses javascript as the formula language (crazy powerful), and has collaboration support (the social media aspect). It's sort of like a shared serverless environment.
But for sure I could use just a few more users on Matrix. I may or may not also be helping out here. I'm currently chatting with Larry about that. Definitely going to help if there's ways I can be useful.
Re: x0x7 here
I do. Javascript is definitely my main vehicle. I'm trying to learn more python myself. I've been playing around with pytorch. Very useful tool. I'm honestly not my favorite as a language but that pytorch is OP.ceck wrote: ↑Wed Jun 28, 2023 11:04 pmI bet you know a lot about JavaScript.x0x7 wrote: ↑Wed Jun 28, 2023 1:00 am Hi Everyone,
I'm checking in. I'm hoping rabbithole takes off. A bit about myself. I'm a bit of a tech nerd. I mostly do web development type stuff. I have more projects I'm working on at any one moment than I can count. I'm always happy to help anyone who needs a pointer or someone to chat with.
I took a self-taught course in JavaScript and passed. And then I immediately forgot everything it had supposedly taught me. I kind of think Python looks more interesting, though, so I'm more likely to try teaching myself Python rather than trying to remember JavaScript.
Re: x0x7 here
Yeah. I've been thinking of involving more people in my sites. I'm honestly not always sure how to use other people. What tools do you know? Honestly what I could use is some help converting some code to more modern practices. I have a lot of node-back style code that could definitely be shifted to async and promises.
..Or if you want to work on auto balancing content delivery networks and storage, or on automated uploading to different image hosts I definitely have tasks I'm working on there.
Re: x0x7 here
I'm Larry.x0x7 wrote: ↑Thu Jun 29, 2023 7:57 pmCool. I'd love to look at that API.
So right now I'm working on improving a forum project I call Matrix. (sub domain of gvid) Just doing bug fixing and working on a custom sort option.
But I also work on Gvid as my main project. It was at the start an alternative to youtube, but it is now a meta tube that merges content from multiple platforms, and replaces the youtube suggestion algorithm.
My other major project is JSos aka JSsocial. It's a platform for creating front end apps. Like a social media site where all the front-end element are built by users. One example is 3dspread3 which is a spread sheet application that uses javascript as the formula language (crazy powerful), and has collaboration support (the social media aspect). It's sort of like a shared serverless environment.
But for sure I could use just a few more users on Matrix. I may or may not also be helping out here. I'm currently chatting with Larry about that. Definitely going to help if there's ways I can be useful.
Regarding the Reddit API: you probably don't want to look at it. Reddit wants to start charging ridiculously big money for access to their API, that's what the users are protesting against and why they're looking for an alternative. Gvid looks good. I recommend you promote it at https://old.reddit.com/r/RedditAlternatives/, now's a good time.
Re: x0x7 here
LS2 wrote: ↑Thu Jun 29, 2023 8:44 pmI'm Larry.x0x7 wrote: ↑Thu Jun 29, 2023 7:57 pmCool. I'd love to look at that API.
So right now I'm working on improving a forum project I call Matrix. (sub domain of gvid) Just doing bug fixing and working on a custom sort option.
But I also work on Gvid as my main project. It was at the start an alternative to youtube, but it is now a meta tube that merges content from multiple platforms, and replaces the youtube suggestion algorithm.
My other major project is JSos aka JSsocial. It's a platform for creating front end apps. Like a social media site where all the front-end element are built by users. One example is 3dspread3 which is a spread sheet application that uses javascript as the formula language (crazy powerful), and has collaboration support (the social media aspect). It's sort of like a shared serverless environment.
But for sure I could use just a few more users on Matrix. I may or may not also be helping out here. I'm currently chatting with Larry about that. Definitely going to help if there's ways I can be useful.
Regarding the Reddit API: you probably don't want to look at it. Reddit wants to start charging ridiculously big money for access to their API, that's what the users are protesting against and why they're looking for an alternative. Gvid looks good. I recommend you promote it at https://old.reddit.com/r/RedditAlternatives/, now's a good time.
Oh. Lol. My mind went straight to you setting up an API for this site. I try not to think about Reddit often.
Re: x0x7 here
I actually need to work on this anyway. I have some more info somewhere. For databases I am using bbolt which is a golang port of LMDB, so it's a simple flat file. So atomically it's easy to extend to distributed I assume.auto balancing content delivery networks and storage
I just use a golang/bolt/javascript stack.
Re: x0x7 here
I've been wanting to do more Go lately. I've been in NodeJS for 11 years. The problem is once you know a tool and have a todo list to go through you just want to use the tool you know you could use to knock it out quickly. So NodeJS keeps sucking me back in.weegs wrote: ↑Fri Jun 30, 2023 3:03 amI actually need to work on this anyway. I have some more info somewhere. For databases I am using bbolt which is a golang port of LMDB, so it's a simple flat file. So atomically it's easy to extend to distributed I assume.auto balancing content delivery networks and storage
I just use a golang/bolt/javascript stack.
Re: x0x7 here
You mean conspiracies.win? It isn't the favicon that has a triangle, at least not their current one.
- CrystalVulpine
- Posts: 27
- Joined: Sun Jun 25, 2023 9:47 pm
- Contact:
- Guest
- Guest
Re: x0x7 here
Is it true that you have a current copy of (((poal)))'s database?x0x7 wrote: ↑Wed Jun 28, 2023 1:00 am Hi Everyone,
I'm checking in. I'm hoping rabbithole takes off. A bit about myself. I'm a bit of a tech nerd. I mostly do web development type stuff. I have more projects I'm working on at any one moment than I can count. I'm always happy to help anyone who needs a pointer or someone to chat with.
- CrystalVulpine
- Posts: 27
- Joined: Sun Jun 25, 2023 9:47 pm
- Contact:
Re: x0x7 here
If you knew me you'd know mine is a total nightmare. Why make it even worse?Guest wrote: ↑Mon Jul 24, 2023 1:58 pm My entire life is a nightmare so I don't mind.