It looks like you're using an Ad Blocker.

Please white-list or disable AboveTopSecret.com in your ad-blocking tool.

Thank you.

 

Some features of ATS will be disabled while you continue to use an ad-blocker.

 

01000111 01110010 01100101 01100101 01110100 01101001 01101110 01100111 01110011

page: 2
16
<< 1   >>

log in

join
share:

posted on Aug, 2 2016 @ 02:53 AM
link   
I as well have been on computers since the 80's. I have been in the search engine optimization field for the last 12 years.



posted on Aug, 2 2016 @ 03:34 AM
link   
a reply to: heineken

How about just writing

jmp start
msg db "Nostalgy.$"

start:
mov ah,09
mov dx,offset msg
int 21h
exit:
mov ah,4ch
mov al,00
int 21h

Always the kids with the fancy new languages.
Use the resources, not waste them



posted on Aug, 2 2016 @ 04:12 AM
link   
a reply to: verschickter

DECLARE SUB PrintSomeStars (StarCount!)
REM QuickBASIC example
INPUT "What is your name: ", UserName$
PRINT "Hello "; UserName$
DO
INPUT "How many stars do you want: ", NumStars
CALL PrintSomeStars(NumStars)
DO
INPUT "Do you want more stars? ", Answer$
LOOP UNTIL Answer$ ""
Answer$ = LEFT$(Answer$, 1)
LOOP WHILE UCASE$(Answer$) = "Y"
PRINT "Goodbye "; UserName$
END

SUB PrintSomeStars (StarCount)
REM This procedure uses a local variable called Stars$
Stars$ = STRING$(StarCount, "*")
PRINT Stars$
END SUB



posted on Aug, 2 2016 @ 04:30 AM
link   
a reply to: notmyrealname
REM pretend to be filled already:
StarsActivated%


DECLARE SUB PrintSomeStars (StarCount!)
REM QuickBASIC example
IF StarsActivated = 1 THEN
INPUT "What is your name: ", UserName$
PRINT "Hello "; UserName$
DO
INPUT "How many stars do you want: ", NumStars
CALL PrintSomeStars(NumStars)
DO
INPUT "Do you want more stars? ", Answer$
LOOP UNTIL Answer$ ""
Answer$ = LEFT$(Answer$, 1)
LOOP WHILE UCASE$(Answer$) = "Y"
PRINT "Goodbye "; UserName$
ELSE
PRINT "Access Denied"
PRINT
DO
LOOP UNTIL INKEY$ ""
ENDIF

END

SUB PrintSomeStars (StarCount)
REM This procedure uses a local variable called Stars$
Stars$ = STRING$(StarCount, "*")
PRINT Stars$
END SUB

HINT: Vulnerability hidden
edit on 2-8-2016 by verschickter because: (no reason given)



posted on Aug, 2 2016 @ 10:54 AM
link   
a reply to: verschickter

Heh, in future there will be specialists for decrypting archaic programming languages. White headed professors which we now usually associate with Latin, Aramaic or other death languages.



posted on Aug, 2 2016 @ 12:27 PM
link   
a reply to: JanAmosComenius
Archaic languages -like you call them- are by nature far more close to the actual machine code the CPU is processing (binary). I like using frameworks like .Net and others because it saves much time for many tasks. Don´t reinvent the wheel and all that. But it´s like with new cars. The assistant systems might be a neat feature, but in the end, I want controll over the car and use its potential (in whatever way).

You don´t use a family van on a race track if you want performance, my opinion



posted on Aug, 2 2016 @ 03:08 PM
link   
a reply to: Algorithm

justpaste.it...

Sry about external link but even ATS has limits



posted on Aug, 3 2016 @ 01:25 AM
link   

originally posted by: verschickter
a reply to: notmyrealname

LOOP UNTIL Answer$ ""

HINT: Vulnerability hidden




top topics



 
16
<< 1   >>

log in

join