|
Xkeeper Level: 263 ![]() Posts: 17529/25343 EXP: 296640974 For next: 2319479 Since: 07-03-07 Pronouns: they/them/???????? Since last post: 6 days Last activity: 8 hours |
|
![]() Register - Login | |||||
|
Main
- Memberlist
- Active users
- Calendar
- Wiki
- IRC Chat
- Online users Ranks - Rules/FAQ - Stats - Latest Posts - Color Chart - Smilies |
|
| | |||
| Jul - General Chat - The next big change |
- - ![]() |
| Pages: 1 2 | Next newer thread | Next older thread |
|
Xkeeper Level: 263 ![]() Posts: 17529/25343 EXP: 296640974 For next: 2319479 Since: 07-03-07 Pronouns: they/them/???????? Since last post: 6 days Last activity: 8 hours |
|
|
Rena I had one (1) message in Discord deleted and proceeded to make a huge, huge mess about how it was a violation of free speech and how moderators are supposed to be spam janitors and nobody should have the right to tell me not to talk about school shootings Level: 135 Posts: 3553/5390 EXP: 29043691 For next: 291314 Since: 07-22-07 Pronouns: he/him/whatever From: RSP Segment 6 Since last post: 330 days Last activity: 330 days |
|
08-29-10 10:58:36 AM Post #3553 Hm, I always thought it was intended as a bandwidth-saving measure. (Even though that makes little sense, since the images are hosted externally... )
Well, I look forward to the reactions of outsiders when I link them to threads in IRC. ![]() ____________________ |
|
Xkeeper Level: 263 ![]() Posts: 17530/25343 EXP: 296640974 For next: 2319479 Since: 07-03-07 Pronouns: they/them/???????? Since last post: 6 days Last activity: 8 hours |
| |
|
|
Sanqui 2060 ![]() ![]() ![]() ![]() 💛🤍💜🖤🦉 Level: 87 Posts: 397/2066 EXP: 6302994 For next: 89780 Since: 12-20-09 Pronouns: any ✨ From: Czechia | Estonia Since last post: 3 days Last activity: 2 hours |
|
That was a bug ?
(Let's ask Acmlm.) Anyway I should probably expect my post view counters to start increasing rapidly. ____________________ |
|
alexanyways Member Level: 16 ![]() Posts: 12/44 EXP: 19091 For next: 1165 Since: 08-03-10 From: Nunya, Buisness Since last post: 10.3 years Last activity: 9.8 years |
| ||||
|
Peardian![]() Magikoopa 16/3/1: KvSG #479 is up! Level: 157 ![]() Posts: 3726/7596 EXP: 48539957 For next: 1039276 Since: 08-02-07 From: Isle Delfino Since last post: 7 days Last activity: 21 hours |
| |
|
|
Sanqui 2060 ![]() ![]() ![]() ![]() 💛🤍💜🖤🦉 Level: 87 Posts: 398/2066 EXP: 6302994 For next: 89780 Since: 12-20-09 Pronouns: any ✨ From: Czechia | Estonia Since last post: 3 days Last activity: 2 hours |
|
Originally posted by alexanywaysOriginally posted by Sanky No, just renamed to Milly
Anyway, from IRC: < ____________________ |
|
Xkeeper Level: 263 ![]() Posts: 17533/25343 EXP: 296640974 For next: 2319479 Since: 07-03-07 Pronouns: they/them/???????? Since last post: 6 days Last activity: 8 hours |
| |
|
|
Taryn Passed away. Thanks for being a part of us, even if it wasn't always on the best of terms. 1987-2014 Level: 204 ![]() Posts: 9055/14742 EXP: 121590157 For next: 1759661 Since: 09-01-09 From: Seattle Since last post: 10.1 years Last activity: 9.7 years |
| ||
|
|
Leroy Member Level: 19 Posts: 27/60 EXP: 30456 For next: 5321 Since: 07-18-10 Since last post: 11.6 years Last activity: 11.0 years |
|
I never was a fan of post layouts. Needless to say, I immediately turned them off as soon as I registered here.
I remember people completely screwing over the board layouts with broken post layouts. Epic era was epic. ![]() |
|
Gabu Star Mario Placeholder Ikachan until :effort: is found Level: 172 ![]() Posts: 3659/9981 EXP: 67902874 For next: 199360 Since: 08-10-09 Pronouns: they/them, she/her From: Santa Cruisin' USA Since last post: 44 days Last activity: 5 days |
| ||
|
|
Xkeeper Level: 263 ![]() Posts: 17535/25343 EXP: 296640974 For next: 2319479 Since: 07-03-07 Pronouns: they/them/???????? Since last post: 6 days Last activity: 8 hours |
| |
|
|
Leroy Member Level: 19 Posts: 29/60 EXP: 30456 For next: 5321 Since: 07-18-10 Since last post: 11.6 years Last activity: 11.0 years |
|
I remember toying around with the global.php and layout.php files, and mainly putting stuff in them that required one of the 2 to be included before the other and visa versa, getting stuck with the order of inclusion.
That's what classes and objects are for. With a class you can just include the file in which the class is declared, and depending on your class structure and object model, you won't have to worry anymore about (the order of) the inclusion of several objects. As long as your method 'signatures' are recognised by including the file at all. ![]() |
|
Xkeeper Level: 263 ![]() Posts: 17536/25343 EXP: 296640974 For next: 2319479 Since: 07-03-07 Pronouns: they/them/???????? Since last post: 6 days Last activity: 8 hours |
| |
|
|
Leroy Member Level: 19 Posts: 30/60 EXP: 30456 For next: 5321 Since: 07-18-10 Since last post: 11.6 years Last activity: 11.0 years |
|
Actually, for cases like this, object models work like a charm. The major downside of doing everything with generic functions is that you'll have to be careful with the order of declaration and using stuff (vars, functions, etc.), and you pretty much make your whole application one big procedural piece of code. Plus there's the limitation when it comes to 'scoping'. The only 2 scopes you have are the ones within actual functions, and the rest of your code. Can get quite messy with a lot of variables and files.
And overusing classes is never a good thing, obviously. Though in terms of readability and scalability, having a User object with Username, Password, EmailAddress properties for example, is way more for itself speaking than a $User array with a bunch of column names as indexes. Of course, the advantages of a setup like this are only really noticeable when you use a good IDE. |
Orlandu![]() Holy SwordsMan Level: 137 ![]() Posts: 3050/5913 EXP: 30438609 For next: 434246 Since: 01-12-10 From: Las Vegas, NV Since last post: 4.0 years Last activity: 196 days |
| |||||||||||
|
|
Kas Member Level: 28 Posts: 112/145 EXP: 128079 For next: 3259 Since: 07-28-07 From: Sheffield, UK Since last post: 1.2 years Last activity: 1.2 years |
|
| I always try to make my code as object oriented as possible. I always end up with a bootstrapping file that is essentially including the application code, configuring the essential parts of the application and bootstrapping the application itself. I usually use Zend Framework for all jobs that don't require a content management system, so this forces the front-controller model as above, but for another reason as well; I can't stand code executing on inclusion of a file. It's absurdly bad practice because it robs you as the coder from being able to control how and when code executes - among other reasons.
When using the model-view-controller pattern I've also been criticised making my action controllers too "fat" with logic. Whereas I'm getting much better at learning techniques to abstract logic to the model, I've always liked to make my action controllers like a "script" of things that happen in each action for a coder to read. I've seen some coders put as little as two or three lines in their action controllers, and I'll counter that this can lead to action logic being spread out over several different source code files. I'd much rather fat controllers than tracing logic through three different source code files any day. Zend Framework gives you back some of the precision you lose in pin-pointing errors from a front-controller model by including stack-tracing functionality, so you can trace the flow of control through each function and method call. PHP's standard error reporting was never built for object oriented, complex applications, and better software design, libraries and frameworks have had to step in to do it properly. It's a shame that I learned all about this after my tenure as a developer on the board ![]() |
|
Taryn Passed away. Thanks for being a part of us, even if it wasn't always on the best of terms. 1987-2014 Level: 204 ![]() Posts: 9058/14742 EXP: 121590157 For next: 1759661 Since: 09-01-09 From: Seattle Since last post: 10.1 years Last activity: 9.7 years |
| ||
|
|
OoBurns ? Level: 60 ![]() Posts: 713/806 EXP: 1682332 For next: 90446 Since: 07-04-07 From: USA Since last post: 10.4 years Last activity: 9.8 years |
| ||
|
|
BlackNemesis13 1150 ![]() ![]() ![]() ![]() I am ***** but it's hard to pronounce, so you can call me Geno after the doll. Level: 70 Posts: 851/1155 EXP: 2880658 For next: 135153 Since: 07-23-07 From: Columbus, Ohio Since last post: 10.6 years Last activity: 10.6 years |
| ||
|
| Pages: 1 2 | Next newer thread | Next older thread |
| Jul - General Chat - The next big change |
- - ![]() |
|
Acmlmboard - commit 47be4dc [2021-08-23]
©2000-2022 Acmlm, Xkeeper, Kaito Sinclaire, et al.
|