You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!

Author Search Results: 'Thomas'

We found 2,833 matches.


<< < > >>

Viewing 1-30 of 2,833 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 95295

1.

None

Topic: Brain Problems?

Posted: 11/02/09 01:31 AM

Forum: General

Lately when I've been doing bench press, the right side of my head (near my temple, a bit above) springs into a sudden headache. The headache usually lasts for a few hours afterward, and sometimes I can feel it the next day. It seems to be brought on from any amount of weight on the bar (10 reps with 95lb and 10 reps with 155lb both produce same effect).

I have also noticed in a few pictures that one of my pupils is smaller than the other one. I'm wondering if this is somehow related to my headache thing. However, I saw a picture from a few years ago that also had one smaller pupil, so that's giving me doubts about a relationship.

What could be wrong with me? Brain problems? Aneurysms? TUMOR?

Discuss.

2.

None

Topic: Xml.sendandload Ssl

Posted: 10/30/09 05:28 PM

Forum: Programming

At 10/30/09 03:23 PM, urbn wrote: Regading SSL in Flash, the flash forum is better to ask for that specifically.

I doubt a lot of people in the Flash forum know anything about SSL; he was right to ask here instead.


3.

None

Topic: What are you for halloween?

Posted: 10/26/09 07:10 PM

Forum: General

I want to be Alan Rickman in the new Sweeney Todd movie. As soon as he starting going 'bumbum bum' in a duet with Johnny Depp, I knew it was right for me.


4.

None

Topic: php mysql count

Posted: 10/06/09 06:12 PM

Forum: Programming

<?
$my_query = mysql_query($query);
$num_rows = mysql_num_rows($my_query);
echo $num_rows;
?>

The PHP function for counting MySql rows is 'mysql_num_rows();'.


5.

None

Topic: 2 Channels Only (Challenge)

Posted: 10/05/09 01:13 AM

Forum: Audio

At 10/5/09 12:40 AM, Rig wrote: What about automation?

I assume that as long as there are only 2 channels of generators, you can have as many other mixer channels and etc.


6.

None

Topic: Happy Icd!

Posted: 10/01/09 12:21 AM

Forum: General

Happy ICD to all! aka Happy birthday Chronamut!

Do your job, faithful General, and send him naughty pictures of yourself! Chronamut@msn.com

ps no girls allowed


7.

None

Topic: Late, but important

Posted: 09/29/09 08:20 PM

Forum: Audio

Oh wow, I was actually in need of this program! I would have never found out it was free if you didn't post this, so thanks.


9.

None

Topic: Dealing with Dying Pets

Posted: 09/27/09 02:50 AM

Forum: General

I've never had to deal with a pet dying. The cat I have right now I hate, so I won't be sad when that happens...however, my old dog (that lived with my dad) was older than me, but finally died a couple years ago. I wasn't so broken up about it (I never saw him), but my dad was rather upset.

I myself will be getting a puppy soon...I hate to think that one day he/she will die and I will be sad.


10.

None

Topic: Glenn Beck Coming Near Me

Posted: 09/26/09 01:20 AM

Forum: General

At 9/26/09 01:18 AM, Alec-D wrote: if you don't like him keep it to your self.

I never said I don't like him. I'm sure other people don't; I'll throw tomatoes for them!


11.

None

Topic: Glenn Beck Coming Near Me

Posted: 09/26/09 01:16 AM

Forum: General

At 9/26/09 01:16 AM, pieplane wrote: mt. vernon NY??

Mt. Vernon, WA


12.

Mad as Hell

Topic: Glenn Beck Coming Near Me

Posted: 09/26/09 01:13 AM

Forum: General

Apparently Glenn Beck will be coming to Mt. Vernon, which is about a half-hour from where I live. He will be receiving a key to the city...also, he is apparently from that city in which he is visiting.

Should I go throw tomatoes?


13.

None

Topic: Newgrounds Audio Irc Chat!

Posted: 09/25/09 10:04 PM

Forum: General

At 9/25/09 10:00 PM, GiantDouche wrote: OR you could all just get in fucking Paltalk.

Fuck you and your god damn Paltalk, NG Audio IRC is better.


14.

None

Topic: Newgrounds Audio Irc Chat!

Posted: 09/25/09 09:57 PM

Forum: General

For alternative advertising:
http://knoxius.com/

Also shameless advertising for me!

15.

None

Topic: I'm back

Posted: 09/25/09 09:49 PM

