Posts
 
Reputation
Joined
Last Seen
Ranked #464
Strength to Increase Rep
+8
Strength to Decrease Rep
-2
75% Quality Score
Upvotes Received
10
Posts with Upvotes
9
Upvoting Members
9
Downvotes Received
4
Posts with Downvotes
4
Downvoting Members
2
7 Commented Posts
~81.7K People Reached
Favorite Tags

182 Posted Topics

Member Avatar for mikeandike22

[QUOTE]And yes I would like to learn machine code, but I am so hesitant, I just don't know if that's gonna pay off and I don't want to spend about 5 years of my life on something that doesn't pay off, while for that time I could do something more …

Member Avatar for VEGETA_DTX
1
2K
Member Avatar for programmingnoob
Member Avatar for rproffitt
0
3K
Member Avatar for pvbhargav
Member Avatar for Sun_5
-1
15K
Member Avatar for DemonicGoldfish

With Final Scratch 2, you hook your decks to your laptop and mix your mp3s on vinyl. There's two special records supplied and you select the tracks using software.

Member Avatar for Guillaume_2
-1
239
Member Avatar for Mr.UNOwen

USB communication is easily 20 times more complex than RS232. No one I know bothers with it. There's a module for the Python language called pyUSB which is said to simplify things. There's also Easy HID. [url]http://www.protongeeks.com/index.php?option=com_content&task=view&id=136&Itemid=30[/url]

Member Avatar for omarcharolin
0
10K
Member Avatar for ang19

There are valid reasons why someone would want to write a program in machine code, though I can't myself see why anyone would need to deal in binary. Anyhow, you can hand assemble code by swapping mneumonics with their opcodes, which are mainly giving in hex.

Member Avatar for David_34
0
1K
Member Avatar for Iphicles

Do you know about C File I/O? This is the .bmp format. [url]http://www.fortunecity.com/skyscraper/windows/364/bmpffrmt.html[/url] Open a bitmap in a hex editor as you follow it along. Then extract the data you want. That's the easy part done.

Member Avatar for timetraveller92
1
480
Member Avatar for mail2shrid

[QUOTE=mail2shrid;663145]I'm using DOS and the compiler is turboc..[/QUOTE] This program only works in Turbo C. [code=C] #include <stdio.h> #include <conio.h> int main(void) { unsigned char key, key2; while( (key=getch()) != '\r' ) { if (key == 0) { key2 = getch(); switch(key2) { case 72: printf("up "); break; case 75: …

Member Avatar for ashok1514
0
4K
Member Avatar for Colin Mac

Hi, I'm a beginner and just started Turbo C I wrote this program in the editor main() { float years, days; printf ("Please type your age in years:"); scanf ( "%f", &years); days = years * 365; printf ("You are%.1f days old.\n", days); } I then run the program and …

Member Avatar for Shankye
1
284
Member Avatar for lonely_girl
Re: HELP

[QUOTE=lonely_girl;740511]well she didnt specify it, we are to make any kind of animation using C eg: mickey mouse or any other cartoon character....if u can plz make me 1 so that i understand it and try makin another myself...[/QUOTE] [url]http://lazyfoo.net/SDL_tutorials/lesson20/index.php[/url]

Member Avatar for Adak
0
257
Member Avatar for abhijeetcn
Member Avatar for [Alpha]-0mega-
0
203
Member Avatar for zandiago

Have you watched MTV cribs and seen the houses the music artists are living in. In fact, they make most of their money performing at concerts because they're been robbed by the record companies. It's a complexed issue though. Some forms of piracy are obviously more damaging than others. Not …

Member Avatar for jon.kiparsky
2
981
Member Avatar for sanz

The default position for a person's fingers are ASDF with the left hand and JKL; with the right hand. All other keys are reached from there, so you can start by making the user learn off those keys first. Display variations of ASDF first, then variations of JKL; Then mix …

Member Avatar for Adak
0
2K
Member Avatar for coolbreeze

You're calling your functions wrongly. They should look more like this. [code]rad = radius(x1, y1, x2, y2);[/code] rad, is the value you'd print out as well as pass to your other functions like [code]area = areaOfCir( rad );[/code] Don't call area() inside in your radius function. Call it from main …

