Skip to main content

OTN Forums Update - Take Two

Looks like Oracle updated the Forums software over the weekend. So far, this round has gone much better in the past.

I do have one major gripe with the new point system. Everyone is a Newbie now, which kinda sucks for those who have posted hundreds or thousands of times. Sure, quantity does not infer quality, but we all know that there are a core group of regulars on this Forum who are anything but Newbies.

My main concern is how your status is actually elevated. You only get points if someone marks their post as "answered". Looking at this weekend's posts, many of them are answered in the thread, but not actually "set" to answered. Thus, the person who answered the post correctly is no closer to a Guru than they were before. I imagine that this will come in time, as people get used to the new software and policies, or at least I hope that it does.

This feature does have some promise, as there are definitely some benefits - looking at the list of posts, you can immediately see which ones are already answered, thus saving time if you're either looking for an answer or looking for questions which to answer. I think that the objectiveness of it may end up helping overall, as someone who posts a lot of "chatter" would ultimately not advance in the standings, whereas someone who posts less frequent but more correct posts would. I guess only time will tell.

Comments

Anonymous said…
Hey Scott, the new forums wont even load for me. Have you had any issues with it?
Scott said…
I can get to it, but it seems to be very slow now that it's getting hit by everyone in Europe and most of the US at this point.

Perhaps I spoke too soon!

- Scott -
Anonymous said…
I just got a 404 error when trying to load it again.
Scott said…
Best bet is to try in a couple hours, as there's nothing that you can do until it's resolved, which will typically take some time.

- Scott -
Dan McGhan said…
Scott,

Has any body figured out a new greasemonkey script?

It might become standard practice to add a line along the lines of "If this answered your question or solved your problem, please (do whatever)"...

Regards,
Daniel
Scott said…
I don't think it's been up long enough for that! :)

Seriously, I think that this will just take some time for people to get used to, and many will be happy to update the status of the question, while others will not. In the long run, I don't think that it's going to make those who do take the time to answer questions work any less.

- Scott -
Anonymous said…
Daniel,

The existing greasemonkey script only needs a line changed to work (well it did in my case), if you change -

var lTextarea = $x('body01');

to:

var lTextarea = $x('textEditor');

it should work.

John.
Anonymous said…
and once again this morning the site isn't working again.
Scott said…
That, and some of the handles have been altered. I am now know as "Scott3", and John Scott (Jes) is now "Jes2".

Not sure how or if they can fix that, as if you try to edit them, it claims that the originals are in use.

Again, time to sit back and hope that it all gets sorted...

- Scott -

Popular posts from this blog

Custom Export to CSV

It's been a while since I've updated my blog. I've been quite busy lately, and just have not had the time that I used to. We're expecting our 1st child in just a few short weeks now, so most of my free time has been spent learning Lamaze breathing, making the weekly run to Babies R Us, and relocating my office from the larger room upstairs to the smaller one downstairs - which I do happen to like MUCH more than I had anticipated. I have everything I need within a short walk - a bathroom, beer fridge, and 52" HD TV. I only need to go upstairs to eat and sleep now, but alas, this will all change soon... Recently, I was asked if you could change the way Export to CSV in ApEx works. The short answer is, of course, no. But it's not too difficult to "roll your own" CSV export procedure. Why would you want to do this? Well, the customer's requirement was to manipulate some data when the Export link was clicked, and then export it to CSV in a forma...

Manipulating Images with the... Database?

A recent thread on the OTN HTML DB Forum asked about how to determine the width & height of an image stored as a BLOB in an Oracle table. I mentioned in that thread that I have some code to manipulate an image stored in a BLOB column. This is particularly useful if you’re going to let users upload images, and you want to re-size them to display as a thumbnail. Thanks to Oracle interMedia , it is trivial to manipulate the width, height, and other attributes of images stored in an Oracle table. I’ve created a sample application here which demonstrates Oracle interMedia and HTML DB in action. Feel free to have a look. You can download this application from HTML DB Studio as well. Basically, this application allows you to upload images and perform an operation on the image as it is inserted into the PHOTO_CATALOG table. There are two places where some PL/SQL code is required: an After Submit process on page 2, and a procedure to display the images. Here is the PL/SQL for the After...

Page 0 Branches

What? There's no way to put a Branch on Page 0 of an ApEx application! Or is there... Technically, no - page 0 does not support branches. But how many times do you wish it did? This scenario recently came up: I wanted to put a "Search" box on every page in my application, so no matter where a user is, they can search the site. Currently, it has 10 or so pages, but this will grow to closer to 50 by production. So, thought #1 was to put an text item on Page 0, call it search, and then ensure that each and every page had some sort of Branch to run the search. Not so fun, as this was a tedious task, even for just 10 pages. And each time a new page was added to the application - by myself or anyone else - the search branch would have to be added to the page. Clearly not a scalable solution. With a little bit of help from Raj from the ApEx team, I came up with this solution: Create Page 0, if you haven't already On page 0, create an item of type "Text Field (...