Welcome to MangoLassi!
-
@scottalanmiller said:
@JustRob said:
@scottalanmiller said:
@JustRob said:
So, what's with the name? Why name an IT website after an Indian fruity drink?
Cute, easy to remember, neutral. And there is a hidden pun in there somewhere too. I imagine that it being a popular drink to cool down after eating spicy food has nothing to do with it.
And helps to counteract the butthurt that comes with it I guess?
LMAO. Score.
AMEN! @psx_defector lookie lookie!
-
A little obsessed? Lol
-
@Dashrender About?
-
If someone had to ask nevermind.
-
@Dashrender LOL okay
-
Great forum Yeah I registered for curiosity's sake - first of all the name, and secondly, your forum has grown pretty big in a short amount of time. Hope to see this site grow and continue to do well Love that you've chosen to go with NodeBB, hope its been a good experience so far!
-
@psychobunny The platform has been awesome. Really responsive and easy to use. And really cool that you have joined us here!
Welcome!
-
Out of interest, is there a way to find out what posts your reputation points come from?
I know, I know, ego/obsession/etc... Just intrigued -
@lillucia said:
Out of interest, is there a way to find out what posts your reputation points come from?
I know, I know, ego/obsession/etc... Just intriguedI've not seen any way to do that. But there are new updates coming all of the time, things like that are likely far down on the platform feature roadmap. The new version dropped yesterday so hoping to see this place update this week, but I don't know what features are coming in this update other than a lot of talk of widgets.
-
@lillucia said:
Out of interest, is there a way to find out what posts your reputation points come from?
I know, I know, ego/obsession/etc... Just intriguedAfter all this time, still not a feature that we have.
-
Someone could spend a little time and write the DB query for it easily enough
-
@JaredBusch said:
Someone could spend a little time and write the DB query for it easily enough
We really do need to figure that out for a variety of stuff. Building our own reporting interface for a ton of data would be useful.
-
@scottalanmiller said:
We really do need to figure that out for a variety of stuff. Building our own reporting interface for a ton of data would be useful.
That is the point of open source. build it and make a pull request. or build it as a plugin. either way.
-
@JaredBusch said:
@scottalanmiller said:
We really do need to figure that out for a variety of stuff. Building our own reporting interface for a ton of data would be useful.
That is the point of open source. build it and make a pull request. or build it as a plugin. either way.
I'm thinking that an external tool might make more sense, talking directly to the database rather than through the platform itself. Although doing it as a plugin would let us leverage the authentication system that already exists. Although plugins seem to break so often, I wonder if that is worth the effort.
-
Plus you dont' necessarily want everybody to have access to the reporting engine or what-not.
-
@dafyre said:
Plus you dont' necessarily want everybody to have access to the reporting engine or what-not.
Exactly, although in theory we could control that with a plugin and the ML authentication system. But that, I think, would be more work rather than less.
-
How are you getting these numbers by hand? Using existing reports in NodeBB or what?
-
@dafyre said:
How are you getting these numbers by hand? Using existing reports in NodeBB or what?
NodeBB generates them. It was the update applied around February that started to give us these stats. That's why we have nothing from before then.
-
Because of the use of socket.io, NodeBB itself has to generate any stats as other tools would not know how to read the traffic. Since MangoLassi is actually a "single page application" that loads and runs page generation inside of the JavaScript app that then communicates via its own connection on socket.io it looks very little like normal web pages.
The nGinx proxy, for example, has no idea what traffic is going through it.
-
I wonder if there's an easier way to iterate through all the posts from October 1 to October 31s and count them.
It would seem like they could put a monthly views tracker on each Post...
iterate through all the posts and count new views...That is to say, I wonder that a MongoDB query would look like for that.