domingo, 31 de maio de 2020

[Pensé] I believe in protests, it shows that we are against the wrong things in the world. But it doesn't change, it only teaches us to be human.

[Pensé] I haven't done the test yet, the Possibility test, most everything indicates, that the bigger the Block (10, 100, 1000), the greater the possibilities of generating numbering.

I liked using Block for password creation. Achieved functionality; safes, cell phone protector, etc.

[Pensé] No combate à pandemia, o Peru não falhou. Foram as condições precárias que o atraiçoaram (ZAP) GOSTEI DESSA REPORTAGEM; FOI A PRECARIEDADE QUE TROUXE TANTOS PROBLEMAS; PAÍSES EMERGENTES NÃO ESPERAVA POR ESSA SITUAÇÃO.


https://zap.aeiou.pt/peru-condicoes-precarias-atraicoaram-327013

FHC: “Quem vai ser responsabilizado pelos erros do Governo, queiram ou não, serão os militares” -(El País) ELE TEM RAZÃO, E NÃO TEM, PORQUE O PRESIDENTE TAMBÉM É RESPONSÁVEL PELO SEUS ATOS.Mais acredito em um controle de atos Anormais.Até o fim do mandato



[Pensé] I know there, the Logica Predictability chart, is nothing more than measuring the size of the Charts, Up or Down. I created rules and proved to be functional. Created by what was available

[Nasdaq Index] (S12)(T16) +1 is Factor in "S" (S13) < T16 HIGH (⬆)

(5D) _ _---_ _--_ _- (S2,T3,S2,T2,S2,T1) < (S6) (T6)

(1M) _ _ --_ _--- (S2,T2,S2,T3) < (S4) (T5)

(6M) ---_ _-- (T3,S2,T2) < (T5) (S2)

= (S12) (T16) +1 is Factor in "S" (S13) < (T16) HIGH⬆

[Pensé] Brasil atinge 28.834 mortes por Covid-19 e passa a França no número de vítimas (G1) O numero de morte não chega a 10% dos Contaminados, o problema é o "SUPORTE, TRATAMENTO", É CARO, para países emergentes, por isso a CONTENÇÃO é importante.

[Rever][PDF] Notes on Discrete Mathematics


https://www.cs.yale.edu/homes/aspnes/classes/202/notes.pdf

[Rever] Industrial control and protection logic network

https://www.researchgate.net/figure/Industrial-control-and-protection-logic-network_fig1_250386614


[...] Very high reliability figures cannot be formally justified for a piece of software. Failure probabilities lower than 1E-4 are rarely claimed or justified even in a highly diversified software system, and there is not an accepted approach for the use of quantitative evaluation for software reliability between the different countries. The situation is even more difficult concerning figures for software CCF. The current state of the art for the quantification of software reliability relies mostly on holistic approaches, such as conformance to appropriate safety standards such as IEC 61508, or statistical testing. The EU Euratom FP7 project HARMONICS (Harmonised Assessment of Reliability of Modern Nuclear I&C Software) will tackle the problem of software reliability quantification using analytical and Bayesian approaches that take into consideration all the information available, in particular evidence obtained by V&V.

[...] The logic network works for supporting logical inference of Bayesian network. In the result of some learning experiments using interactive data, we have confirmed that the proposed interactive learning method is useful for scene context reasoning.

[Rever] Prime numbers keep your encrypted messages safe — here's how

Ref.: https://www.abc.net.au/news/science/2018-01-20/how-prime-numbers-rsa-encryption-works/9338876

19 Jan 2018

[...] Don't know if you've heard, but there's a new largest known prime number in town.

On 26 December, mathematicians scored a late Christmas present when a computer owned by a 51-year-old engineer in the US discovered the numerical beast, which starts with a 4 and ends in 1 — with 23,249,423 digits in between.

If you need a refresher on the definition of a prime number, it's a number larger than 1 that's divisible only by itself and 1.

The first few primes are 2, 3, 5, 7 and 11. The rest, like 4 for instance, are not prime: 4 can be broken down to 2 times 2, as well as 4 times 1.

But when mathematicians and computer scientists talk about large prime numbers — hundreds or thousands of digits long — it's often in the context of encryption: big primes, they say, help send secure messages between people, or computers.