Forum: Programming

At 9/25/09 09:24 PM, Pilot-Doofy wrote: Not sure exactly, especially considering I don't even program anymore.

BUT YOU ARE THE ONE THAT TAUGHT ME HOW TO MAKE PHP UPLOADER. Why would you quit?

Actually, that's somewhat of a rhetorical question...I can think of a few reasons why you would be done with it.


16.

None

Topic: Rss Feed Help

Posted: 09/25/09 09:03 PM

Forum: Programming

At 9/25/09 08:49 PM, JaShinYa wrote: Anyone have experience with this?

I'm trying to create a feed for my site so I can add a podcast to iTunes and other sites. Anyone have advice?

It's a shame that PHP: Main isn't up higher in list. There's a tutorial for just what you're asking.


17.

None

Topic: Ask your FruityLoops questions here

Posted: 09/25/09 06:46 PM

Forum: Audio

Is there a way to create a file preset? What I mean is a preset that I create when I click "New File" that will open all of the plugins I use regularly, etc etc?

If that doesn't make sense, I'll try to make it a bit more clear later.

18.

None

Topic: playing movie clip backwards help

Posted: 09/16/09 01:18 AM

Forum: Flash

At 9/16/09 12:50 AM, ImpotentBoy2 wrote: thats just a laggier way to go to frame 1

Oh...yeah that makes sense.

I don't use loops often >.>


19.

None

Topic: playing movie clip backwards help

Posted: 09/16/09 12:17 AM

Forum: Flash

This is just off the top of my head, and I haven't used AS in a while, but try something similar to this:

onEnterFrame = function() {
	function rewind(mc) {
		//Get total frames of the movieclip, declare cframe (current frame)
		var tframes:Number = _root.mc.totalFrames;
		var cframe:Number;

		//Check if the current frame is NOT the last frame of the MC
		//If not, we set tframes (total frames) to the current frame
		cframe != tframes ? cframe = mc.currentFrame:cframe = tframes;

		//Use a for loop to go back a frame until cframe is 0
		for(cframe=tframes;cframe>0;cframe--) {
			mc.gotoAndStop(cframe);
		}
	}
}

Using this code would look something like this:

rewind(instance_of_movieclip);

Again, I'm really not sure that this code will work. I don't feel like testing it right now.


20.

None

Topic: men like sex more then women?

Posted: 09/14/09 05:30 AM

Forum: General

At 9/13/09 11:41 PM, Urza12 wrote: Men think about sex 24/7. Women, not so much.

Have you even read some of the texts those dirty sluts send?

You'll see them.

21.

None

Topic: The Audio Forum Lounge

Posted: 09/14/09 01:16 AM

Forum: Audio

who is steve


22.

None

Topic: Are sprite movies dead nowadays?

Posted: 09/13/09 03:30 AM

Forum: Flash

At 9/12/09 09:47 PM, InnerChild548 wrote: Sprites are boring and unoriginal.

It depends on the person who did it. A lot of spriters can add originality to their sprite animations by creating custom sprites. I think it's awesome when customs are made, it makes the animation twice as good, and there is usually more special effects (for lack of a better phrase) in the movie.

Spriting is also a great way to catch attention. Many, MANY people (particularly 13 year old boys) enjoy seeing their favorite video game characters in an animation. It's kind of like an extension to a game that you don't want to end. Plus, sometimes it's easy to turn a simple game for children into a funny adult-content Flash by twisting around original game content (eg mushrooms in Mario).

If you think about it, using sprites is a great idea for getting viewers. This is probably the reason why many legit animators are pissed. Their hard-work is getting blown off for a movie with Mario in it. A legit animator will then just put down anything sprite-related and use words such as 'unoriginal' and 'overused' (which is true in the majority of cases).

At this point, there isn't much else to do with sprites, which is probably why the idea is dying down. There have been so many movies and games that it's hard to create an original idea with sprites. People have already done numerous music videos, action-packed fight movies (Rise of the MK, Power Star, etc), bloopers, mushroom jokes, and all the rest. People get tired of these themes after a while. The animators eventually figure this out and overall production goes down.

At 9/12/09 09:47 PM, InnerChild548 wrote: You hardly call yourself an animator if you do them, because you're basically putting together piece of cut-out-for-you animation. Takes hardly any skill.

