This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
7246
Off-topic / Re: Battlefield 3
« on November 1st, 2011, 09:09 PM »
Ten days to the real deal Eheh.
7247
Off-topic / Re: Post count fever
« on November 1st, 2011, 09:08 PM »
I'd tend to say it'd be too taxing on the server. I mean at least when taking into account the small benefit it has ;)
7248
Features / Re: Menu bug: separator not removed if it's the first visible item on a menu
« on November 1st, 2011, 02:09 PM »
Eh..?
I have code in the menu that supposedly prevents that... Check out after the menu is generated, there's a foreach loop that unsets separators if they're at the beginning or the end, or if there are two joint separators inside a menu...
I don't have time to check out the code right now, maybe it's only broken for starter separators, I don't know.
I have code in the menu that supposedly prevents that... Check out after the menu is generated, there's a foreach loop that unsets separators if they're at the beginning or the end, or if there are two joint separators inside a menu...
I don't have time to check out the code right now, maybe it's only broken for starter separators, I don't know.
7249
Off-topic / Re: Post count fever
« on November 1st, 2011, 12:42 PM »
My problem is that you post so much and such long posts -- they're always interesting to read but many times I'll just consider the fact it'll take me 20 minutes to answer and then you'll answer and that another 20 minutes and that's how I kill so many good conversations with my laziness.
You're just too good with a keyboard. I don't know how you can pull it off.
And that's a very long post for iPod standards ;)
You're just too good with a keyboard. I don't know how you can pull it off.
And that's a very long post for iPod standards ;)
7250
Off-topic / Re: Post count fever
« on November 1st, 2011, 12:34 PM »
You disappoint me! I won't ever see you as the spam god I once saw you.
7251
Off-topic / Re: Post count fever
« on November 1st, 2011, 10:43 AM »
I'm going to Ikea so you have a couple of hours to outdo me. Good luck! :D
7252
Features / Re: Thought system
« on November 1st, 2011, 10:43 AM »
The question would only be-- would it hurt performance if we joined that table on every member lookup?
7253
Features / Re: Not supplying profile links if no permission
« on November 1st, 2011, 10:12 AM »
Errrrrrrrrrrr.......
I believe I wrote that into Wedge months ago ;)
Look into ob_sessrewrite, there's a preg replace on profile links.
One less thing to do ;)
I believe I wrote that into Wedge months ago ;)
Look into ob_sessrewrite, there's a preg replace on profile links.
One less thing to do ;)
7254
Off-topic / Re: Post count fever
« on November 1st, 2011, 10:10 AM »
Well I didn't want to spoil the thing but it looks like I'll be getting the trophy by a thin margin and then you'll reach 10k before I hit 8k ;)
7255
Features / Re: Thought system
« on November 1st, 2011, 10:08 AM »
Kay then.
The member table is so huge, I'd just rather not add fields that aren't gonna be used by everyone.
Didnt we have plans for a generic joined sister table to remove weight from it btw?
The member table is so huge, I'd just rather not add fields that aren't gonna be used by everyone.
Didnt we have plans for a generic joined sister table to remove weight from it btw?
7256
Features / Re: Thought system
« on November 1st, 2011, 05:17 AM »
Xss like sniffing the pw over the network?
Anyway that makes it unlikely I'll work on twitter support. Although we should maybe add hooks to enable a tweet plugin to catch thoughts and tweet them.
Hmm as for personal text I'm still not sure what's best. Storing Id in a new field without a key, or having the hack thing and doing an explode on member load...
Anyway that makes it unlikely I'll work on twitter support. Although we should maybe add hooks to enable a tweet plugin to catch thoughts and tweet them.
Hmm as for personal text I'm still not sure what's best. Storing Id in a new field without a key, or having the hack thing and doing an explode on member load...
7257
Features / Re: Thought system
« on October 31st, 2011, 11:32 PM »
- you mean a website can't connect to them using a regular username and pw? You mean they willfully broke many sites?
- it's just that it's only a cache of sorts. If I store the Id I might as well loafd the thought from the thoughts table... Ah well.
- it's just that it's only a cache of sorts. If I store the Id I might as well loafd the thought from the thoughts table... Ah well.
7258
Features / Re: Thought system
« on October 31st, 2011, 11:25 PM »
I'm considering adding an option to send any of your public thoughts to twitter as well. If you are willing to enter your twitter password because I'm not willing to start playing with their API anyway :P
It's just that I never use twitter so it's no priority to me.
Did you understand my question on the field stuff? :^^;:
It's just that I never use twitter so it's no priority to me.
Did you understand my question on the field stuff? :^^;:
7259
Features / Thought system
« on October 31st, 2011, 11:08 PM »
Okay, I'll be opening this topic to discuss the upcoming thought system...
For those of you who aren't in our Friends group, you can't access thoughts in here, so I'll redirect you to noisen.com where you can see a list of thoughts on the homepage.
Basically, it's a chatbox, only it doesn't have all that Ajax stuff that makes it look like it's real time and mostly puts a lot more load on your server.
I'm about halfway through my implementation for Wedge. I rewrote a lot of it, and added some features which may or may not work.
- Privacy: determine whether you want your thoughts to be visible to everyone, just members, just your friends, or just you (e.g. a to-do...)
- Edit ANY of your thoughts, including older 'latest thought' or your replies to others' thoughts.
- The latest thought is now in the sidebar. You can either edit it, or write a new one (there are links for that.)
- If you edit a current thought, if the new version has less than 10% differing from the old thought, the original publishing date will be kept. Otherwise, the thought's publishing date is set to now. (This is different from the current implementation where a 20% difference will generate a new timestamp, also it allows you to edit anything.)
- I've removed the 'Default Personal Text' option which means nothing to me... And to anyone else, I'd venture into saying. (Hey, Pete isn't the only one entitled to deleting SMF crap :P)
- Users can no longer set their Personal Text in their profile, if only because they can now set it from any page in the sidebar...
The privacy stuff only has the UI implemented. The 'edit everything' code is barely started, so it doesn't work.
The JavaScript adds an extra couple of kilobytes to script.js, which bothers me a bit (though it'll probably be more like 500 bytes once minified an gzipped), but OTOH it's a pretty neat feature so I think it's best to have it as default...
I'm a bit stumped with storing the latest thought though. Right now I'm storing something like "1500|My thought" in the members table where 1500 is the thought's ID, so that I can easily tell Wedge whether we're currently editing the latest thought (by putting its ID into an invisible part of the form) or simply writing a new thought that looks a lot like an earlier one (in which case the ID is set to 0 at this point.)
I don't want (too much) to get rid of personal_text because some people may not want to use the thought system and still have their old SMF-imported personal text below their avatar and stuff. But I think that storing the thought ID as a 'hack' inside the personal_text itself is not exactly pretty.
Open to any suggestions... I'm off to bed, this weekend was hectic.
For those of you who aren't in our Friends group, you can't access thoughts in here, so I'll redirect you to noisen.com where you can see a list of thoughts on the homepage.
Basically, it's a chatbox, only it doesn't have all that Ajax stuff that makes it look like it's real time and mostly puts a lot more load on your server.
I'm about halfway through my implementation for Wedge. I rewrote a lot of it, and added some features which may or may not work.
- Privacy: determine whether you want your thoughts to be visible to everyone, just members, just your friends, or just you (e.g. a to-do...)
- Edit ANY of your thoughts, including older 'latest thought' or your replies to others' thoughts.
- The latest thought is now in the sidebar. You can either edit it, or write a new one (there are links for that.)
- If you edit a current thought, if the new version has less than 10% differing from the old thought, the original publishing date will be kept. Otherwise, the thought's publishing date is set to now. (This is different from the current implementation where a 20% difference will generate a new timestamp, also it allows you to edit anything.)
- I've removed the 'Default Personal Text' option which means nothing to me... And to anyone else, I'd venture into saying. (Hey, Pete isn't the only one entitled to deleting SMF crap :P)
- Users can no longer set their Personal Text in their profile, if only because they can now set it from any page in the sidebar...
The privacy stuff only has the UI implemented. The 'edit everything' code is barely started, so it doesn't work.
The JavaScript adds an extra couple of kilobytes to script.js, which bothers me a bit (though it'll probably be more like 500 bytes once minified an gzipped), but OTOH it's a pretty neat feature so I think it's best to have it as default...
I'm a bit stumped with storing the latest thought though. Right now I'm storing something like "1500|My thought" in the members table where 1500 is the thought's ID, so that I can easily tell Wedge whether we're currently editing the latest thought (by putting its ID into an invisible part of the form) or simply writing a new thought that looks a lot like an earlier one (in which case the ID is set to 0 at this point.)
I don't want (too much) to get rid of personal_text because some people may not want to use the thought system and still have their old SMF-imported personal text below their avatar and stuff. But I think that storing the thought ID as a 'hack' inside the personal_text itself is not exactly pretty.
Open to any suggestions... I'm off to bed, this weekend was hectic.
7260
Other software / Re: Change of code in order to suit the SSL version
« on October 31st, 2011, 07:02 PM »
I meant to update this version number but... Not much into AeMe these days.