So why is that?

Introducing the RSA algorithm

Prime numbers are fundamental to the most common type of encryption used today: the RSA algorithm.

The RSA algorithm was named after the three mathematicians who first publicly unveiled it in 1977.

They commercialised the idea and did very well out of it.

(A mathematician at the UK Government Communications Headquarters devised it separately four years earlier, but it wasn't considered useful and ended up being shelved. Oops.)

The RSA algorithm, in essence, allows a message to be encrypted without the sender knowing the key, says Lynn Batten, a mathematician and security researcher at Deakin University.

Here's how it works. The maths might seem a bit gnarly, but… that's kind of the point. Stick with it!

Public key locks private messages

Let's say I want to send you an encrypted message.

To do this, you need to make a public key, which comprises two numbers, available to me.

First, you choose two prime numbers: 11 and 17. These aren't your key — just a starting point. In calculations, we call these numbers p and q.

You keep p and q private. (Yes, you need to mind your Ps and Qs.)

Multiply p and q to get 187. Let's call this value N — it's one of your public key numbers.

Your second public number is a smaller one, which you can choose, and goes by the nickname e.

There are some rules that restrict your choice*, but let's say you pick 7.

Congratulations! You've now set up your encryption scheme. Easy, hey?

Now publish N and e wherever you like — shout them from the rooftops if you want — but "you'd usually publish it on an online directory just like a telephone number", Professor Batten said.

How to encrypt a message…

Now I'm going to send you a message outlining how many bottles of beer are on the wall — 99, of course — but we don't want anyone else to know.

(Even if the message isn't a number, it can easily be represented as one; your phone or computer has made that conversion for you to read this article.)

I look you up on a directory and find your public key — your N and e — 187,7.

Then the calculations start. I raise my message to e (it's an exponential, get it?).

In other words, I multiply 99 x 99 x 99 x 99 x 99 x 99 x 99 (seven times) and end up with a very large number. It's more than 93 trillion.

I then divide this massive number by your N (187). The answer to this calculation is still pretty big (498,430,667,329.9412) — but in fact, all I'm interested in is the remainder.

Remember learning fractions and decimals? Divide a large number by a small number and you can end up with leftovers. For instance, 6 divided by 4 equals 1 with a remainder of 2.

(In maths jargon, this is called the modulus.)

In our encryption example, the remainder is 176. And it's this number that I send to you; that's our encrypted message. We don't care if it's intercepted, because only you can decipher it.

Aren't we clever?

... then decrypt it

But how the devil do you decrypt 176 to get my real message, 99?

Well, you start with another secret number called d.

It's calculated based on your two original, secret prime numbers (p and q) and your public e. In this case (trust me**) it's 23.

And now the numbers get even bigger. You take my message (176) and multiply it by itself 23 times, ending up with a mammoth figure that's 50-odd digits long.

Then divide this new, monster number by N (187, the product of your original primes p and q) and find the remainder.

Bingo! The remainder is 99 — my original message.

There you have it: an encrypted, then decrypted, message.

All up, you keep p, q and d secret; N and e are public.

There are, of course, online calculators that do all these sums for you. And in real encryption, you'd never choose simple prime numbers like 11 and 15 as p and q, Professor Batten explained.

You'd go for much larger primes, hundreds or maybe thousands of digits long.

The reason prime numbers are fundamental to RSA encryption is because when you multiply two together, the result is a number that can only be broken down into those primes (and itself an 1).

In our example, the only whole numbers you can multiply to get 187 are 11 and 17, or 187 and 1.

It's easy enough to break 187 down into its primes because they're so small.

But when you use much larger prime numbers for your p and q, it's pretty much impossible for computers to nut them out from N.

Massive Mersenne primes

Still, computers are getting faster and more powerful all the time, so mathematicians continue to search for large prime numbers.

And when it comes to the biggest known prime numbers, Mersenne primes are most prolific.

Named after a French polymath, Mersenne primes take the form of 2 multiplied by itself a certain number of times, minus 1.

The Boxing Day prime is a Mersenne prime: it's 2 multiplied by itself 77,232,917 times, minus 1.

Nine of top 10 largest known primes fall into the Mersenne category.

Mersenne primes hold a special place in encryption too.

It turns out that in binary — the language of computers — Mersenne primes can be denoted as strings of 1s only.

For instance, the number 3 is written as 11 in binary. 7 is 111, 15 is 1111, 31 is 11111 and so on.

But as neat and effective as RSA encryption is, it won't be our secret-keeper of choice forever.

When quantum computers, capable of performing billions of calculations each second, start unpicking public keys to break them down to their primes, RSA will no longer be safe.

RSA isn't the only encryption technique out there though, and research teams are already finding ways to ensure we stay secure in the quantum computing age.

As Professor Batten said: "There are plenty of other [techniques] that will do just fine."

* For the mathematically keen, these are the rules for finding your e:

Take 1 off p and q, then multiply them. In our case, this means 10 times 16, which gives us 160.

Your e can be anything you like, as long as it doesn't share any prime factors with 160: that is, 2 or 5.

So in our case, e can't be 2, 4, 5, 10, 20, 40 or 80. We went with 7.

** For the even keener — this is how you calculate d:

Remember how you took 1 off p and q and multiplied them to get 160? You then add 1 to this and divide by e. 161 divided by 7 is 23. That's our d!

[Pensé] Block Z For password; Pose Mix the Blocks into 2 Security steps. The user decides which Block to use; 10, 5, or 20.

Block Z10 in "Reformulation of creation Password"

Password conventional
[340064      ]
_____________
[ 1 ] [ 2 ] [ 3 ]
[ 4 ] [ 5 ] [ 6 ]
[ 7 ] [ 8 ] [ 9 ]
[ * ] [ 0 ] [ # ]

[...]

Password Format Block Z10

[XXXxxxXXXx]   < 11131111 is Password
______________
[ X ] [ x ] [ # ]

Authentication of 2 factory  "Block Z10" (more security).

[XXXxxxXXXx]   < 11131111 is Password
[XXXxxXxxxx ]   < 111215   is 2 step to "OK"
______________
[ X ] [ x ] [ # ]






[Pensé] The IT people would call it iframes, they're iframes, I call it iframe architecture; Because you have a purpose.

sábado, 30 de maio de 2020

[Pensé] I don't want you to be like Chile. Political strife, in full pain.

[Pensé] I want to see until June and July, I don't want politics during those months. I want to see if there will be containment of the virus in Brazil and advances in economic restructuring. The lack of management will make room for the vice or president of the congress, to take office as ruler of the country. But I don't think that's going to have to happen. This is no time for politics.

[Pensé] I like to talk about countries, keeps me updated, I like to talk about the "Structure", the "Machine" that moves these countries, it interests me, the machine. It seems sordid or a rerun of ideas of "Supremacy", it doesn't matter, I like.

[Pensé] Upload on deepweb, this is not new, in the future browsers, will integrate the networks. And more will be created.

[Pensé] Block Z10 "add funds" (mp4)

http://galaxy3bhpzxecbywoa2j4tg43muepnhfalars4cce3fcx46qlc6t3id.onion/file/view/263940/correction-block-z10-add-funds-block-of-9-not-mix-block-of-10-characters

https://blog.naver.com/zicutake/221984880012

https://youtube.com/watch?v=35o8LDtnctg

[Pensé] I hate it when I make a mistake, it's looking insane, I don't need to prove anything, but I don't like it.


[Pensé] [:-( You're wrong! The Block is 10 and should not be calculated with a 9. The Blocks don't mix in "Add funds".

[Pensé] That's good, this could bring control of the Infestation.(UV)

http://proclame281119.blogspot.com/2020/05/rever-scientists-consider-indoor.html

[Rever] Scientists Consider Indoor Ultraviolet Light to Zap Coronavirus in the Air

Ref.: https://www.nytimes.com/2020/05/07/science/ultraviolet-light-coronavirus.html

[...] Some researchers hope a decades-old technology might get its moment and be deployed in stores, restaurants and schools.

[...] It has the ungainly name of upper-room ultraviolet germicidal irradiation, and it is something like bringing the power of sunlight indoors.

"We have struggled in the past to see this highly effective, very safe technology fully implemented for airborne infections," said Dr. Edward A. Nardell, a professor of global health and social medicine at Harvard Medical School. "We've done the studies. We know it works."

[...] Ultraviolet light mangles the genetic material in pathogens — DNA in bacteria and fungi, RNA in viruses — preventing them from reproducing. "You've killed it essentially," said William P. Bahnfleth, a professor of architectural engineering at Pennsylvania State University.

[...] Dr. Nardell estimated that installing commercially available fixtures for an intermediate-size warehouse-type store like Walmart would cost about $100,000, which might be too expensive for some smaller businesses.

The systems also add to electricity bills and require cleaning and maintenance. "They're not plug in and walk away forever," Dr. Nardell said.

[...] During five years of experiments at several schools there, students in classrooms outfitted with ultraviolet fixtures were less likely to catch and spread some contagious diseases, such as smallpox and mumps.

The most striking divergence occurred during the spring of 1941 when measles swept through schools around Philadelphia. At Germantown Friends School, one of the schools studied, ultraviolet fixtures had been installed in the primary grade classrooms. There, about 15 percent of children who did not possess immunity to measles — that is, those who had not previously contracted the disease — became sick.

In the upper-grade classrooms, where ultraviolet fixtures had not been installed, more than half of the susceptible students contracted measles.


[Pensé] Can I do this without looking like an unscrupulous handler who "Take the Candy out of Europe"? Would it cause market dispute, and raise the roles of OI telecommunications, on the Stock Exchange?

I don't know, I don't want to look like the Villain. More makes sense, Europe will have the monopoly of Communication in Brazil, it bothers me, I do not like Monopoly, because of prices.

[Pensé] Or rather, I send an email or letter to "Ren Zhengfei" and say, why don't you buy Oi Telecommunications? You will open china's space with Latin America in the area of communication.

[Pensé] Ok, I send an email to Hans Vestberg , I say why you do not buy Oi Telecommunications, you can expand fiber optics and Cheapen the Internet in Brazil?

[Pensé] Ok, I send an email to "Carlos Slim Helú" and say why do you not buy Oi telecommunications, to avoid the monopoly and suffocation of Claro in Brazil?

[Pensé] Telefónica and Tim are European, have thoughts and ideas, financially, equals. If the two acquire Oi Telecommunications, it will be "Monopoly", I do not like monopoly, the two will control the price of "Internet", in Brazil.



[Rever] Telefónica deve trazer OpenRAN para Brasil ainda em 2020

https://teletime.com.br/18/03/2020/telefonica-deve-trazer-openran-para-brasil-ainda-em-2020/

[...] Controladora da Vivo, a Telefónica anunciou nesta quarta-feira, 18, uma união com as empresas Altiostar, Gigatera Communications, Intel, Supermicro e Xiling voltada para a implementação de redes de acesso móvel abertas (OpenRAN) em 4G e 5G. As primeiras provas do conceito devem ocorrer ainda em 2020 nos mercados prioritários do grupo, incluindo o Brasil.

[Rever][Analyze] OpenRAN

Ref.: https://telecominfraproject.com/openran/

[...] Project Group is an initiative to define and build 2G, 3G and 4G RAN solutions based on a general-purpose vendor-neutral hardware and software-defined technology.

[...] This project group's main objective is the development of fully programmable RAN solutions based on General Purpose Processing Platforms (GPPP) and disaggregated software so they can benefit from the flexibility and faster pace of innovation capable with software-driven development.
To achieve this, the project helps enable an open ecosystem of complete solutions and solution components that take advantage of the latest capabilities of GPPPs, both at a software level and also using programmable offload mechanisms such as field-programmable gate arrays (FPGA).

The project complements existing TIP projects and focuses on disaggregation of virtualized RAN solutions into different components and ensuring each individual component can be efficiently deployed on GPP platforms.

What is OpenRAN?

Disaggregation of RAN at HW & SW level on vendor neutral, GPP based platforms
Open Interfaces – Implementations using open interface specifications between components (e.g. RU/CU/DU) with vendor neutral hardware and software defined functions
Multiple Architecture Options
– An all integrated RAN with disaggregation at SW and HW level
– A split RAN with RU, BBU (DU/CU)
– A split RAN with RU, DU and CU
Flexibility – Multi vendor solutions enabling a diverse ecosystem for the operators to choose best-of-breed options for their 2G/3G/4G and 5G deployments
Solutions implemented on either Bare Metal or Virtualized or Containerized Platforms
Compliant to the OpenRAN principles as per OpenRAN Charter

Community contributions

The items referenced below are official contributions made to TIP from TIP members.

OpenRAN: The next generation of radio access networks
Radio access networks must evolve with rising data demand. Current telecommunications network infrastructure requires significant upgrades to keep up with increasing network demand. Operators will be compelled to evaluate new radio access network (RAN) technology from various technology providers.

Telecom Infra Project (TIP) has created an OpenRAN project group which focuses on developing a vendor-neutral hardware and software-defined technology based on open interfaces and community-developed standards. Unlike traditional RAN, OpenRAN decouples hardware and software. This gives operators more flexibility as they deploy and upgrade their network architecture in various deployment scenarios and geographies.

[Pensé] I don't want to talk about racism. The world is evolving, it ends little by little.

[Pensé] Has an error in thought below; the issue of passthrough of 1% the profits, only the profits. I have to revise it.

http://proclame281119.blogspot.com/2020/05/theorytest-public-funds-system-on_30.html

[Rever] Ki-yoo (Block of Notes Online) (MP4) http://galaxy3bhpzxecbywoa2j4tg43muepnhfalars4cce3fcx46qlc6t3id.onion/file/view/263869/ki-yoo-speak-momment-block-of-notes-online

[Pensé] Ki-yoo (Block of Notes Online) https://m.blog.naver.com/zicutake/221984687093

[Theory][Test] Public Funds System on the Internet; The majority of it is the one who makes the choice. [Part.2]

The creation of content for small businesses is simple, it creates an association, this association are passed on 1% the profits of companies to index each month. The companies indexed will be entitled to a percentage amount on the variation of the index.

A good example is the volume. If the volume of negotiations reach $1000 at the end of each month, companies will receive 1 percent of everything.

Then investors will benefit with the variation of the index, the positive 1 percent each percentage of percentage is return to the companies in the index. The variation of the index is based on the quarterly report of companies.

[...]

30/05 2020

[Pensé] I liked it, Richard Ells opened up my ideas a little, the initial idea was funds, but I can substitute digital coins. It's just a test. a demo.

The creation of a group fund. Most win to make the investment. It is by vote.

The idea opens space for the creation of indexes, as an investment space for small companies.

[Pensé] Existe fatores, regras no Brasil, quando uma grande empresa é vendida para um Grupo no exterior. Esses fatores, protege soberania Nacional e controle sobre ações futuras, tomada pela empresa; como controle de preço.

:::::: # ::::::::

[Pensé] :::::::: # ::::::::::

sexta-feira, 29 de maio de 2020

[Pensé] It has no other intention, I wanted to publish something there. It doesn't matter, I'm thinking about other matters. All this happened, I believe that in 2021 will be a fresh start, good.

[Pensé] Denounces: The Withdrawal of Civil Law, Brazil http://galaxy3bhpzxecbywoa2j4tg43muepnhfalars4cce3fcx46qlc6t3id.onion/blog/view/263815/denounces-the-withdrawal-of-civil-law-brazil

[Pensé] Uno Blog em Deepweb "Galaxy3" galaxy3bhpzxecbywoa2j4tg43muepnhfalars4cce3fcx46qlc6t3id.onion/profile/zicutake

I don't need to write anything hidden. But it's not being hidden. It's just a messy place! In the future will have much more networks!

[Pensé] Sometimes I'm silly, but it's good to be silly sometimes.

[Pensé] Política é para se eleger, Gestão Política é quando você toma posse, e leva consigo a responsabilidade para tirar um país do caos, ou tentar ter o máximo de ética possível.

[Pensé] Fico feliz em ajudar o Chile, mais vai precisar de ajuda de Fora, se não esse dinheiro vai ser gasto sem Busca da Efetividade do Combate a Mortes e Infestação do Vírus. Precisa de Gestão de fora. Ali tem Política.

FMI outorga linha de crédito ao Chile de US$ 23,93 bi por pandemia ref.: https://www.istoedinheiro.com.br/fmi-outorga-linha-de-credito-ao-chile-de-us-2393-bi-por-pandemia/

[Pensé] I like cryptocurrencies, more is missing something, a base. The dollar has a base, everyone has a base, gold. That's what's missing, a base. Without a basis, time erodes everything.

[Pensé] SciELO has a wonderful job. There are articles, research, that bring everything together in social, economic, technological and human science.

I learned a few things, the problem is not copying, the problem is monetize. I think it's important to be copied articles, articles of Science, social ideas, more monetize, only the author.

[Rever][Analyze] Defining cyberterrorism - Laura Mayer Lux / Chile

https://scielo.conicyt.cl/scielo.php?pid=S0719-25842018000200005&script=sci_arttext&tlng=p

[Rever] Types of IT Architects: A Content Analysis on Tasks and Skills

[...]Information technology architecture is an essential element of an enterprise's strategy and impacts competitive advantage. The management of information technology architectures is unexplored in theory and confused in practice. In particular, the roles of information technology architects are interpreted in various ways. The purpose of this study is to examine the roles of information TECHNOLOGY ARCHITECTS by investigating the required activities and skills demanded in the human resources market. In-depth content analysis was applied on job advertisements. Categories were inductively developed by allocating meaning units until saturation: 2438 meaning units were assigned to 37 task categories and 49 skill categories. As a result, three types of architects with distinctive profiles were identified. In addition to technological expertise, all architects must provide outstanding social and methodological skills. Knowledge of particular frameworks is rarely required. Skills and architect types from The Open Group Architecture Framework were disproved in parts. Attributes specific to e-commerce architects and DIGITAL ARCHITECTS were elaborated. The found task and skill categories may be used as catalogs for recruiting purposes in practice.

[...]ref.: https://scielo.conicyt.cl/scielo.php?script=sci_arttext&pid=S0718-18762020000200103

[Pensé] I believe in a few things, but I believe that one day we will extinguish ignorance, illiteracy. Not because we're good, because the world needs it.

[Pensé] Richard Ells talks about transparency, honesty, okay.... It's a good step to try to get into the "Nasdaq". The world is more complex, gold is still reliable and dollar will not let be demoted.

ENC: Access the full 16-page Cointelligence report on Electroneum


De: Richard Ells
Enviada em: ‎29/‎05/‎2020 17:26
Para: pedrodefilho@hotmail.com
Assunto: Access the full 16-page Cointelligence report on Electroneum

Hello, I hope you are well. Today marks another world's first for Electroneum – The first crypto to commission and publish an in-depth report into its operation. An example of transparency in a crypto space that is mostly anything but. There are very few people who could be trusted to be completely

Hello,


I hope you are well.


Today marks another world's first for Electroneum – The first crypto to commission and publish an in-depth report into its operation. An example of transparency in a crypto space that is mostly anything but.


There are very few people who could be trusted to be completely honest in their appraisal of Electroneum, so we chose the notorious On Yavin and his team of "Scam hunters" from Coinintelligence.  "No other company that we've scrutinised has ever done it with the purpose of making the report public," said On Yavin. "This is an unprecedented level of transparency, in an industry that claims to value transparency, but often remains secretive."


The 16-page report verifies, among other things, our impressive numbers, and statistics. In March we confirmed over 2.25 million IOS and Android Electroneum app downloads, today that figures stands at 2.5 million. On Yavin also confirmed 89,000 mobile top ups with ETN had taken place and today that number is almost 150,000. Electroneum users have also completed over 290,000 person to person, app-to-app instant transfers.


"After taking a close look at Electroneum, its metrics, data and various other facts, we believe it is one of the companies with a real chance to succeed among the crypto companies existing in the industry," the report highlights.


We believe that no other cryptocurrency has the guts to take the unprecedented step of allowing an internal review with the purpose of publishing for everybody to see. We feel proud of our commitment to transparency and our statistics have now been fully verified by a trusted third party. There aren't many cryptos that can say that.


Access the full 16-page report and the Cointelegraph featured article.


AIBC Digital Summit

After participating in the very successful Anon Summit online event earlier this month, I'd like to invite you to our next event, the AIBC Digital Summit on 10th June. Sign up is completely free, courtesy of the organisers and I will be participating in a panel discussion on "The Next Financial System" at 12:15 CEST.


The summit promises to bring the latest trends in AI, Blockchain and other Emerging Technologies to the same virtual table, to discuss, learn and do business with each other. For the full list of speakers, click here.


We look forward to seeing you there.


Thanks,


Richard Ells

CEO and Founder of Electroneum

 
 

30-34 Lyndean House, Albion Place, Maidstone, ME14 5DZ, United Kingdom

FacebookTwitterYouTubeInstagram


Click this link to unsubscribe


{~AK9106353933714669423114zzzzz649ace77e72ca9346c8250413c9a3aada7c5b04b6eb2717c6646c6ea3341d7b596~}

[Pensé] I remember an interview of the creator of the Sina.com, Wang Zhidong, it was the 90s, an ancient story, he said that in the future everyone would be on the Internet. He didn't lie. Ref.: Magazine Redigest.


[Pensé] I can't hate China, but sometimes they make a lot of mistakes.

[Pensé] The TikTok that bothered me because it gave "Money" for each installation completed. Nobody gives money. I don't believe in the privacy of "Kids", I believe in something bigger.

[Pensé] I love it when I'm right! Ref. Tik...

ENC: Daily Investor Update: U.S. senators urge probe of TikTok on children's privacy


De: Reuters
Enviada em: ‎29/‎05/‎2020 17:02
Para: pedrodefilho1995@gmail.com
Assunto: Daily Investor Update: U.S. senators urge probe of TikTok on children's privacy

U.S. senators urge probe of TikTok on children's privacy

Four U.S. senators, including a China hawk, urged the Federal Trade Commission on Friday to investigate allegations that the popular video app TikTok violated a consent decree protecting children's privacy.

Oil surges 5% on U.S.-China trade optimism, falling crude output

Oil prices soared on Friday, with U.S. futures closing out May with record monthly gains, on hopes that the U.S.-China trade deal would remain intact and on falling crude production.

Stocks pare losses after Trump's Hong Kong response

Global stocks fell while bonds and the euro climbed on Friday as investors turned cautious over China's national security law on Hong Kong, but U.S. stocks pared earlier losses after President Trump did not announce any new retaliatory tariffs.

Lyft violates Washington DC sick day law during pandemic, lawsuit claims

Lyft Inc was sued on Friday by a former driver who accused the ride-sharing company of failing to provide required paid sick leave to drivers in Washington, D.C., a policy she said could fuel the spread of the coronavirus.

S&P 500 up in choppy action after Trump comments on China

The S&P 500 was up in late, choppy trading Friday after President Donald Trump made comments on China that appeared less worrisome for the U.S. economy than investors apparently had feared.

Tencent in talks to buy Warner Music stake: WSJ

Chinese internet giant Tencent Holdings Ltd is in talks to invest $200 million in Warner Music Group, ahead of the record company's slated initial public offering next week, the Wall Street Journal reported https://www.wsj.com/articles/tencent-in-talks-to-buy-warner-music-stake-11590774885 on Friday.

Morgan Stanley plans June return of some traders to New York headquarters: CNBC

Morgan Stanley is planning to start getting some traders to return to its New York headquarters in mid- to late-June, CNBC reported on Friday, citing people with knowledge of the situation.

Los Angeles union, joined by 'Pandemic Pig,' demands meatpacking plant closure

The union representing workers at a meatpacking plant near Los Angeles where at least 153 employees have come down with COVID-19 called on Thursday for the plant's immediate closure, saying measures to control the outbreak were not working.

Coffee maker JDE Peet's IPO wrapped up in just 72 hours: sources

It took just three days to sell shares in JDE Peet's as investors facing a dearth of opportunities because of the coronavirus-induced slow-down rushed to secure a dose of the world's No. 2 maker of packaged coffee.

Coronavirus sinks U.S. consumer spending; savings hit record high

U.S. consumers cut spending by the most on record for the second straight month in April while boosting savings to an all-time high, and the growing frugality reinforced expectations the economy could take years to recover from the COVID-19 pandemic.

Related Videos

Introducing the all-new
Reuters News app

The new Reuters News app is here, redesigned from the ground up to fit your busy life.

Get it now on iOS