Posts: 2020
Threads: 133
Joined: July 26, 2017
Reputation:
5
RE: Had to reformat and reinstall everything.
September 16, 2023 at 8:53 am
(September 16, 2023 at 8:32 am)LinuxGal Wrote: (September 15, 2023 at 4:50 pm)FlatAssembler Wrote: Serious question: have you ever had to deliver a product which actually works? You know, like I had to when my computer architecture professor asked me to make an assembler and emulator for PicoBlaze that could be run in a modern browser?
I don't understand the joke.
Posts: 1988
Threads: 93
Joined: October 23, 2022
Reputation:
8
RE: Had to reformat and reinstall everything.
September 16, 2023 at 8:58 am
(September 16, 2023 at 8:53 am)FlatAssembler Wrote: (September 16, 2023 at 8:32 am)LinuxGal Wrote:
I don't understand the joke.
That right there is even funnier.
Posts: 6610
Threads: 73
Joined: May 31, 2014
Reputation:
56
RE: Had to reformat and reinstall everything.
September 16, 2023 at 11:41 am
(This post was last modified: September 16, 2023 at 11:44 am by GrandizerII.)
Computer techs would've probably done the same thing you did anyway, Brian. Back up and reinstall is generally the first step computer techs do when it comes to any issues with software that cannot be solved with the help of google or would take more than 30 minutes of their time to resolve. Cynically speaking from experience.
Posts: 3323
Threads: 179
Joined: April 29, 2012
Reputation:
24
RE: Had to reformat and reinstall everything.
September 16, 2023 at 12:34 pm
(This post was last modified: September 16, 2023 at 12:34 pm by zebo-the-fat.)
The 3 R's -- Reboot, Reformat, Re install
The meek shall inherit the Earth, the rest of us will fly to the stars.
Never underestimate the power of very stupid people in large groups
Arguing with an engineer is like wrestling with a pig in mud ..... after a while you realise that the pig likes it!
Posts: 2020
Threads: 133
Joined: July 26, 2017
Reputation:
5
RE: Had to reformat and reinstall everything.
September 16, 2023 at 9:08 pm
(September 16, 2023 at 8:58 am)LinuxGal Wrote: (September 16, 2023 at 8:53 am)FlatAssembler Wrote: I don't understand the joke.
That right there is even funnier.
Do you mean to say that JavaScript programmers (front-end developers) are not real programmers? In my opinion, good front-end is more important than a good back-end. Would you rather submit a form on a slow website but which has a good user interface, or a fast "website" which requires you to submit JSON using CURL?
Posts: 1988
Threads: 93
Joined: October 23, 2022
Reputation:
8
RE: Had to reformat and reinstall everything.
September 16, 2023 at 9:17 pm
(September 16, 2023 at 9:08 pm)FlatAssembler Wrote: (September 16, 2023 at 8:58 am)LinuxGal Wrote: That right there is even funnier.
Do you mean to say that JavaScript programmers (front-end developers) are not real programmers? In my opinion, good front-end is more important than a good back-end. Would you rather submit a form on a slow website but which has a good user interface, or a fast "website" which requires you to submit JSON using CURL?
Strong-typed inherently safe compiled language: "False"
Posts: 8303
Threads: 40
Joined: March 18, 2014
Reputation:
54
RE: Had to reformat and reinstall everything.
September 16, 2023 at 9:31 pm
I fear for the future of technical fields if @ FlatAssembler is the best we can look forward to.
Thief and assassin for hire. Member in good standing of the Rogues Guild.
Posts: 16803
Threads: 129
Joined: July 10, 2013
Reputation:
65
RE: Had to reformat and reinstall everything.
September 16, 2023 at 9:33 pm
(September 16, 2023 at 9:31 pm)Ravenshire Wrote: I fear for the future of technical fields if @FlatAssembler is the best we can look forward to.
Have no fear. He's in Croatia and we aren't sure that is a place that even exists.
Posts: 2020
Threads: 133
Joined: July 26, 2017
Reputation:
5
RE: Had to reformat and reinstall everything.
September 17, 2023 at 4:52 am
(September 16, 2023 at 9:17 pm)LinuxGal Wrote: (September 16, 2023 at 9:08 pm)FlatAssembler Wrote: Do you mean to say that JavaScript programmers (front-end developers) are not real programmers? In my opinion, good front-end is more important than a good back-end. Would you rather submit a form on a slow website but which has a good user interface, or a fast "website" which requires you to submit JSON using CURL?
Strong-typed inherently safe compiled language: "False"
Well, yes, JavaScript is full of quirks one needs to learn in order to use it effectively. I am not saying JavaScript is a good programming language. That's why there is WebAssembly, so that you can run programming languages better than JavaScript in the front-end. And I made a compiler for my programming language targetting WebAssembly. However, I did not use it for my PicoBlaze assembler and emulator because of two reasons:
- It was important for me that my PicoBlaze assembler and emulator works in Firefox 52.9.0 ESR, in which WebAssembly is disabled. Namely, many computers at my university are running Windows XP and are using Firefox 52.9.0 ESR as the browser.
- I suspected that, if I use WebAssembly, I will run into problems with communication between WebAssembly and JavaScript. So I will just be replacing problems with JavaScript with a new set of problems.
Furthermore, I probably wouldn't have got contributors (like Agustin Izaguirre) had I written a significant part of it in my programming language, which is far less well-known than JavaScript.
Posts: 2020
Threads: 133
Joined: July 26, 2017
Reputation:
5
RE: Had to reformat and reinstall everything.
September 17, 2023 at 8:10 am
So, @ bennyboy , you told me that you think that I should implement my algorithm for converting arithmetic expressions into x86 assembly in back-end, right? Well, I still think that's not a good idea. You know why? Because I got banned from 000webhost for "hate speech". And I had to move my website somewhere else, so I chose GitHub Pages. GitHub Pages supports no PHP. Had I written the core of it in the back-end (so, in PHP), that arithmetic expression compiler wouldn't work now. But because the core of it is written in JavaScript, the core of it still works. Only the parts that were written in PHP (for making FlatAssembler project files from the assembly code my web-app produces) don't work now.
|