It feels fake, because they speak in a way that sounds unnatural and overelaborate.
It is so long, with so many unnecessary sentences. And it feels like everything is said at least twice; First a generic statement about the new feature. Then a specific example, or a deeper explanation of what the first generic statement was. Then a demo. And then a conclusion to the future.
The old Steve Jobs keynotes focused on the most interesting things, but now it feels like they are afraid not to include everything. So everything gets diluted.
It would help a lot if they would stop saying the same lines:"And now...", "We cannot wait for you to try our new XXXX ... ", or "We could not be more excited to...", "We are excited to... ".
I am old enough to remember the iPod nano -- Especially the 2nd generation. They were effectively low-priced and smaller iPods.
Apple sold millions of these much much quicker than the iPods and iPod minis (which came right before). Especially in 2006, it was _the_ "Christmas gift" just before the iPhone, iPod touch and later iPad mini took over. Possibly Steve Jobs' demo where he showed how they fit into the otherwise useless small jeans pocket helped convince the world.
The iPod nano effectively wiped out the competing music player market.
The Neo reminds me of the iPod nano and iPad mini. It is smaller and cheaper version of an existing successful product.
Mera Peak is said to be possible without any climbing experience, and it looks like the trek from Lukla is about 2 weeks. Is that true? How hard is the trek -- Looks like it requires well above average fitness level?
Neither Europe nor EU is a single country with a single foreign policy. There are around 40 different small and large countries in Europe each with their own foreign policy, history, culture and language. Two of the countries are currently at war with each other (if we still include Russia in Europe). Historically, Europe is a continent of wars and full of disagreement, where countries have done much to benefit themselves.
I really don't know much of what is happening in China or India or how you would ever measure something as subjective as morality. The point was, that it isn't just European (or EU) nations that don't stand up to the US. Nobody really dare -- Even those other heavy-weights. So it doesn't seem fair to me to single Europe (European nations) out for not doing anything.
I would say that Europe has a lot of bad history and guilt and we know it. And there is an aspiration in many of the European countries to be better and do "the right thing" now, but it is definitely debatable whether those countries actually do it, or if we even know what "right" is.
You are right. People went on with their lives, just as they did in many other parts of the world, but I don't think what happened is forgotten -- Not even in the US.
Btw. as far as I remember neither China, India, Russia, nor practically any other nation stopped trading with the US over the war in Iraq. Maybe I am wrong about that.
Small detail on casualties in Iraq: the estimates listed on Wikipedia range from 150K to about 1 million (1).
Yes. You are right. Unfortunately, many countries that were/are part of EU sent forces to Iraq (not all).
You mention that Asia was suspicious, but the "coalition of willing" actually included Asian countries such as Phillippines, South Korea, Japan, Uzbekistan, Singapore.
I believe the current overarching feeling in Europe is that we were mislead by the US administration more than our own politicians. Already back then, there was quite a lot of skepticism and significant doubt in the media all over Europe about the justification of that war. Also in the coalition countries.
And Indeed, there were no consequences later. But what should have been done and by whom at that point? How do you prove that it was deliberately misleading? Why would it be the job of nations of Europe or EU?
I agree that it wasn't pretty, and that the European nations and EU should have opposed more, but even as it was back then, it was not a clear "cheering on" moment. I remember having discussions about Iraq with people from Scandinavia, Italy, Spain, Germany, and France back when the invasion started. Although a large group did support the war (I think many were still emotionally affected by 9/11), I actually don't remember talking to any one of them.
The reality is that the US is the most powerful geopolitical entity and Europe is a continent consisting of many individual countries. Even the EU is a divided group of nations, and even if united would not be as powerful as the US is currently.
This doesn't really align with CNN's view, but may apply to another even more popular US news channel that seems to be much more aligned with the current administration...
Greenland and Denmark are not the same. Greenland is a self-governed territory under the Kingdom of Denmark. The US administration wishes to take over Greenland from Denmark completely. So you should replace your headlines with "Greenland" and "Greenlanders".
Note: There have already been discussions about making Greenland independent from Denmark, but there is uncertainty over how to handle economic and defense situations. Greenland currently receives significant support (about $10000-15000 per capita yearly) from Denmark. So it is not clear how the country would run without that.
Europe has not just "cheered on". There were demonstrations throughout Europe against the wars in the middle east and both e.g. France and Germany openly opposed the war in Iraq.
The Europeans I know (from all over) have generally been opposed to American geopolitics both in the Middle East, South East Asia, and South America. The US has traditionally been seen as an ally, but that doesn't mean we "cheer on" its actions.
Because there are many financial and military interests, it is very hard to do much for e.g. the EU, and the politicians are very careful with their words. Just as it is for the rest of the world...
Note: Europe is not a single entity but a continent full of different countries including (part of) Russia. Even the EU doesn't really have one single foreign policy.
It will be by far the longest span of a suspension bridge at 3300 meter.
The current longest is in Turkey at 2023 meter.
Each of the pylons of the Messina Bridge will be around 400 meters tall. Which is taller than the Empire State Building.
The strait is too deep, with too much current and seismic activity to place the pylons in the water. So they have to be on the shore, as I understand it.
I listened to the press conference the other day with Trumps cabinet meeting.
It is bizar to listen to.
Robert F. Kennedy Jr. claimed that windmills had killed 100+ whales. I tried to find out what he referred to, but couldn't find anything but articles debunking any claim that windmills affect whales (after construction).
He also claimed that the price per kWh of wind energy is above $0.30, which is quite a bit from the $0.03 ($0.12 offshore) price per kWh listed in Wikipedia [1] for United States.
At the same meeting Trump stated that the only viable solution is fossil fuel."... and maybe a little nuclear, but mostly fossil fuel.". And that wind is about 10x more expensive than natural gas (again contradicting the prices listed in the Wikipedia reference where the prices for onshore wind and natural gas are almost identical).
I know OCR is easier to set up, but you lose a lot going that way.
We process several million pages from Newspapers and Magazines from all over the world with medium to very high complexity layouts.
We built the PDF parser on top of open source PDF libraries, and this gives many advantages:
• We can accurately get headlines other text placed on top on images. OCR is generally hopeless with text placed on top of images or on complex backgrounds
• Distinguish letters accurately (i.e. number 1, I, l, "o", "zero")
• OCR will pick up ghost letters from images, where OCR program believes there is text, even if there isn't. We don't.
• We have much higher accuracy than OCR because we don't depend on the OCR programs' ability to recognize the letters.
• We can utilize font information and accurate color information, which helps us distinguish elements from each other.
• We have accurate bounding box locations of each letter, word, line, and block (pts).
To do it, we completely abandon the PDF text-structure and only use the individual location of each letter. Then we combine letter positions to words, words to lines, and lines to text-blocks using a number of algorithms.
We use the structure blocks that we generated with machine learning afterwards, so this is just the first step in analyzing the page.
It may seem like a large undertaking, but it literally only took a few months to built this initially, and we have very rarely touched the code over the last 10 years. So it was a very good investment for us.
Obviously, you can achieve a lot of the same with OCR -- But you lose information, accuracy, and computational efficiency. And you depend on the OCR program you use. Best OCR programs are commercial and somewhat pricy at scale.
This happens -- also variants which have been processed with OCR.
So if it is scanned it contains just a single image - no text.
OCR programs will commonly create a PDF where the text/background and detected images are separate. And then the OCR program inserts transparent (no-draw) letters in place of the text it has identified, or (less frequently) place the letters behind the scanned image in the PDF (i.e. with lower z).
We can detect if something has been generated by an OCR program by looking at the "Creator data" in the PDF that describes the program use to create the PDF. So we can handle that differently (and we do handle that a little bit differently).
PDF->image->text is 100% not lossless.
When you rasterize the PDF, you losing information because you are going from a resolution independent format to a specific resolution:
• Text must be rasterized into letters at the target resolution
• Images must be resampled at the target resolution
• Vector paths must be rasterized to the target resolution
So for example the target resolution must be high enough that small text is legible.
If you perform OCR, you depend on the ability of the OCR program to accurately identify the letters based on the rasterized form.
OCR is not 100% accurate, because it is computer vision recognition problem, and
• there are hundrends of thousands of fonts in the wild each with different details and appearances.
• two letters can look the same; simple example where trivial OCR/recognition fails is capital letter "I" and lower case "l". These are both vertical lines, so you need the context (letters nearby). Same with "O" and zero.
• OCR is also pretty hopeless with e.g. headlines/text written on top of images because it is hard to distinguish letters from the background. But even regular black on white text fails sometimes.
• OCR will also commonly identify "ghost" letters in images that are not really there. I.e. pick up a bunch of pixels that have been detected as a letter, but really is just some pixel structure part of the image (not even necessarily text on the image) -- A form of hallucination.
We do a lot of parsing of PDFs and basically break the structure into 'letter with font at position (box)' because the "structure" within the PDF is unreliable.
We have algorithms that combines the individual letters to words, words to lines, lines to boxes all by looking at it geometrically. Obviously identify the spaces between words.
We handle hidden text and problematic glyph-to-unicode tables.
The output is similar to OCR except we don't do the rasterization and quality is higher because we don't depend on vision based text recognition.
The base implementation of all this, I made in less than a month 10 years ago and we rarely, if ever, touch it.
We do machine learning afterwards on the structure output too.
It is so long, with so many unnecessary sentences. And it feels like everything is said at least twice; First a generic statement about the new feature. Then a specific example, or a deeper explanation of what the first generic statement was. Then a demo. And then a conclusion to the future.
The old Steve Jobs keynotes focused on the most interesting things, but now it feels like they are afraid not to include everything. So everything gets diluted.
It would help a lot if they would stop saying the same lines:"And now...", "We cannot wait for you to try our new XXXX ... ", or "We could not be more excited to...", "We are excited to... ".
"With that, now over to person-X"