|
He (and Disney) saw that coming a few years ago and signed away all the rights to use his voice and likeness, the use of AI to impersonate him, yada-yada [insert legalese here].
|
|
|
|
|
That's both cool and sad at the same time ya know. Future is gonna be wild but always sad to see a figure in your life pass away.
Jeremy Falcon
|
|
|
|
|
I had no idea he was that old. He will be missed!
A home without books is a body without soul. Marcus Tullius Cicero
PartsBin an Electronics Part Organizer - Release Version 1.4.0 (Many new features) JaxCoder.com
Latest Article: EventAggregator
|
|
|
|
|
Now how will I know what Cable News Network I am watching?
He voiced the "This Is CNN" audio.
I’ve given up trying to be calm. However, I am open to feeling slightly less agitated.
I’m begging you for the benefit of everyone, don’t be STUPID.
|
|
|
|
|
Ease his pain (Field of Dreams)
RIP
|
|
|
|
|
The weather satellites and communication satellites are useful no doubt about that. But has any useful discovery been made on ISS? There are experiments taking place out there, what is the outcome of those experiments?
modified 9-Sep-24 17:32pm.
|
|
|
|
|
|
You don’t get to hear on news such things. I was starting to think it’s all just a spectacle with no practical result
|
|
|
|
|
Calin Negru wrote: You don’t get to hear on news such things Unfortunately,
News Quote: "If it bleeds, it leads" ...and there's a lot of bleeding.
"the debugger doesn't tell me anything because this code compiles just fine" - random QA comment
"Facebook is where you tell lies to your friends. Twitter is where you tell the truth to strangers." - chriselst
"I don't drink any more... then again, I don't drink any less." - Mike Mullikins uncle
|
|
|
|
|
There is so much effort put into keeping people into orbit that you can’t help but wonder how much are we willing to pay for advancing the science.
|
|
|
|
|
Good question.
"the debugger doesn't tell me anything because this code compiles just fine" - random QA comment
"Facebook is where you tell lies to your friends. Twitter is where you tell the truth to strangers." - chriselst
"I don't drink any more... then again, I don't drink any less." - Mike Mullikins uncle
|
|
|
|
|
Dante Alighieri wrote: Fatti non foste per viver come bruti ma per seguire virtute e scienza
You weren't made to live like brutes but to chase virtue and knowledge.
GCS/GE d--(d) s-/+ a C+++ U+++ P-- L+@ E-- W+++ N+ o+ K- w+++ O? M-- V? PS+ PE Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++* Weapons extension: ma- k++ F+2 X
The shortest horror story: On Error Resume Next
|
|
|
|
|
From La Divina Commedia, is it?
|
|
|
|
|
With Ulysses special guest...
"In testa che avete, Signor di Ceprano?"
-- Rigoletto
|
|
|
|
|
Yes. I admit I know very little of Dante's other works. The Divina Commedia really overshadows everything else anyway.
GCS/GE d--(d) s-/+ a C+++ U+++ P-- L+@ E-- W+++ N+ o+ K- w+++ O? M-- V? PS+ PE Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++* Weapons extension: ma- k++ F+2 X
The shortest horror story: On Error Resume Next
|
|
|
|
|
Calin Negru wrote: You don’t get to hear on news such things.
You think the mainstream media care to report anything like that, when there's perfectly good politicians that need to monopolize all the talking points?
|
|
|
|
|
Mainstream media have many issues with reporting science news. I remember when an experiment resulted in particles traveling faster than the speed of light: media clamored that we finally discovered thae speed of light is not the theoretical maximum velocity particles can achieve.
The experiment reached some infinitesimal percentage of light speed faster that lightspeed and the report clearly stated that it was probably an error in measurement and that they would check the test equipment: turns out it was exactly that, a slight clock misalignment between source and destination. Media didn't care one bit.
I also got in a huge argument with my parents about it where they threw a bunch of names at me when that was my first reaction as well. Never apologized when I was proven right for the same exact reasons I pointed out in the firts place.
GCS/GE d--(d) s-/+ a C+++ U+++ P-- L+@ E-- W+++ N+ o+ K- w+++ O? M-- V? PS+ PE Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++* Weapons extension: ma- k++ F+2 X
The shortest horror story: On Error Resume Next
|
|
|
|
|
Every bit of SVG parsing C code I've seen
1. Expects the XML to be loaded as a string into memory
2. Constructs an in-memory representation of the basic XML document (parsing floats, and enums and such, but essentially a similar parsed tree as the XML)
That's not good on an embedded device. The minimum size of a practical SVG is about 10-20KB. I've seen them over 100KB easy.
So I have to rewrite this code to peephole parse, which I've done before but ran into stability issues in that code I think? I can't be positive because my backtraces were being blown up.
I'm trying to process it mostly top-down, rendering as I parse to reduce memory requirements, even though it still requires certain things like CSS styles to be kept around.
I have an XML peephole/pull parser that I wrote and works well enough, so that part is good, but I don't know the SVG spec that well. I've mostly just ported other people's code to make it go.
The other issue is I can't use the STL, and it would definitely make my life easier.
Check out my IoT graphics library here:
https://honeythecodewitch.com/gfx
And my IoT UI/User Experience library here:
https://honeythecodewitch.com/uix
|
|
|
|
|
I might be off again, since I do not know how these vector files reach you, or if you author them yerself.
What if you have a chance to pre-process the files on a real computer? There are some "binary-XML" forms out there.
Or if you are creating the vector image? There is the lightweight: TinyVG[^]
"If we don't change direction, we'll end up where we're going"
|
|
|
|
|
I've considered preprocessing but many of these devices are connectible and you can't download SVGs if I don't support them. I don't know how big of a deal that is in practice, probably not much, but it would actually be a lot more work for me. I have codebases I'm pulling from, mainly a nanosvg port I completed for gfx 1.0, and plutosvg so I have quite a bit of the work more or less done, waiting to import and massage.
If I switch to another format I have to redo all that code.
TinyVG is interesting, and I'll keep it in my back pocket, until I hear that someone's actually using the format, as this is the first I've heard of it.
One of the advantages of htcw_gfx is you don't need to preprocess most things. You can get your screens directly from your designers in SVG, PNG or whatever, and simply put them on the display. This saves time, especially when you have a lot of assets. It also makes the build process simpler since you're not doing any preprocessing of assets.
So all that said, I like being able to support formats as they were intended, where possible.
Check out my IoT graphics library here:
https://honeythecodewitch.com/gfx
And my IoT UI/User Experience library here:
https://honeythecodewitch.com/uix
|
|
|
|
|
Years ago I read the book, The Art of Doing Twice the Work In Half the Time[^], by Jeff Sutherland (one of the 17 signatories[^] on the original Agile Manifesto)
The original 12 principles [^] were great guidance (not a methodology).
Anyways, that book was really good & offered A Methodology (SCRUM) that could be used by Companies to create a (paraphrase) "system for creating software which was flexible.") But of course companies took it and made it so Legalistic that it devolved into garbage.
Of course, Agile (which is different from Agile Scrum) & Scrum have both been so altered by so many consultants and books that none of it means anything to anyone any more.
If You Read Nothing Else, Read This Quote About Agile (or watch the video)
I was watching this 9-year old video of Allen Holub and he makes this statement (click here[^] for the moment he makes the statement in YouTube video)
Allen Holub "By the same token, Agile requires constant feedback and constant interaction with users which means that an actual end-user of your software must be in the room while you are developing. If you're not doing that, you're not doing Agile."
My Reply
Well, then, glad we had this little talk. No one is doing Agile, then.
POLL: The Big Question
Have you ever been on a project where the user actually sits in the same room (or even building) as the developers?
I've worked for numerous companies for >33 years in IT & I've never seen this done. Ever.
I can't even remember having an actual user in the same building for a half day.
Have you ever been on a project where you've had a User's time 100% of the time during the project -- the entire time the project is being developed?
Steve Jobs : iPod
The story is that Steve Jobs wanted 1000 songs in his pocket. Yes, we could probably consider him the User and he had Ultimate Power & Authority and so he was able to drive to a product like that.
Netflix? Spotifiy?
Yes, there have probably been some "developer-driven" projects like that (Netflix? Spotify?) but they are so ridiculous that they should _never_ be held out as examples.
Summary
Agile is 100% fake.
Multi-Headed Hydra Monster
The only way it isn't fake is because it is a Multi-headed Hydra Monster.
Every time you hack one of the monster's heads off (Scrum[^] begone!) another head grows back SaFE Agile[^].
modified 9-Sep-24 15:56pm.
|
|
|
|
|
raddevus wrote: Agile is 100% fake. 100% true (IMHO) at least in the form it is usually practised.
raddevus wrote: Have you ever been on a project where the user actually sits in the same room (or even building) as the developers?
Yes, many times. It was less practical for users to come with their equipment and ship/boat to my office so I would go out and spend a few days/weeks at user's site/boat/ship writing the program based of his/her feedback. I remember staying on a ferry between Hirtshals (Denmark) and Oslo (Norway) for a whole week writing a navigation program. That was way before ECDIS[^] systems were almost everywhere. I would take breaks while sailing through the Oslo fjord because it is so darn beautiful
Mircea
|
|
|
|
|
Mircea Neacsu wrote: Yes, many times.
!!!!
Was this specialized hardware? Or extremely custom stuff or something?
What was the product (in general, if you cannot speak about specifics)?
Very interesting.
Do you think this would work -- be possible -- for most software? I mean, "i've never seen users that want to have to provide more than a few sentences before they are bored and ready for me to go program it."
|
|
|
|
|
It was mostly data acquisition software for hydrographic and dredging work. It had to connect to different hardware like GPS, echosounders, tide gauges, etc. It is a rather narrow field but the program was not custom made; just adapted to specific needs and growing by integrating those needs. In a lot of cases new users were very happy to discover features that have been requested by previous users.
Edit: Now I read your whole message
raddevus wrote: Do you think this would work -- be possible -- for most software? Most probably yes. The two requirements I see would be that A) the software can really help the user in his job and B) the programmer has the humility to accept that user is an expert in his field and not try to teach him how to do his job. Once the user sees that the program will really help him he will become very invested in its success.
Another story from the field: brand new dredging vessel in France with a bridge that looked like starship Enterprise with 20+ monitors for different systems. One of them was ours (and a rather smallish monitor at that). Captain that had worked with us to iron out all small issues was presenting the bridge to visiting officials and, pointing to our system says: "...and here is the jewel of the bridge, the system that shows how the dredging operation advances...". Needless to say I had a very warm feeling inside.
Mircea
|
|
|
|
|
Yeah, that makes sense to me for "specialized" application (probably expensive to pay for your time too, I'm guessing).
But I've never seen an instance of external software made for masses where they can sequester a user.
I could be wrong, but I've never seen it myself.
And I also know users -- they are so bored with IT / App Dev that they can barely speak two sentences about what they actually want.
I had internal users (tech support) who
1. drew a winform exactly as they wanted it
2. said the winform must appear in the app when the user holds the left button down. (As soon as the button is let up, the winform must disappear.)
3. This winform would display extra data that was displayed nowhere else (bec they didn't like to see a lot of data at once.
I made the winform look exactly as they wanted it. Even down to the colors they asked for.
THey said this functionality was extremely important.
I created a video of the functionality and asked them to watch it.
I never got any response that they viewed the video.
I finished the functionality and got a call from
tech support mgr 6 months later: "Where the hell is the data? Why didn't you put that feature in?"
Li'l ole Me: Uh, did you left click and hold it when you're on a row of data?
tech support mgr: Oh...
They don't even look at or use the functionality they beg for and design themselves.
There's no way they gonna sit in a room for months. No freakin' way!
|
|
|
|