All Activity
- Last week
-
Eliandut joined the community
- Earlier
-
bizdveginna joined the community
-
Sandraunery joined the community
-
vpflowkiz joined the community
-
Safiysymn joined the community
-
MiguelBug joined the community
-
Nereifum joined the community
-
Jamespaw joined the community
-
Annelked joined the community
-
Michael started following create a special area for card templates, instead of having them hang out in column's where they could be deleted or lost in the confusion , improve the control buttons, might be able to group them into a "more" since there will be kb shortcuts now. , add in a setting to disable subtask at the project level, might make it a global setting too, so if you disable it globally, no one will be able to use them. i can see where some sites wouldn't want that. and 2 others
-
King Una changed their profile photo
-
Michael started following M1 Mac Mini 2020, 16 gb ram 256gb ssd for sale/trade
-
I have a mac mini from late 2020,i purchased it brand new from B&H in June of 2021. it has 16gb of ram and 256 ssd. Everything works on it, and it runs the latest Mac OS. I'm looking to sale it or trade it. Asking price is $600 o.b.o. things i would consider trading for it: iPhone 12+ or a flagship android +cash(if the value of the phone is less than asking price on the mac) (doesn't matter the exact model or storage, i'll use prices found at https://www.backmarket.com/ for trades. should be in good to excellent condition, meaning it turns on and stays on, with no major scratches or defects, its battery should also be at least 80%. i will consider phones in lesser conditions, but at a reduce price). I'm open to anything else. I am also looking for a desk that can go from sitting to standing with a push of a button, and 30"+ 2k or 4k monitors in good conditions, but shipping on those might be prohibitively expensive. I am willing to do business outside of the US, US is preferable, but overseas/cross borders i will do if you are willing to pay for shipping.
-
Michael has left comment on Card: Should there be any additional keyboard shorts cuts added in? in Stratagem Development
-
Michael started following Press ESC to close card without needing to scroll up and click on the X icon. Some cards hold a lot of information and for convience it would be nice to be able to quickly exit them. Adding shortcuts like ESQ to exit would be useful. and Should there be any additional keyboard shorts cuts added in?
-
Michael has created Card: Should there be any additional keyboard shorts cuts added in? in Stratagem Development
-
Michael has created Card: added in cascading team perms for groups. in Stratagem Development
-
well the best solution is a separate server with its own domain or sub-domain, with its own certs. however you can it is doable. solution 1: the easiest solution would be to change the port babble uses. by default if you are on https, it uses port 443, otherwise port 80. problem on a server running a web server, those 2 ports are already in use and nodejs wouldn't be able to use them. so you would need to open up a port in your servers firewall, a port that isn't used by something else. this has its own set of problems tho, the first one is having to open up another port on your servers firewall. the other problem it opens up, networks often block all ports except 80 and 443, so people on those networks wouldn't be able to connect to babble. like i mentioned, this is most def the easiest solution, its not really the most ideal one. solution 2: in nginx and apache there is such a thing called "reverse proxy" (well in one of them its called that, in the other it has a different name, but i can't remember which or what it is, but its the same thing more or less). basically with the reverse proxy, you setup your webserver to handle the connection to nodejs internally. this one requires a bit of work to setup, on apache it requires a few modules to be installed. in my testing back in the day, i found nginx to be the easiest to setup (as its built in functionality) and it also performed a fair bit better imho than apache does. to me this is the ideal of the two solutions i give here. it doesn't require any ports to be opened, it also looks cleaner. solution ?3 there might be other solutions, it's been since like 2016/17 since i last looked into alternatives. the service really rendered those solutions kinda moot, as everyone on the self hosted version jumped ship for the service. was gonna have the live events be a "customized" room, that would be open to everyone (or restricted if you wanted it). then at the end of it, you'd issue a command to close it down, and the room would disappear and its content would be added to pages (if it is installed, or give you an option to have it just archive itself and/or to pages). it would be fun to try to add a chat bot to it. it has 'bots' but nothing too complex, but get one of these natural language models like chatgtp or tabbyml (which is free, and customizable, but would require its own setup too, but i haven't played with tabby's chat ability). babble is very customizable. you can set it up where you can have private rooms, private messages, rooms have a ton of configuration to them, there are "bots" (even the ability to add in your own custom bots), command (ability to add in custom commands), there are also different layouts for it, which i might remove. the "global bar" was never popular, even tho i thought it was cool as hell . it will make building it easier if i took out the global bar. anyway, if you have anything more specifi in mind, don't shy away, let me know.
-
I have a dedicated server, which barely uses its resources. Would Babble allow me to run it in the same environment? Babble has the potential to be a very good chat app, which could be used as a live event system. It gives us site owners plenty of options to maximise its use. I think it's a good idea, personally, I wouldn't need a chat system, but I can see why some members would. I think, change wise, it would be good to have flexible options which would allow you to choose how exactly you want to use babble. Such as being able to still have chat rooms, but live events too.
-
Recently I was asked to look into creating a "live event" system. Sorta like "status update" but for general news/tweets/articles/etc, that could later be converted into a pages page at the end of the live event. This got me thinking about how live event systems work. To be effective, they have to be able to deliver the information in real time, there are only a handful of ways to do this efficiently. Ajax is simply out of the question in most cases, cause it can be a huge resource hit if more than 20 or so people are actively viewing the live event, so this got me thinking about babble once again. One of the things that set babble apart from other chat systems, was the fact it used websockets to deliver the messages to the connected users instead of relying on ajax to retrieve a list of new messages. this allowed for much faster real time communication, as the message being sent and received were almost instantaneous, with the biggest limiting factor being the connection speed of the user. However, this required special software to achieve. I opted to use node.js to serve as the websocket host. this would've required a separate server for site to run the babble node.js app on or use my service. Both of these required additional resources from both the client and myself, to implement fully. Now as most of you know, I am not some fairly large corporation or even a large or medium or small business, I'm one person, with the resources of 1 person. So running the service for me was a costly endeavor for me. Even if it is more of a pita, the self hosted option is honestly better for everyone involved. Yes self hosting a nodejs server could be more expensive for some, but for most it might actually be cheaper. The servers I had, I had 2 of them at one point, then rolled back to 1 cause of cost for version 3 (but it was a more powerful server than the previous 2 I had). I tried to evenly distribute the cost of the service to the packages for babble (which at the time of the service, I was not making any money on the app itself and the service cost i was mostly in the hole on always). This was cause the size of the server had to be large to handle the load it would have, so more load, more cost, and then more cost to you. So with a self hosted server, you could scale to your needs, i would honestly say most sites would need a very cheap vps from like digital ocean or aws (around $6 to $12 a month). So if I were to bring back Babble, it would also include a live event system in it. I have several ideas to improve it to, one of the ideas i had was a "watch together" type system, that would allow multiple people to watch the same video (say from youtube and the creator of the watch together would have control over the video, like pausing/ff/rewind/etc) and have a chat going among those watching it. If i was to bring back Babble, it would be apart of the subscription model, but it would not have a service attached to it this time. It would strictly be a self hosted thing, I of course would offer a setup service for those who needed it. Let me think, here are some questions to ponder: Should i bring back babble and why. what features would like to see added what changes would you like to see what concerns you'd have with running your own node.js server should alternatives be explored instead of node.js+websockets whatever other question/comment you might have
-
Changed Status from Work in Progress to Closed Changed Fixed In to 3.3.5
-
Cron Background Error
Michael replied to Archerus's __defart__dplus__dplus_dplus_support_report in Support
could you provide me with a list of french words that cause a problem? i only know english, bad english and only the dirty words in german and spanish -
Cron Background Error
Archerus replied to Archerus's __defart__dplus__dplus__dplus_dplus_support_report in Support
the problem with French is that there are a lot of accents and apostrophes and often problematic when it's not supported (I often have the problem with third-party applications for my game servers) But maybe that's not it, the main thing is my basic tasks have resumed -
Cron Background Error
Michael replied to Archerus's __defart__dplus__dplus__dplus__dplus_dplus_support_report in Support
accent marks shouldn't be a problem, but i'll test it out. -
Cron Background Error
Michael replied to Archerus's __defart__dplus__dplus__dplus__dplus__dplus_dplus_support_report in Support
those are normal errors when some one tries to access a card that has been deleted. in the last update of stratagem, i put in some additional checks into the notification code, but other than that, i didn't see any thing wrong with the code. it is working, cause notifications work as intended. so without an error an actual error, i can't really take this any further. one thing you can check is your servers error log, to see if there is anything in there. -
Cron Background Error
Archerus replied to Archerus's __defart__dplus__dplus__dplus__dplus__dplus__dplus_dplus_support_report in Support
Surely finding the spot is finally launching... I had a card on Stratagem that wouldn't pass... but no errors in the logs... Perhaps a problem with the name of this one which included accents Process cleaned 580 to 0 -
Cron Background Error
Archerus replied to Archerus's __defart__dplus__dplus__dplus__dplus__dplus__dplus__dplus_dplus_support_report in Support
-
Michael has left comment on Card: Allow cards to be open to all team in Stratagem Development
-
Cron Background Error
Michael replied to Archerus's __defart__dplus__dplus__dplus__dplus__dplus__dplus__dplus__dplus_dplus_support_report in Support
checked what the queue is doing and checked my code. not sure if i've fixed the issue (as i'm having a problem duplicating it), but there were a few array key checks that probably should've been there from the beginning that i added in. -
Cron Background Error
Michael replied to Archerus's __defart__dplus__dplus__dplus__dplus__dplus__dplus__dplus__dplus__dplus_dplus_support_report in Support
Changed Status from Pending to Work in Progress -
Cron Background Error
Michael replied to Archerus's __defart__dplus__dplus__dplus__dplus__dplus__dplus__dplus__dplus__dplus__dplus_dplus_support_report in Support
i'll need a bit more info than 2 screenshots. Check your "get help" section, look at the sytem and error logs to see if there is any stratagem related info. there will be one about get_created in comment.php (that will be fixed in the next version release), but see if there are any others. i popped off the bg task here that are shown, and they all finished without an issue. -
Cron Background Error
Archerus posted __indefart__dplus__dplus__dplus__dplus__dplus__dplus__dplus__dplus__dplus__dplus__dplus_dplus_support_report in Support
Hi, There is an error during this background task, I don't see what it is really linked to but on my system it appears "480 and more" -
Such a vital application which makes it easier to run and organise your forum/site. Having Stratagem as a project manager, allowing you to delegate tasks in an easy-to-follow method, does make it a lot easier to understand and see how your site is progressing. Doing such via the forums can be time-consuming; this is a simpler and easier way to go about it. I am very pleased to see Stratagem back; it's an excellent tool.
-
CBC has left comment on Card: Allow cards to be open to all team in Stratagem Development
-
Joey Matthews has created Card: Allow cards to be open to all team in Stratagem Development
-
custom projects or releasable apps for the masses? i'm open to either one, for custom work, will need to check my schedule
-
Joey Matthews has left comment on Card: Reoccurring tasks Ability to make tasks repeatable. Say you want to remind your moderators to unfeature certain topics or to unpin them. Having the ability to reset and repeat will enable different mods to ensure the tasks that are daily are done. If someone who usually does them isn't able, this will alert the team to check. in Stratagem Development
-
CBC has left comment on Card: Reoccurring tasks Ability to make tasks repeatable. Say you want to remind your moderators to unfeature certain topics or to unpin them. Having the ability to reset and repeat will enable different mods to ensure the tasks that are daily are done. If someone who usually does them isn't able, this will alert the team to check. in Stratagem Development
-
Michael has left comment on Card: It would be helpful if there was a tooltip color setting. in Stratagem Development
-
CBC has left comment on Card: It would be helpful if there was a tooltip color setting. in Stratagem Development
-
Michael changed their profile photo
-
Michael has left comment on Card: Reoccurring tasks Ability to make tasks repeatable. Say you want to remind your moderators to unfeature certain topics or to unpin them. Having the ability to reset and repeat will enable different mods to ensure the tasks that are daily are done. If someone who usually does them isn't able, this will alert the team to check. in Stratagem Development
-
Michael has left comment on Card: It would be helpful if there was a tooltip color setting. in Stratagem Development
-
Michael has left comment on Card: It would be helpful if there was a tooltip color setting. in Stratagem Development
-
CBC has left comment on Card: It would be helpful if there was a tooltip color setting. in Stratagem Development
-
CBC has created Card: It would be helpful if there was a tooltip color setting. in Stratagem Development
-
Michael has created Card: port formularize form class over to nucleaus's form class in Formularize Development
-
I have the clubs feature disabled but for those who do make use of them, this sounds like a good extension. I am very curious to see what else you come up with. I also have some ideas on projects which might interest you but for now - it's good to see you back.
-
Joey Matthews has left comment on Card: FURL's broke in breadcrumb navigation (it happens here on CJ.com too) in Stratagem Bugs
-
Michael has left comment on Card: FURL's broke in breadcrumb navigation (it happens here on CJ.com too) in Stratagem Bugs
-
Decided to release the club's menu i made awhile back but never "officially" released.
-
-
-
Michael has created Card: seems the contraster is not working properly in Stratagem Bugs
-
Joey Matthews has created Card: Reoccurring tasks Ability to make tasks repeatable. Say you want to remind your moderators to unfeature certain topics or to unpin them. Having the ability to reset and repeat will enable different mods to ensure the tasks that are daily are done. If someone who usually does them isn't able, this will alert the team to check. in Stratagem Development
-
-
I'm pleased it's released. 👍