im building a forum and now im gonna code the thread page.
is there any open source thread script to use that resembles stackoverflow:s thread page with the actual thread, the replies and the comments? one which you could customize?
i bet a lot of users have created such scripts, would be great to not having to reinvent the wheel.
or is it a lot easier to code it yourself?
I'm giving a presentation on social media with a short part based on stack overflow how would you describe its key principles? What are its key benefits over traditional forum/mailing list problem resolution?
After struggling with a particular problem or bug in some part of my code for hours, without getting anywhere,
I often get a sudden revelation as soon as I try to explain the problem to one of my coworkers, or while formulating it in writing for posting to some forum.
Does this kind of experience have a name?
Where can I read more about it and how to train it? Do any of you use this consciously in your day-to-day work?
I have a Ubuntu Server.
From the terminal, how should I install JDK?
In this guide it says to use this command:
sudo apt-get install sun-java6-bin sun-java6-jre sun-java6-jdk
But on Suns website, it says JDK includes the JRE, so why the JRE in the line above?
Anybody know how to actually install Java?
Every guide and every forum shows different ways of doing it.
BTW: It is a VPS (virtual private server)
Thanks
I saw this C++ code on a forum which minimizes all open windows
#define MIN_ALL 419
#define MIN_ALL_UNDO 416
int main(int argc, char* argv[])
{
HWND lHwnd = FindWindow("Shell_TrayWnd",NULL);
SendMessage(lHwnd,WM_COMMAND,MIN_ALL,0);
Sleep(2000);
SendMessage(lHwnd,WM_COMMAND,MIN_ALL_UNDO,0);
return 0;
}
How can I access the FindWindow and SendMessage API function and the HWND type in C#.net?
I know that there are simmilar questions like this on the forum, however I am still having problems to update a datetime field o the database. I dont get any problems when inserting but I get problems when updating and I am formating the same way , like this:
e.Values.Item("SelectionStartDate") = Format(startdate, "yyyy-MM-dd")
+ " " + startTime1 + ".000"
startTime is of type string.
I have tried different solution that I came across on the internet but still get this error.
Please help.
Thanks in advance
Does anybody know of a tested means to do this. JIRA site does not support this. Very much needed hoping somebody can help. Have posted it on jira forum also but no replies yet http://forums.atlassian.com/thread.jspa?threadID=42414&tstart=0
How can I prevent XSS but allow any characters to be used? Like I can post HTML code on a forum like <html><body><h1>Test</h1></html>, but it would not be rendered in the browser as html? How can I do this so it does not convert the characters in PHP?
I'm making a forum application with various levels of authorization, one of which is a Monitor. I am doing this by extending my User class, and I plan on fine tuning this with "-ship" classes (e.g. administratorship, authorship, moderatorship, etc.). Apparently the Monitor class is part of ruby mixin. How do I keep my resource name without the collisions?
Hi, I am working on a project involving Liferay Portal and I was hoping to get some input on how to properly utilize community and organizations in the site structure. I have so far been frustrated with the lack of documentation on this subject, and Liferay's internal forum seems to be all but dead. Can someone point me in the right direction here?
Thanks.
I'm now thinking to stabilish my code on Javascript, and begin to do all on it, but I want to know about it's security and flexibility compared to PHP.
I want to know too, if it can be sucessfully used to develop things like forum boards, full web-sites and things like this, as PHP does.
How can i mesure and compare the running times of my algorithms written in python .Also point me to a nice algorithms site/forum like stackoverflow if you can.
Well guys. we are not supposed to ask theoratical questions here .. but dint know any other forum where someone would answer this :)
jpeg image
How is the above jpg image can be animated? As far as I know jpg format does not support animation.
Hi I am new to this forum. I found out how great this site is. but I have questions on how to filter the search like for example, viewing search results of "PCM Format" that tagged with "DELPHI"?
Hello there
I'm facing problem with getting start with the Open Social API in java. I already google and bing it but still didn't found a sample to POC the usage of API for console or desktop based application. Can anybody suggest any link, forum or if possible explain the tedious flow of working of this API.
You can try this link to try this API http://code.google.com/p/opensocial-java-client/
Thank You
i want to put a newline into a txt file, i tried with many alternative with so many help from this forum but i am getting always unknown character always. Please help
for(int i=0;i<fileDet.size();i++)
{
qDebug()<<"Name directory"<
Ok my last post disapper so I ask again.
Ok if you cant send me code to stock trading app, i understand its dificult for to get code from forum
can you point me to techonologies to use for making stock app. i got job from online brocker copany, they need to display both bombay exchange and others
java, or c . or asp maybe
thanks
i have built a web forum using php but i want to integrate it with videos that are uploaded such that people will be able to make comments on it in a tree view form... how do i integrate that to my php class.....any help with that?
After I get 3 rows in my forum_threads table this no longer does it's job; to organize a list of active forum threads and put the most recently responded-to thread at the top of the list, followed by second most recent posted-to thread, followed by third, fourth, etc.
Like I said, the query works wonders up until there is a fourth row added to forum_threads.
SELECT forum_threads.*, forum_posts.thread_id FROM forum_threads INNER JOIN (SELECT MAX(id) AS id, thread_id as thread_id FROM forum_posts group by thread_id order by id DESC) forum_posts ON forum_threads.id = forum_posts.thread_id
Hi,
I'm a newbie in applescript. I was trying to learn it from various sources, such as Doug's site, macscripter and this forum
Just for learning purposes, I was trying to print on the screen all the tracks names using this code:
tell application "iTunes"
set myTracks to (tracks of library playlist 1)
repeat with aTrack in myTracks
get name of aTrack
end repeat
end tell
But it only prints one track name, probably the last one...
So, how is the best way to iterate over a list?
TIA,
Bob
Hi
I want to delete the unused drupal modules like ( blog, Forum, taxonomy ...) but I'm worried if I delete the modules from the modules directory I might cause an error (now or in the future) .
is it safe? and if I deleted the corresponding tables what will happen?
the reason for this is because I want to deliver the site to my client, and teach him how to use the admin page, but I want to make as easy as possible for him..
I have this regular expression:
([http://some.url.com/index.php?showtopic=\"]*)([0-9]+(?:\.[0-9]*)?)
its for extracting links to topics from forum
Now when i use it in my script
$url = "([http://some.url.com/index.php?showtopic=\"]*)([0-9]+(?:\.[0-9]*)?)";
preg_match_all spits: "Unknown modifier '('"
Can anyone help me with this obviously stupid problem
Hi dear stackers :P
Thanks to this forum, I learnt PHP header function does not actually send header to Apache server but only to the client.
What I wanna do is to generate an error 500, and let Apache displays its corresponding page. Is there a way to force it ?
Thanks in advance !
(and allez les bleus !)
Hi
If this isn't the proper forum could someone suggest where to find out this information?
I need advice on billing, hourly rates, according to both expertise and experience
ie 1 year, 1-3 years, and 3++ for
Objective C
Java
Actionscript
Javascript
CSS