This is just an opinion. You can say this about a lot of the sprite movies out there, but then there are others that have a lot of work put into them. If you see something like Power Star (or related), you will probably just say "Fuck this, it's unoriginal and there's no skill involved. Learn how to draw". However, the author (in this case, Daniel Sun) put a lot of effort in, rather than just copy+pasting the sprites and creating little sequences of back and forth banter. There is also a great story line, which can help remove thoughts of the technique and style of animation.

long post is long

23.

None

Topic: Ask your FruityLoops questions here

Posted: 09/13/09 02:41 AM

Forum: Audio

Is it possible to link Midi Out to a FX channel in the mixer? If so, how? Are there any workarounds if it's not possible?


24.

None

Topic: Music fade outs?

Posted: 09/13/09 02:39 AM

Forum: Flash

FFFFFFFFFFFUUUUUUUUUUU sorry I thought I was in audio forum for some reason.


25.

None

Topic: Music fade outs?

Posted: 09/13/09 02:38 AM

Forum: Flash

At 9/13/09 01:59 AM, quanmandetil wrote: Please help!

In FL Studio, create an automation for the master volume. I don't know how to do it in other DAWs.

Here is a link about automating:
http://fruity--loops.blogspot.com/2006/0 5/using-automation-clips-part-1.html

Here is Google results:
http://www.google.com/search?ie=UTF-8&oe =UTF-8&sourceid=navclient&gfns=1&q=how+t o+automate+in+fl+studio


26.

None

Topic: Programming Day

Posted: 09/13/09 01:23 AM

Forum: Programming

At 9/12/09 05:04 PM, bgraybr wrote: Its disappointing that the site dedicated to programmers has 57 errors.

Consider that to be coding rather than programming, and all will be forgiven xD


27.

None

Topic: Seperate <p> in a form. [PHP]

Posted: 09/12/09 02:49 AM

Forum: Programming

At 9/11/09 07:02 PM, Wonderful wrote: function nl2p($str) {
$str = str_replace("\n", '</p><p>', $str);
return '<p>'.$str.'</p>';
}

Or possibly:

function nl2p($str) {
$str = explode("\n",$str);

foreach($str as $p) {
echo '<p>'.$str.'</p>';
}
}

Untested - not sure if it will actually work. I have no idea if explode() can split at new lines.


28.

None

Topic: Best of August 2009 & Back from PAX

Posted: 09/10/09 09:32 AM

Forum: NG News

At 9/9/09 10:57 AM, TomFulp wrote: All three of us ended up with the flu, apparently there was a swine flu outbreak in Seattle so I might get checked out today.

I heard about that on the radio. It really should have been expected, though, what with Swine Flu everywhere.

The question is, who's the fucktard who decided to go to a convention with the flu?


29.

None

Topic: Good Vsts?

Posted: 09/09/09 11:51 PM

Forum: Audio

At 9/9/09 10:32 PM, Jon1397 wrote: Could anyone suggest some good electric guitar, drums, bass, and piano VSTs that work with FL Studio? Thanks!

I normally use the FPC plugin with samples that I find on the internet. However, there are VSTs like DSK Drumz AkoustiK and 'MyDrumsetRocks' (which you have to mix yourself).

If you want to do samples with FPC, you can probably get out some money and buySteven Slate's samples. They are supposedly rather good (the demos sound great), but are a bit pricey.

Bornemark Broomstick Bass is a decent VST bass. It has a bunch of presets that sound pretty good. If you're looking for a more synthetic sound, you can probably use TS404 or something like Novation Bass Station.

As far as electric guitars go, I know that there is Musiclab. They have Realguitar (acoustic) and Realstrat (Stratocaster). If you used Realstrat and used a few different filters, you could probably produce different sounds.

For pianos, I've heard good things about Absolute Pianos. You can try it and see if you like it. Edirol Orchestral has a decent piano in it, along with other orchestral elements (string, brass, woodwind, etc).

I was checking out the new FL Studio 9 today, and I found that they added in sample packs for pianos, guitars (bass and acoustic), and drum kits (the packs also come with a preset DirectWave file, so each pack is easy to use). If you really wanted, you could download and install FL 9 and use these sample packs.


30.

None

Topic: Favorite propaganda poster

Posted: 09/09/09 01:17 AM

Forum: General

At 9/9/09 01:00 AM, 99OH9 wrote: ill just leave this here.

me too

Favorite propaganda poster


All times are Eastern Standard Time (GMT -5) | Current Time: 01:31 AM

<< < > >>

Viewing 1-30 of 2,833 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 95295