Member Avatar for gurusaranya
0
1K
Member Avatar for mark0420

No one on a forum can teach you how to make a game. You need to learn how to program first before you start thinking about making games.

Member Avatar for vxp
0
284
Member Avatar for bornagainbiker

You [B]MUST[/B] have only one active antivirus installed (anti-virus now, you can have as many anti-spyware programs as you like) so choose one and uninstall the rest. More than one active AV can cause serious conflicts and cause system crashes, as well as false positives. I recommend keeping Anitvir. Your …

Member Avatar for cohort100
0
378
Member Avatar for badbloodyeyez

I'd be more inclined to recommend a simulator like Isis from Labcenter myself, since it supports numerous microcontrollers and components which you can wire whatever way you choose.

Member Avatar for dex391
0
266
Member Avatar for MattCurtis!

Your mobile may have a certain AT command set which would define all the information you can retrieve, via a serial connection, which might be RS-232 although Nokia usually use the FBUS protocol. [url]http://www.embedtronics.com/nokia/fbus.html[/url]. A better idea might be to use a GSM module. Haven't looked into Bluetooth. An easy …

Member Avatar for peter_budo
0
245
Member Avatar for Colin Mac

I have this C program with multiple files and I want to introduce a new file called enemy.c. and I'm wondering if I'm going about this right. game.h [code] #ifndef GAME_ #define GAME_ extern void game (void); extern void enemyFunc (void); extern int enemyPosX; #endif [/code] main.c [code]int main (void) …

Member Avatar for virgoptrex
0
184
Member Avatar for ROBIN8719
Member Avatar for s_mostafa_h
Member Avatar for billy61788

[URL]http://www.free-av.com/[/URL] Avira's antivir is the best free anitvirus, proven.

Member Avatar for caperjack
0
258
Member Avatar for frank_hugo_1100

You need a receiver IC and modulate the IR signal at what the receiver is set to detect, usually between 32 and 40 kHz for remote control. You'd then need a way of decoding two data signals. [url]http://www.winpicprog.co.uk/pic_tutorial5.htm[/url]

Member Avatar for mbit.dbms
0
286
Member Avatar for Samran

The baud rate in bits/sec is the timer overflow frequency divided by 32. It has to be divided by some number because the timer works faster than the standard serial port baud rates. It;s divided by 16 if SMOD is set which doubles the baud rate.

Member Avatar for Colin Mac
0
99
Member Avatar for jazz_vill

You've explained what you need to do, but you haven't asked a question. An LDR in a voltage divider would replace the switch, if your code works for a switch, it will work with a LDR. But it's not going to be very practical, having to line the laser with …

Member Avatar for jazz_vill
0
994
Member Avatar for shihara
Member Avatar for md.j.nasir

If you were interested in those topics, you'd come up with a project yourself. Actually you'd think up of a number of projects. You'd be spoiled for choice of projects if you were interested. You wouldn't need anyone's ideas to get started.

Member Avatar for md.j.nasir
0
141
Member Avatar for justin105

An IR LED and IR phototransistor will do for the car detection. [url]http://home.cogeco.ca/~rpaisley4/ATDetLong.GIF[/url] You can look on [url]http://www.ftdichip.com/[/url] for creating a parallel or serial to USB interface.

Member Avatar for JameB
0
677
Member Avatar for bczar13

There isn't anything special about programmers that work for TV broadcasting companies. Yes, they write the programs in the same languages. If you turn on the news and see a bar chart, it may have been written in Python for example. So without knowing your question, I would say, if …

Member Avatar for checkitout
0
133
Member Avatar for nature_love

An old book but this is the electronics bible. [url]http://www.amazon.com/Art-Electronics-Paul-Horowitz/dp/0521370957[/url] Less advanced, but useful and easy to learn are all of Floyd's books. [url]http://www.prenhall.com/floyd/html/right.html[/url]

Member Avatar for Piya27
0
123
Member Avatar for grandalf62

Depends how printf is implemented in your compiler. In Keil, TI must be set before printf is called. The is because of how putchar is implemented (which is called by printf.) [CODE] while (!TI); TI = 0; return (SBUF = c); [/CODE]

