flat assembler
Message board for the users of flat assembler.
Index
> Tutorials and Examples > New Art Program 4 Kids Goto page Previous 1, 2 |
Author |
|
hopcode 21 Feb 2013, 15:24
yeap, the puppy is nice and funny
then browsed the archive, allow me to say that i find extraordinary subject the boy sitting with airplane in the right hand and looking into the void. the subject there is psycologically involving. cool ! why you didnt go that way, and even murales for that ? is there any reason ? i share now something really interesting for me, Jesse Treviño's murales, http://www.artchive.com/artchive/T/trevino.html i dont go into details but i find your subject deserving murales-enlarged-room. ok. the sculptures you sold (and those in oven) have the same impact of the output of your drawing app: simple, accessible,understandable. you may think to set a little expò in the garden of your house. people look at them under an anti-rain-tent at each come-n-go (and carefully the light on them to be adapted even all night long) then doing thousands of them and note please, in collection and serially, i am sure you would have mathemathically lot, but lot of possibilities to earn of your own from them. you apply a price on them calculated this way: 33/10 . 10 is what you spend time/material/etc, 33 is money you get back. Cheers, _________________ ⠓⠕⠏⠉⠕⠙⠑ |
|||
21 Feb 2013, 15:24 |
|
hopcode 23 Feb 2013, 11:59
well, i wrote the lexer on uart's ML. videoclip+musik.
enjoy cheers, http://www.youtube.com/watch?v=EjKOBqoyktM _________________ ⠓⠕⠏⠉⠕⠙⠑ |
|||
23 Feb 2013, 11:59 |
|
sleepsleep 23 Feb 2013, 14:32
uart, maybe genius usually more extreme, idk,
but who cares... =) lol, maybe you been humble for so many years and people keep on fucking you, idk your story, lol, ah, nothing is impossible, =) |
|||
23 Feb 2013, 14:32 |
|
KevinN 23 Feb 2013, 17:50
Thanks uart. I gotta disagree with the harsh words about johnfound though..hes contributed pretty good stuff in my estimate (im no expert though)
|
|||
23 Feb 2013, 17:50 |
|
uart777 25 Feb 2013, 17:24
[ Post removed by author. ]
Last edited by uart777 on 07 Aug 2013, 19:11; edited 1 time in total |
|||
25 Feb 2013, 17:24 |
|
nmake 25 Feb 2013, 19:16
Well it isn't "exactly assembly language", it is true what he says. And I think I recall in a different thread of yours that you said your code is some sort of "micro compiler", so you basically agree with JohnFound yourself. Why do you disagree with him when you're saying yourself that your code acts like some sort of micro compiler?
If you act like a free-producing code fabric and put out code more efficiently than a conveyor belt can do, at no extra charge. People will never be able to know when you are being nice or when you demand respect for your work. It's a complete trade off. There is a fine difference between contributing and just wanting to show off. I think that people can see through the window here. Some people claim to contribute when they are really just showing off. It's okay to show off from time to time, but if you make it a showoff-fabrication on a day to day basis, this is where things gets worse. It's like: Here, take 100 dollars. Thank you. Here, take another 100 dollars. Thank you. Never forget, I am a free producing money factory, take 1000 dollars. Thank you. Take a million more. Thank you. When contribution goes from "very useful" toward "too often", people shift focus from benefiting the contribution to criticizing it, take it for granted. People don't want all your source files on your local harddrive, they want to create their own code. There is a reason people like to do their own assembly programming. People want small significant contributions from everyone. I'm just trying to help. You demand worship, you want people to worship your code, and when it is posted it feels enforced right up in the face with capital letters, shouting at volumes that have not been invented yet. Let me put up a thought of challenge to you. If everyone on the forum posted complete programs instead of code snippets, would the forum become manageable? Second challenge to you: Are you including forum members to participate in debate when you post complete programs or are you excluding them? If you post small code snippets instead of complete programs, are you including them then? And one last challenge to you: Make the tiniest piece of code you can produce, I mean the tiniest piece of code you can think of, that is extremely significant and useful, then post that as your next contribution. If you can succeed in that challenge, it's a small step for you and a huge step for mankind. True credibility, true respect comes from the details, not from vastness. |
|||
25 Feb 2013, 19:16 |
|
uart777 26 Feb 2013, 12:24
Good questions.
Quote: Well it isn't "exactly assembly language", it is true what he says * John's code is NOT real ASM, either. As one who studies assembler/compiler internals, I know what real ASM is with pure labels and directives (db, include). John seems to have forgotten. You may look at his code and say "it's basically ASM because it uses some instructions" (so does mine, just not much in main source files), but John's macros are a bad attempt at creating a HL compiler with OOP and OS-specific controls * Z77 IS FASM! But I can't call it "Flat" * I write pure ASM, too, mostly from about 1996'-2009', in TASM, MASM, FASM, BC++ 3.1 inline. MMX memory copy I wrote: http://board.flatassembler.net/topic.php?t=15093 Here, I represent a different perspective, something unique. What is "Assembly Language"? Any human readable version of machine code. Who defines the standard? Intel or us? When viewing a linear sequence of machine code bytes in a hex editor (example: HexDen), whether you see one instruction or multiple is a matter of perception. And there are dividing opcode prefixes (repeat, operand/address size override, lock) and instructions like stosd that consist of several smaller ones: let edi=[p], eax=[v], ecx=[n], ecx/4 @@: let [edi]=eax, edi+4, ecx--, jnz @b. Where do you draw the lines between them? Quote: And I think I recall in a different thread of yours that you said your code is some sort of "micro compiler"... Why is it any type of ASM? 1. You must know ASM in order to use it. 2. It generates instructions indirectly using an assembler. What is HL ASM? http://en.wikipedia.org/wiki/High-level_assembler PL360 is the first HL Assembler ever created in 1968: http://en.wikipedia.org/wiki/PL360 Quote: People don't want all your source files on your local harddrive, they want to create their own code. All of my source files? 1. What I've presented is only a small percentage of what I have, but I don't have time to keep coming here. 2. LANGUAGE.INC and TEXT.INC should be standalone and work in other OSs with slight editing and I would love to see a minimal example of this in Linux, Menuet, etc. Quote: If you act like a free-producing code fabric and put out code more efficiently than a conveyor belt can do... 2. False analogy with personal arguments. I would be excited to see what other programmers can do with my code. Quote: Let me put up a thought of challenge to you. Quote: Make the tiniest piece of code you can produce, I mean the tiniest piece of code you can think of, that is extremely significant and useful, then post that as your next contribution. Quote: People want small significant contributions from everyone |
|||
26 Feb 2013, 12:24 |
|
TmX 26 Feb 2013, 14:21
uart777 wrote: For the 10,000th time, I have never recommended that anyone use my code directly, not in the way you're thinking. Only for ideas, algorithms, inspiration, testing, playing with variables. I have always encouraged people to write code however they want. Hi uart, As you said, you provide ideas, algorithms, inspirations, etc in general. I'm sure you don't mind if I tweak your library a bit. I'd like the z77 library to be able to use native OS "look and feel", and not it's own theme. So when I run it on Linux or Windows, for example, it well be displayed properly as a Linux or Windows app. So I just take a look at your codes, and it's very confusing, especially because you don't provide documentation. After some glancing, it seems that I need to modify box.inc, interface.inc, draw.inc, and... what else? A little help/hint, maybe? |
|||
26 Feb 2013, 14:21 |
|
malpolud 26 Feb 2013, 19:36
Never mind. You provided some great stuff, hope that in a couple of years thanks to people like you I can share some unique and inspirational code as well.
Keep programming. |
|||
26 Feb 2013, 19:36 |
|
Goto page Previous 1, 2 < Last Thread | Next Thread > |
Forum Rules:
|
Copyright © 1999-2025, Tomasz Grysztar. Also on GitHub, YouTube.
Website powered by rwasa.