Jump to content

TLEJ

Members
  • Posts

    968
  • Joined

  • Last visited

Everything posted by TLEJ

  1. hahah I honestly don't know what I'd do if a WHOLE bunch of these things started flying around in packs one day ahhaha
  2. This thing is SICKKKK.... imagine how war is going to be in the future...
  3. input.txt > ceasar cipher > output.txt eh? I can help you out.. Do you have TeamViewer?
  4. Well, I'm a poor college student.. And I had a few vector designs I made a while back.. Decided I would put some on some shirts and see what happens. And for the accord lovers: I'd link to the site and shirts, but I'm scared that would cause this to get deleted.. So I guess I'm asking you guys if you'd be interested in them at $12.40 each? I'll probably be making more soon, and I'm open to creating shirts for teams, etc.
  5. If I was trying to make money, I'd be charging around $100-$700 based on what the site called for. Nemesis Audio has one Google Ad at the bottom which is enough to pay for their domain. (They got there's for free..) You can take this option (Me placing an advertisement on the site which once it generates $10, I will buy the domain and remove the ad) Unless you want it there to pay for next year xD EDIT: .. I was doing this a while back, and tried to get everyone's site done, which I did, but I was VERY busy at the time. I'm actually free now to do things.
  6. I'd say I'm best with PHP/MySQL, if you need help with those pesky assignments the teachers make, let me know
  7. Do you need space to create a website online? I'll host your website, or maybe even help you make it. This includes: -Business Pages -Request Sites -Forums -Portfolios -and More! I'm proficient in the following coding langauges: HTML, CSS, PHP, MySQL, JavaScript, C, and a little Ajax! So together, I can develop you a custom site FOR FREE. I might use some already made scripts here and there, if it's easier and better off. I'm no pro coder.. But I can try to get you exactly what you want. (This includes logo's/graphics etc!) For free, it's going to be WhatEverYouWant.LEJDESIGNS.COM Or send me $10 over PayPal and you can have WhatEverYouWant.com/ .net/ .org (as long as it's available!) I use to be only doing Audio Sites, or Team Sites, but now I'm open to anything now that I'm on summer break for college. Benefits of my host: -Unlimited Space -Unlimited Bandwidth -Unlimited Email Accounts -24 Hour FTP Access I am doing this for practice with working with people, (even though it's free) and for practice with managing multiple projects! So get on it while you can! You can PM me, or post here with your ideas for a site. This will done in a first come first serve manor! Works in progress: -Nemesis Audio -Broad Street Cafe -BCP Designs
  8. My team and I are building a one of a kind sports bike. It's in the process of getting a brand new engine, with all new track fairings. The fairings already have the base coat, but before we do the clear coat, we were hoping to put some nice vinyl stickers on it. (So they can be clear coated in)... We thought it would be a cool idea if we got all the audio stickers from the most recent companies here to help them out with advertising. (This bike probably won't be raced, as it will only be on the floor as a display bike) Anyways, if any audio companies are looking to get their name/logo decal onto the bike, please send me a PM and hopefully we'll be able to get you on! We're trying to fill up the whole bottom fairing with brands. (So we need multiple companies!) We want this to be the "audio bike" so to speak.. Pics are on the way, but if you've got an audio company OR AUDIO TEAM, please send me a message! Thanks
  9. I am trying to write a program that stores all the prime numbers up to 1000 in an array.. I can do that.. but when it's doing the check to see if it's prime, if it isn't, it just sets it to 0. So when I try to print out all my prime numbers, it prints all the 0s out with it. How do I remove the 0s from the array? Or what's a better way to do this.. #include "stdafx.h" #define size 1000 int main() { int arr[size], i, j=1, remainder, primecount=0, max=size; for(i = 0;i < size; ++i) { arr[i] = j++; } for(j = 2; j <= size; j++){ for(i = j; i < size; i++){ remainder = arr[i] % j; if(remainder == 0) arr[i] = 0; } } for(i=0;i<size;i++){ if (arr[i]!=0) primecount++; } for(i = 0; i < size; i++) { printf("\n %d ",arr[i]); } printf("There are %d prime numbers up to %d.\n",primecount,max); return 0; }
  10. I had 2 Boss 15's in a sealed box.. Was pleased for the price. All I'm going to say. Never blew, but slightely sloppy
  11. I came up with something I want to invent. I'm going to get a patent for it, and hopefully mass produce it one day But first, I need some renders of the idea. I don't have 3dsMax or any modeling programs at the moment to do so, and I'm not the best at it.. I'm sure the most time you'd spend on it is 10 minutes. It's a very simple concept.. I just need to get some screen shots of a prototype.. So if anyone can help me out let me know!
  12. Yes, I fixed that ground as soon as I saw it.. I had to shave the space around the screw hole though with a screw driver.. But as stated, the ground was only 16ga.. And I don't know her at all really.. Someone referred me to her. So it's whatever.
  13. Haha, I'm just making sure that's the problem. It looks like this: =============================------(30a)--[A] B = Battery = = 4ga - = 16ga A = 760watt amp Her systems in the trunk so it'd be awkward. I tried, but it'd be sitting in the back floor, haha. And the ground is 16ga aswell, grounded to her 6x9s NEGATIVE terminal.. Like I said, this thing is a fireball waiting to happen. I told her this is all very unsafe, but she won't listen.. she's very ignorant and claims "my dad did it!!".. so whatever.
  14. So this girl wanted me to come "Fix her bass".. She said it's got a short in it or something, and her dad is no where around to help her.. I take a look at this system, and I'm like.. Oh my god. The most ghetto rigged thing I've ever layed eyes on. Anyways, her problem is a fuse. It keeps blowing.. It's the one from the battery to the amp. But here's the ghetto of one thing.. She's got a 4ga coming off the battery (unfused...) , which goes ALMOST back to the amp, but it wasn't long enough.. so the 'dad' added about 3 feet of 16ga (very very skinny) which has a 30a fuse. (The one that keeps popping.. She seems kinda poor.. so I told her, look, this fuse is to small, you need to re run all these wires the RIGHT way, and this won't happen. She continues to argue with me by saying it's been working, etc etc.. I told her look, your amp is 760watt max.. 760w/12v=63.333a I told her she needs about a 60a fuse and she should be fine... even though it's so ghetto.. But she just wants her bass.. She'll understand proper wiring is more important then bass when her car burns down. But is this right? Could that be what was causing it to pop randomly?
  15. So I need to write a simple program that takes the user input (int) (Which will be in binary) , and outputs the decimal equivalent. All we have learned so far is printf, scanf_s, if, do, while, int, and all the math functions. We're suppose to do this WITHOUT the use of arrays, and WITH a loop. I have no clue how to do this without arrays.. I know how to convert from binary to decimal and back on paper, but I don't know how to make the computer do this.. Any help would be greatly appreciated! #include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) { int binary, number; printf("Enter binary number: "); scanf_s("%d", &binary); while () { ???????????? } printf("Decimal equivalent is: %d", decimal); return(0); } EDIT: Steve, or any admins, if you see this, could we please change the BG color for code blocks? lol
  16. BEEN 2 LONG. WERE TURAL @??? And yeah, I think that's why I ended up typing them backwards.. I originally had miles/gallons=mpg in my head, and I knew I had to switch them around, so I guess I switched everything..
  17. Oh wow I am a DA... I don't even know how I typed those backwards.. Works like a charm now. EDIT: O DAM MR BALL IS THAT U MY NIGGA? HALOMODS? DAT U?
  18. I have a very very basic C++ problem... Here's my code so far: #include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) { /* Initiate Variables */ int miles, gallons, mpg; /* Get Vaules for Variables */ printf("Enter miles driven: "); scanf_s ("%d", &miles); printf("Enter gallons used: "); scanf_s ("%d", &gallons); /* Calculate MPG, then output */ mpg = gallons / miles; printf("Your miles per gallon was: %d\n", mpg); return 0; } But if ran, I get 0 unless miles = gallons, I get 1. It's doing a "trancauted 0?" or something.. Idk. I need help.. I forgot how to get this to run right.
  19. Wimp.com, Mozilla.org, Wikipedia.com, Craigslist.com, Reddit.com and a couple others are the ones I tried going to today and they were down.
  20. Try to get a copy of "Registry Easy".. It might not be your registry though. Does it only freeze on certain things.. ie: Flash apps? .. Youtube.. etc.
×
×
  • Create New...