Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags

8 Posted Topics

Member Avatar for kiks

[quote=Ryu;290850]From what I understand, you want to count the number of digits in binary form, ex. 10001 (decimal 17) has 5 digits. You simply test the most significant towards least significant bits untill you reach a bit that is set on or 1. Total bits minus that count is the …

Member Avatar for Purple Avenger
0
567
Member Avatar for vov4ik

Hello, i wrote tiny program to output a single symbol, and it doesn't do the job. The whole code is below: [inlinecode] .MODEL SMALL .DATA .CODE BEGIN: MOV AH,02h ; function of printing single character MOV DL,'>' ; symbol of prompt INT 21h ; DOS call END BEGIN [/inlinecode] After …

Member Avatar for vov4ik
0
136
Member Avatar for vov4ik

Hello people, I have just started to learn JS, and have a question. I want make my script to load (for preview) an image file chosen by user through HTML form. My code is following: [html] <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> <title>Upload form</title> <script …

Member Avatar for MattEvans
0
172
Member Avatar for donkey

[quote=donkey]I've got a problem. I'm writing an input form that takes a file name from the user. i want to put a button next to the text box that will open up windows explorer to ensure that there are no typos in the path. does anyone have an idea as …

Member Avatar for donkey
0
168
Member Avatar for vov4ik

I want to create a slideshow of images. Image files will be uploaded from harddisk to the browser and change each other at specified duration. How can i generate delay (after which the next image will be uploaded ) ? Thank you in advance

Member Avatar for Puckdropper
0
98
Member Avatar for vov4ik

Hi, I have problem with uploading images by php script. I created a HTML form for user to input image file, and simple PHP script which accepts this file from form and prints it in the browser. My script uploads file, prints file's name, generates HTML code, but does not …

Member Avatar for vov4ik
0
146
Member Avatar for vov4ik

Hi, I am beginner in PHP and need to want to create a gallery of thumbnailed images so that user could load the original image (in separate window) after clicking on its thumbnail. Is it possible to do it in PHP? I'll be very grateful if you give me some …

Member Avatar for zippee
0
117
Member Avatar for vov4ik

Hi, I'm new to 80x86 Assembler... My question is very simple one: how should i print number on screen? I used the following code to print ascii data: [code] mov ah,09h ;load code of print function lea dx, Var ;load address of variable to be printed int 21h ;DOS call …

Member Avatar for vov4ik
0
160

The End.