Member Avatar for grandalf62
0
162
Member Avatar for alok1255

Attach a female DB9 connector onto your male to female RS-232 cable. Get the solder type, not PCB type. Then solder wires to it and tie pin 2 and pin 3 together.

Member Avatar for Colin Mac
0
162
Member Avatar for dustman
Member Avatar for jephthah
0
168
Member Avatar for badbloodyeyez

[QUOTE]Is there any way to read the content of the text file or just read the file name of the text file? thanks in advance [/QUOTE] If you can send data, why would you think you couldn't send the name or contents of a text file? If there's more text …

Member Avatar for Colin Mac
0
87
Member Avatar for resystor

An EXE file is a Windows file. Your assembler should output a binary file, which would probably need to be converted to an Intel Hex file, the standard for burning to EPROMs, depending on where the Z80 is executing the code from.

Member Avatar for BlackSun
0
3K
Member Avatar for abhi_marichi

XP won't allow access to the port. Install GiveIO, and it will. [url]http://sourceforge.net/project/showfiles.php?group_id=46487&package_id=77441&release_id=150767[/url]

Member Avatar for abhi_marichi
0
150
Member Avatar for daniyal_riaz

Just use a GSM modem for receiving text messages. You can get one with a serial port.

Member Avatar for Colin Mac
0
164
Member Avatar for winrawr

Learning assembly helps you understand how the hardware works. On certain platforms, learning how the hardware works is necessary to program the hardware, in any language. Learning the hardware isn't necessary to be a good C programmer- though, if you've ever learned about the indirect addressing mode of certain processors, …

Member Avatar for winrawr
0
159
Member Avatar for serkan sendur

[QUOTE=serkansendur;754577]this is not a joke, i create executables with GNU gcc compiler, when i open that executable with notepad i dont see zeros and ones but i do see some absurd set of characters. why do i see them?[/QUOTE] You don't see them because "1" and "0" are just the …

Member Avatar for serkan sendur
0
213
Member Avatar for ahnoldschwarz

Python is nice and easy to learn, but it's powerful. This is a beginner's tutorial and teaches you how to make Pong by lesson 8, which you probably won't find possible in another language. [url]http://openbookproject.net/thinkCSpy/index.xhtml[/url]

Member Avatar for michinobu_zoned
0
448
Member Avatar for blurrycustoms

Here's a fingerprint module you could buy. It doesn't give the price and I can't imagine it being cheap. [url]http://www.badgestuff.com/proddetail.asp?prod=MV1210&cat=105[/url] Read the datasheet if you want to know how to use it in applications.

Member Avatar for ARUN(MCA)
0
146
Member Avatar for elitedragoon
Member Avatar for hellIon
Member Avatar for carson myers
0
169
Member Avatar for Nemoticchigga

[QUOTE=Nemoticchigga;743479]Is keil software for programming microcontrollers a free tool, or does it need to be purchased with a license? Thanks.[/QUOTE] You can download the uVision IDE with an evaluation compiler that's limited to 2K of object code. If it's the c51 compiler you want, that should be good for a …

Member Avatar for Colin Mac
0
103
Member Avatar for Lardmeister

No one died when Clinton lied. But they did when Yugoslavia got bombed. [url]http://www.antiwar.com/pilger/?articleid=11421[/url]

Member Avatar for jbennet
0
3K
Member Avatar for Shanuka

If you need to get ideas from other people for your own projects you musn't be very interested.

Member Avatar for Rashakil Fol
0
133
Member Avatar for Arctic wolf

Have a microcontroller generate the PWM. You can communicate with the microcontroller using the PC.

Member Avatar for Arctic wolf
0
654
Member Avatar for atman

[code] int i; int *p; p = &i; // p holds the address of i *p = 10;[/code] The last assignment says take the value in p, go to that address and put 10 there. Therefore, i now holds 10. To prove that you could print either of these because …

Member Avatar for ArkM
0
80
Member Avatar for En-Motion

In your 2nd for loop i starts at 1. In the first i starts at 0. You're incrementing counters[a[i]] but you're displaying counters[i].

Member Avatar for ArkM
0
319
Member Avatar for FaTMollY

The End.