Jump to content
SubSpace Forum Network

ThunderJam

Member
  • Posts

    641
  • Joined

  • Last visited

Everything posted by ThunderJam

  1. Hey gene. Sorry dude, any files I had are long gone. I might have a handful of zones files on a laptop, but probably only a couple vanilla zones and def not mech.
  2. Happened to google about ss/cont this evening after not having played for years. Somehow figured out my password here which seems to have the old ssforum accounts. Was surprised to see a lot of familiar names had still posted here in 2014, so wanted to say hi. I was a reasonably well known map/tiles/gfx dev that contributed work to lots of places including t3g, eg, fusion, rs, ds, halo, svs, and probably some other i don't remember. And ran a paintball zone a few times. I stopped playing in 2008 after graduating HS. Maybe logged on once or twice in college but thats it. 24, married now, work as programmer - life's good. If anyone wants to use a lot of old tileset work I made, it can be found here: http://s3.photobucket.com/user/tman563/library Consider it up for grabs, but be nice about any specific zone it was made for. If anyone wants to get in touch, I can be emailed at tcrosby89 at gmail.com. Hope all is well.
  3. Dorms have cable tv, video games occasionally, possibly HDMI to my laptop to watch a movie that might be on my laptop. And i can't wait a couple of months, its for when i go to school at the end of august.
  4. Ok im gonna go buy a 32 inch flat screen for my dorm, give me advice. SPENDING LIMIT $500 Ive heard that since its only 32 inches, and for close quarters, that 720p will be just as good as 1080p. Opinions? I don't really know where to start, was gonna just swing by Best Buy, see what 32 inchers have the best looking picture, then ask a sales guy for opinions
  5. What are your guys opinions on Avira AntiVir, AVG Antivirus Free, and Avast! Home Edition? Back up your opinion with reasons and explanations please
  6. Whose got opinions on the best CMS (content management systems) for webstes? The pool I coach swimming for asked if I could set up their new site, but once its set up, a few other people will need to be able to upload content/info/updates to the site, so I figured a CMS is best. Suggestions? thoughts?
  7. Just wanted to point out: criticizing his methods his one thing, but as to "level of success" at keeping america safe, I don't think theres anything to really complain about. Like cancer said, we haven't had another major attack. Really? Because our ports are wide open in case terrorists wanted to attack. The whole "fight them over there so we don't fight them over here" is a delaying tactic. Your arguing that we have not been safe the past 7 years because things "could have happened."
  8. The fact that this thread is still going on is absurd. I checked out the board again after a week and was like "another 2 pages?" Really, we all kinda resolved the rights and wrongs of this issue by like the end of the second page of posts. Part of the reason i stopped debating in this board seriously is because everyone is so hardcore and deadset into their agenda, that they push it as part of every lil issue.
  9. Just wanted to point out: criticizing his methods his one thing, but as to "level of success" at keeping america safe, I don't think theres anything to really complain about. Like cancer said, we haven't had another major attack.
  10. Astro and sever: your points, that the long-term affect of this muslim families action is good, is valid. That still means they need to be aware that it has other SHORT-TERM consequences in addition. That's all. I guess its one or the other: be quiet and reap the short term benefit, but you still deal with unfair stereotyping, OR speak up to act against the trend of stereotyping but be ready for the short term consequences. Can't expect the best of both worlds though.
  11. I think the only reason you can be fooled into thinking its real for a while is because the thought occurrs that it is lacking a keyboard due to it having a different intended kind of use than a normal laptop. Then when they showed you are supposed to type by selecting each letter individuality, i figured it wasnt real. Stopped watching after that point
  12. That seems something awfully small to ban him for.. I'm sure every person who has posted in this thread has said something worse before.
  13. Ok, while I am not taking LOSA side, I think you guys are being a lil harsh on a few of her statements. While the family's discussion was a normal discussion, her statement that people need to be careful what they say is completely logical. You all try to say its bad by comparing it to other situations where minorities are wrongs for saying things. Please consider: A white guy is alone in a particularly bad-reputed ghetto. The white guy would be dumb to say certain things that could, even if only by the most extreme inferences, be taken as some sort of racial statement. The white man is in an environment that has certain predispositions towards his demographic/ethnic type. It is unjust, but it is fact. Although there is freedom of speech, in a situation where negative action can be taken against him for saying things, he must watch what he says. While it is unfortunate that this is the reality, it is the reality nonetheless, and therefore it is completely logical for people to guard themselves against what is established. Again, I am not saying that what the muslims said was beyond the scope of normal, and that it was something they should have thought might trigger alarm... I am just saying losa's generalization that muslims in that situation need to be aware, is very very valid.
  14. var uses single quotes not double so its var word = '<% session.getAttribute("result"); %>' I looked into the EL way and that would be var word = '${result}' I believe Neither of these works :/ and i deem that by doing alert and them giving me blank strings or undefined. However I have not bothered to do alert(<% %>) I have only stored the thing in a var and then alerted the var. I will try that today.
  15. Well im down to two specific problems now, so I'll ask one for now I do a session.setAttribute("result",results) within scriptlet tags because i need to access results outside of the scriptlet. Outside of the scriptlet i tried the following things: var word = <% session.getAttribute("result"); %> var word = '<% session.getAttribute("result"); %> var word = ;StringFormat.toHTMLString((String) <% session.getAttribute("Result"); %> )'; the first doesnt run, the second returns null/undefined, and the third returns an empty string. I CAN however do <% JOptionPane.showMessageDialog(null,session.getAttribute("result"); %> and see the content I want perfectly. How do I correctly store the Java string associated with result into a HTML var?
  16. Ok i figured I'd post a full explanation of the situation... It is a form that will submit some stuff to a database. The stuff can consist of several text fields (title, description, contributor, etc) and a multimedia image or video or file. At one point in the form, the user has an option of having a certain operation performed (which is what i need to implement). This operation relies on a few java classes that I have. I believe the only way to do this operation is thru a scriptlet since it calls on several java classes, does some string manipulation, etc. However, this scriptlet needs to only run when and if the user clicks a certain button showing that they want to perform this operation. So i figured have a second form page that is the same as the first one, and one the button is clicked, forward to it, and the SECOND page will have the java scriptlet in it, which runs immediately (as scriptlets have to). So my problem was maintaining all the text fields and such from the first to second page. However, i now have another problem. I need to use the final string i create in the scriptlet outside of the scriptlet. To do this I understand i can use pageContext.setAttribute() which default puts the attribute as pagescope. Then outside the sciptlet call the getAttribute() to retrieve it. For some reason this is giving me null though. In addition, i realized if a user refreshes when on the second page (which is identical to the first page but has the scriplet to run the operation i want at the begining), it re-performs the java scriptlet :/ How should i approach this?
  17. Is there a way to declare/initialize a variable within a java scriptlet, and then use it outside of the scriptlet? I need to do that...
  18. Can you explain what that is doing in a little more detail jowie? I'm trying to do something this is above my head but i need to try, so im picking it up as i go
  19. Ok i decided upon a different solution, but now have a new question/problem... so see if you can figure the following out: One .jsp page will have a button, that upon clicking, redirects the user to a second page, which is identical to the first, with the addition of a java scriptlet (<% and %> tags) thats immediately runs when the page is served, performing the operations i needed. However, there are several text fields and such that i need to maintain their content when I forward to the second page. How can i transfer data when i use "java script:window.location='newurl'" ???
  20. Ok so i got a question i need answered... Im working on a .jsp file that is being served over apache tomcat webserver. I am trying to incorporate an additional functionality into from a different web interface. I pulled the Java classes i needed from this other place, put them into the directory im working on, and incorporated the java as a scriptlet <% and %> tags into the jsp file. I need that portion of java to run upon a certain button being clicked on the web page, however, heres the problem i realized: Java scriptlets in a .jsp get compiled as soon as the page is served, run, and then are done. Meaning even though this scriptlet is within the function that is called by the buttonclick, it only runs when you first reach the webpage, and never after when you click the button. Anyone knowledgeable about this and can propose a solution? Can I put the java scriptlet in an external file or script or something and then call upon that within the buttonclick function?
  21. Right after reading this, i got on facebook, and actually had a diff virus sent to me. Actually phishing i guess. A friend wrote on my profile, "hey check out this vid it made me crack up: __facebook.idaw5w4qt.cn (some link)" If you click it it goes to a facebook like alike and says "must sign in to see the video, but if you look at the url it is faNebook.
  22. what the heck sama...
  23. In addition, since your geting a used one, for quite a while the honda and toyota I4 engines were considered to be almost as powerful as an American v6. Just food for thought. Obviously in more recent times thats not the case. Used toyota or honda will last forever, drives smoothly, and they aint bad looking. Downside is that every other person on earth drives one, do you wanna be the same as everyone else?
  24. wow seeing how bad these videos are (in terms of following it and the approach to making the tiles) reminds me that... cre i realy need to give u the tile tutorials i made. Next time im on plz bug me about it.
  25. Ace i believe his question was to a broad range of ppl, asking whether or not this installer should be desired as the premier installer of ss. Not whether or not two or three ppl would put it on download sites, but whether it SHOULD be on the sites
×
×
  • Create New...