|
Wordle 900 3/6*
🟨⬛🟨🟨⬛
🟩🟨⬛🟨🟩
🟩🟩🟩🟩🟩
|
|
|
|
|
Wordle 900 4/6
🟨⬜⬜⬜⬜
🟨🟨⬜🟨🟩
⬜🟩🟩🟩🟩
🟩🟩🟩🟩🟩
|
|
|
|
|
Wordle 900 3/6
⬛⬛🟨🟨⬛
🟩🟨⬛🟨🟩
🟩🟩🟩🟩🟩
|
|
|
|
|
Wordle 900 5/6
🟨⬜⬜⬜🟨
⬜🟩⬜🟩⬜
⬜🟩🟨🟩⬜
🟨🟩🟩🟩⬜
🟩🟩🟩🟩🟩
|
|
|
|
|
I've been subscribed to the BBC World News RSS feed for years. Yes, RSS feeds are still a thing. I wouldn't have it any other way either, given that nobody places ads on those feeds (or perhaps rather, don't bother to, for some reason). But that's not the point.
I've been noticing for quite a while now that they'll often re-surface old articles - days, weeks, even months old - articles they've already published before, but republish them with updated bits and pieces - adjust some numbers, add some details that weren't there before, that sort of thing. Some of these (the same articles) show up repeatedly time and time again.
I never find these to be of particular interest (no matter what got updated), so I just delete these "new" entries that show up as unread at the bottom of the chronological list.
I really wonder who those updates are there for. RSS has fallen out of favor, so very few people should even notice. I can only assume that, among the population at large, only people searching for an article on a specific topic might find them, and read the latest version as if it were the first published instance (and really, how might one even know, unless they're marked as such, which they never are?) What's the point? After a while, if something's really worth bringing up again, doesn't it warrant having a brand new article written instead? If it's not, then presumably you're concluding people shouldn't care enough, so as a reporter, you should just let those old articles go...
I don't like to see history rewritten. If it has to do with fact-checking, or new details having come to light, I've seen newspapers publish follow-up articles, corrections as part of an addendum, that sort of thing. These online articles however don't get an addendum; the original gets modified and then passed off as if these were "as originally written".
I'm not sure whether this is common and other news sources do the same, as this is the only news feed I subscribe to. And they're the only ones who do it.
Anyone know anything about journalism that can shed some light as to what the real motive might be?
I'm sure I'm reading too much into this, as the topics in those revised articles are generally rather benign.
|
|
|
|
|
dandy72 wrote: I've been subscribed to the BBC World News RSS feed for years. They are probably having to correct the bits that are incorrect/downright lies.
|
|
|
|
|
They gave the job to AI.
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.
|
|
|
|
|
That is a fundamental property of the Internet: You cannot rely on information being stable or remain available.
If you really need to have something documented, make a copy of that web page. It may be difficult sometimes; you may have to revert to PrntScrn - Save Page as... may not capture all you want to save. Always check the saved page.
Updating news articles is common practice with web newspapers. Sometimes, when reporting from an ongoing event, they put something along the lines of 'This story will be updated', but often they do not. Often, the 'breaking news' updates the first few paragraphs of the story, but if you read to the bottom, there can be a lot down there that they didn't remember to update - such as 'Due to the car accident, the E6 is closed for all traffic', but the (updated) headline and first few sentences declare 'E6 is now open after having being closed for two hours'.
Sometimes, when revising 'facts', they add a small note indicating that 'A previous version of this story said so-and-so. This has been updated to such-and-such'.
The one newspaper that really p me off was one where I could provoke an update. Officially, they were open to reader comments. If you made a comment that was in conflict with the newspaper's views, the article would be 'updated'. Several times I compared the article as it was at the time when I made my comment, with my comment displayed, showing that it was accepted, with the version marked 'Last updated at ...', and not a single character was changed, except for the 'Last updated' time.
And the list of comments were empty. Each update version had its own chain of comments. So they could pretend to accept disagreeing comments, while wiping unwanted comments by making a no-changes 'update'. If asked, they could present a technical explanation ('Every revision has its own comment chain - that's just how it is!'. And it was true: The new revision got a new URL, so if I saved the URL to the revision I commented on, I could use it to retrieve the version with my unwanted comment still in the comment chain.
I think it is far more honest to simply declare that 'We do not accept comments in disagreement with our views', and either inform the commenter the reason why he was rejected, or leaving an entry in the comment chain indicating that a comment was censored. Preferably both.
|
|
|
|
|
re/ "You cannot rely on information being stable or remain available." i recently learned the Wayback Machine is useful . it even has copies of my own minor website of many years prior .
|
|
|
|
|
Firstly, I am not asking for help on a programming issue here. I'm mostly just trying to see if anyone else here is or has in the past been experiencing any problems using the ClosedXML .Net library to open/read Excel files.
I have a simple process that has worked every day flawlessly for over 2 years, then out of the blue, started failing. Basically, ClosedXML was choking trying to open an Excel (*.xlsx) file. By choking, I mean it was an IO exception reporting that the file was corrupted. The weird thing is, I can copy that file to my desktop, open it in Excel, save it, copy it back to the server, and it works fine.
I am aware that a new version of OpenXML was released (right around the time that my process began failing???) with quite a few breaking changes. Coincidence?...I don't know yet.
What's new in the Open XML SDK | Microsoft Learn[^]
What I've tried:
0: Go to GitHub and get the latest ClosedXML libs. So this required a .net framework upgrade to 4.6+. No problem...compiles, go to open a spreadsheet and it complains about the XMLDocument version...go to GitHub, get that version and try again. It compiles fine, go to open a spreadsheet and now it whines about a netstandard library that it can't find. (sure this is an indication of inccompatibility) I tried different versions/combinations but the only way to get it working again was by reverting back to the original framework and original libraries. Back to square one.
1: Plead with the new IT guy responsible for scheduling that job to please change the format to CSV! (the previous IT guy was on a power trip and refused to change it despite numerous requests)
2: Investigating the idea of simply extracting the sheet1.xml file from the archive and parsing it out. Then I wonder why if it was that easy, why there are so few solutions that mention this approach. It's possible that I'm looking at an extremely simple/limited structure (no formulas/formatting/etc.) in this particular file, but it looks feasible. In the event that #1 fails, this will probably be the next path of attack.
3: Install Excel on the customer's server. Ya know, they did give me an admin account so in theory, I can install anything required to get the job done. Also, I have an old Office 2007 disk around here that should still work even if it never gets registered. If 1 and 2 fail, this may be the only option. Not only is it the worst option, but it's also the slowest option. I'd like to avoid this one.
"Go forth into the source" - Neal Morse
"Hope is contagious"
|
|
|
|
|
kmoorevs wrote: if anyone else here is or has in the past been experiencing any problems using the ClosedXML .Net library to open/read Excel files. Nope...
.
.
.
.
Never used it.
run, hides and ducks
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
|
|
You can't install Interop on a server because of licencing.
Well you can or used to be able to, but it took couple of registry hacks.
// TODO: Insert something here Top ten reasons why I'm lazy
1.
|
|
|
|
|
|
Thanks, This looks promising! I've requested the problem file be sent as a csv. Failing that, I'll definitely give it a go.
"Go forth into the source" - Neal Morse
"Hope is contagious"
|
|
|
|
|
There's also the option to use Excel spreadsheet library for .NET Framework/Core - EPPlus Software[^] . There's a FAQ about licensing, depending on your requirements YMMV.
Luca
The Price of Freedom is Eternal Vigilance. -- Wing Commander IV
En Það Besta Sem Guð Hefur Skapað, Er Nýr Dagur.
(But the best thing God has created, is a New Day.)
-- Sigur Ròs - Viðrar vel til loftárása
|
|
|
|
|
I find is amusing that my comments elsewhere (not CP), when it can't be deciphered by AI, needs to go for "review" before it can be released. AI is talking but not really listening.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
Gerry Schmitz wrote: AI is talking but not really listening. Damn it... that might be the proof that is becoming like humans faster than we thought...
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
Gerry Schmitz wrote: AI is talking but not really listening.
I have to admit I've had a number of discussions with ChatGPT (after I've repeatedly tried to clarify a question) that have ended with me writing back "now you're just spewing nonsense".
Invariably, the textbox is then grayed out with a button that says "perhaps it's time to move onto a new topic".
|
|
|
|
|
Sounds like my other half, do you know each other perhaps?... 
|
|
|
|
|
|
Probably not the only one not fluent in Spanish
"If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization." ― Gerald Weinberg
|
|
|
|
|
The Lines & Symbols[^] just suddenly appeared when I opened my project. They were not there before the last update.
Anyone know how to turn these off?? Note that I have 'Show procedure line separators' off.
The lines only appear on regions.
The purple boxes open a context menu.
Thanks
In theory, theory and practice are the same. But in practice, they never are.”
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
|
|
|
|
|
You already have it turned off.
I'm running 17.8.2 and cannot duplicate the problem, so I would say open an issue with MS on it.
|
|
|
|
|