Thứ Sáu, 29 tháng 6, 2018

Youtube daily google Jun 29 2018

Hello everyone. This is Lou from screenshot Tuto. Today a video specially for Madame Tortue,

how to integrate a map into a google sites. Madame Tortue is creating a site for her students for the new year

and perhaps she will need to insert a card. For that I'm already creating a new page,

I will call it location. It can serve, of course, to institutes that want to google sites or

a person who has a physical shop and who wants

indicate the address.

I go to the insert tab, I select map, I fall here on

the map offered by google, the map of the world and I will choose an address a little bit random.

Let's say I want

tell visitors that they can locate me in Nancy rue de la Craffe, I

give the name of the street.

I have the map that appears and I just click on select.

The map is now

implanted on my google sites.

I can grow or shrink the tile if I wish.

And then nothing prevents you from doing a little text tile next to enter additional data,

like the exact address, if it's a shop, your store opening hours for example,

by clicking on text and then you enter your little text here.

When you're done and do not forget to click publish your page

and then check that the rendering on the published site and well meets your expectations.

So here is my little page location that appears the plan with a small accompanying text.

This is the end of this video. I hope it has been helpful to you. A little click I like always happy.

Do not hesitate to subscribe to activate the bell and I will tell you very soon for a new tutorial.

For more infomation >> Comment intégrer une carte dans un Google Sites - Duration: 2:53.

-------------------------------------------

FALLO FARE A GOOGLE: Aspettativa VS Realtà - Duration: 2:48.

For more infomation >> FALLO FARE A GOOGLE: Aspettativa VS Realtà - Duration: 2:48.

-------------------------------------------

GOOGLE MAPS'TE UZAYA GİTMEK !? - Duration: 6:03.

For more infomation >> GOOGLE MAPS'TE UZAYA GİTMEK !? - Duration: 6:03.

-------------------------------------------

#Google Adwords 2018 Update|Google AdWords Will Soon Become Google Ads| Telugu Tutorials✔️ - Duration: 2:12.

www.youtube.com/rsccool

www.teluguvpk123.blogspot.com

www.facebook.com/rsccool

google adwords to google-ads

For more infomation >> #Google Adwords 2018 Update|Google AdWords Will Soon Become Google Ads| Telugu Tutorials✔️ - Duration: 2:12.

-------------------------------------------

Google to start testing MAJOR Assistant upgrade change how you make phone calls ● Tech News ● #TECH - Duration: 1:54.

GOOGLE will start testing a major upgrade to its Assistant software that will dramatically

change how you make phone calls.

Last month the tech giant debuted a dramatic improvement to the Google Assistant at its

IO conference that will allow phone calls to be made on behalf of a user.

Dubbed Google Duplex, the technology was shown calling a hair salon and restaurant where

it made relevant bookings the user had specified.

But the scariest part about Duplex was the fact the service on the other end of the phone

had no idea they were talking to artificial intelligence (AI).

Google is hoping that by implementing this technology in the future, laborious tasks

such as booking your favourite restaurant will be automated.

Google has only trained Duplex in three specific areas.

All three will be tested from the coming weeks through the summer, the company has confirmed.

Duplex will first be tested by making calls to businesses about holiday hours.

Then it will discuss restaurant bookings with businesses before calling about hair cut appointments.

In the latest demonstration of the software shown off by Google, the company showed Duplex

has made a number of changes since it was first shown off last month.

Google is testing Duplex in the US but has already run into potential problems that could

hamper a fully-fledged rollout of the service.

The tech giant does not have the permit for Duplex to work in Texas.

Google has not announced when Duplex will be made available to the public, but when

it does it will surely change how all Google Assistant users make phone calls.

For more infomation >> Google to start testing MAJOR Assistant upgrade change how you make phone calls ● Tech News ● #TECH - Duration: 1:54.

-------------------------------------------

Connect FileMaker to Google | gManipulator plug-in - Duration: 3:03.

For more infomation >> Connect FileMaker to Google | gManipulator plug-in - Duration: 3:03.

-------------------------------------------

†: Some things I got wrong with JS Safe 2.0 - Google CTF 2018 - Duration: 5:30.

So after I posted my video write-up about the JS Safe challenge from the Google CTF

I got a lot of valuable feedback and some corrections, that I think deserves a very

quick update video.

If you haven't seen that one, this video makes probably not that much sense, so check

that out first.

So let's quickly go through the different points that were raised by viewers.

First: I had this theory that weird JavaScript namespacing due to the with statement caused

the different x values to be passed to the function.

Onetime it was the function itself, onetime it is the parameter.

But it turns out I got FOOLED!

Those are not the same character.

The function name x is a regular ascii x, it is the same character as the x in the hex

variable and so forth.

But the parameter x is actually a different unicode, it's a cyrillic x.

Visually it looks exactly the same, but for the computer it's like it is a completely

different letter and this a very different variable.

And by searching for that cyrillic x you see that the parameter is used in the inner x,

but it's not the x outside.

What do we learn from that?

Let's not always assume JavaScript is f'ed up, that's actually very logical and probably

works in any language exactly like that.

The second kind of correction I got was about the cause for the crash.

I couldn't really make sense of it and theorized it had to do with some kind of recursive call

of toString or something, but it turns out, it is in fact triggered by the toString, but

crashes for a very different, much more logical reason.

So source is a regex, it's not a string.

You see it starts and ends in a slash, not quotes.

And the c function takes the length of the first parameter a, and a in this case is source

and a regex doesn't have a length.

So if you write the loop like this, loop until i is equal to the length of source, then yeah,

that never happens.

The length of source is undefined.

I will never be undefined.

So you have an endless loop that freezes the tab too long and gets killed.

Now if it was written like you usually see a for loop, with a less than, then i would

not be less than undefined and the loop would never run.

So what do we learn here?

Read the code more carefully, if I had debugged that properly I would have understood that

better.

I actually thought about the regex vs a string for a bit, but mostly because of toString

and wondered what kind of effect that could have.

And I was also confused by the weird way the for loop is written, but I ignored it as a

style choice of the author.

So I saw all the traces, but didn't get to the correct conclusion.

Shame on me.

And another feedback I got was about my comment on namespacing.Saying that the let statement

binds variables to a block scope and I should use that instead, however in this case a var

variable would have achieved the same result in terms of not influencing eachother, because

var binds to the function scope and h is it's own function.

However in principle there is a difference.

Let binds even stronger to a block.

So for example inside and outside of a loop.

Here just a quick example to show that var works here as well.

So this is basically the skeleton of the JS safe code to test the variable scoping.

We have a function that contains another function and a for loop.

The for loop uses a to count up, and the function inside here also uses a.

I added some console log output to see the value of a.

Now in this base example a is counted up to a thousand, which makes the global value of

a 1000 and that is then also still used inside the function h.

And setting a in there also influences the a outside.

If we now add the var statement as I suggested in the video then the scoping would change

slightly, separating the a inside of the function h from the other a.

So a at this point is obviously undefined and setting it also doesn't affect the global

a.

The same result is achieved with using let here, and sure let is also a good solution,

however if I'm nitpicky, I'd argue that in this case we don't want block level separation,

we want to separate a based on the function used.

And in this case I think var is the better choice?

Anyway.

I'm not a javascript expert.

Based on how completely wrong I read and interpreted the code, it's actually a surprise that

I was able to solve it.

So I guess this is an example that you don't always have to understand everything to solve

an issue, as long as you identify the core and approach it systematically.

Awesome, now all confusions I had about this challenge are cleared up.

The challenge and the code makes total sense now.

Thanks so much for your input, I always appreciate it, even if I get the same comment dozens

of times, I always learn from it and I can't repeat it often enough.

I'm so glad that I can put my work out there and not only show something cool to others,

but get feedback that helps me to improve as well.

For more infomation >> †: Some things I got wrong with JS Safe 2.0 - Google CTF 2018 - Duration: 5:30.

-------------------------------------------

Android Studio 3.2 Beta, Flutter Release Preview 1, & much more! TL;DR 117 - Duration: 2:15.

For more infomation >> Android Studio 3.2 Beta, Flutter Release Preview 1, & much more! TL;DR 117 - Duration: 2:15.

-------------------------------------------

Meet Technical Writers at Google - Duration: 2:12.

Hi I'm Matt Werner and I'm a Technical Writer here at Google.

My name is Peggy and I am a Technical Writer here at Google. I'm Scott and I'm

a Technical Writer. So a Technical Writer does a lot of things at Google. Our core

role is to write documentation. It's someone who takes technical information and

converts it into easy-to-understand help content. Technical writing is about

helping people accomplish something without any roadblocks, without any

barriers. We are the user advocates, we are their proxies, so we stand in for

them during product development, during the design process, and we voice what we

think would make the product better for them and all of that is translated into

our documentation. Sometimes technical writing is more like

deleting. You just have to get rid of the information that's getting in the way

and help people accomplish what they want. So it's not just online help, it

could also be user guides, tutorials videos, training, error messages in the

UI, things of that nature. It's an opportunity to design and communicate in

new creative ways.

So I feel that I've made an impact when I know that the customer is successful,

that I'm delivering the user the information that they need to know. We

really want to help our end users have the best experience with our products,

making sure that we're messaging Google's products correctly to all these

different audiences and making sure that we're having the most impact. I absolutely

believe my work helps people because you get to work from technology

that is changing the world. It's been a very eye-opening experience kind of

working with people of different languages, different cultures, different

backgrounds, really work on making sure that we're messaging Google's products

correctly to all these different audiences and making sure that we're

having the most impact. Technical jargon, easy speak, that's the goal.

For more infomation >> Meet Technical Writers at Google - Duration: 2:12.

-------------------------------------------

Prasanta Chandra Mahalanobis Google Doodle - Duration: 1:30.

The Search Engine Google is showing a Doodle for Prasanta Chandra Mahalanobis' 125th

Birthday in India.

Prasanta Chandra Mahalanobis was born on 29th June 1893.

He was an Indian scientist and applied statistician.

He is best remembered for the Mahalanobis distance, a statistical measure, and for being

one of the members of the first Planning Commission of free India.

He made pioneering studies in anthropometry in India.

He founded the Indian Statistical Institute, and contributed to the design of large-scale

sample surveys.

Mahalanobis belonged to a family of Bengali landed gentry who lived in Bikrampur.

His grandfather Gurucharan moved to Calcutta in 1854 and built up a business, starting

a chemist shop in 1860.

Many colleagues of Mahalanobis took an interest in statistics.

An informal group developed in the Statistical Laboratory, which was located in his room

at the Presidency College, Calcutta.

On 17 December 1931 Mahalanobis called a meeting with Pramatha Nath Banerji.

Mahalanobis died on 28 June 1972, a day before his seventy-ninth birthday.

Even at this age, he was still active doing research work and discharging his duties as

the Secretary and Director of the Indian Statistical Institute and as the Honorary Statistical

Advisor to the Cabinet of the Government of India.

For more infomation >> Prasanta Chandra Mahalanobis Google Doodle - Duration: 1:30.

-------------------------------------------

Prasanta Chandra Mahalanobis Google Doodle in India - Duration: 2:29.

The Search Engine Google is showing this Doodle in India for Prasanta Chandra Mahalanobis'

125th Birthday. Prasanta Chandra Mahalanobis was an Indian

scientist and applied statistician. He is best remembered for the Mahalanobis distance,

a statistical measure, and for being one of the members of the first Planning Commission

of free India.

Mahalanobis Distance is one of the most widely used metric to find how much a point diverges

from a distribution, based on measurements in multiple dimensions. It is widely used

in the field of cluster analysis and classification.

Prasanta Chandra Mahalanobis made pioneering studies in anthropometry in India. He founded

the Indian Statistical Institute, and contributed to the design of large-scale sample surveys.

Mahalanobis received his early schooling at the Brahmo Boys School in Calcutta, graduating

in 1908. He joined the Presidency College, Calcutta where he was taught by teachers who

included Jagadish Chandra Bose, and Prafulla Chandra Ray.

Mahalanobis received a Bachelor of Science degree with honours in physics in 1912. He

left for England in 1913 to join the University of London.

After missing a train, he stayed with a friend at King's College, Cambridge. He was impressed

by King's College Chapel and his friend suggested that he could try joining there, which he

did. He did well in his studies at King's, but also took an interest in cross-country

walking and punting on the river. He interacted with the mathematical genius Srinivasa Ramanujan

during the latter's time at Cambridge. After his Tripos in physics, Mahalanobis worked

with C. T. R. Wilson at the Cavendish Laboratory.

He took a short break and went to India, where he was introduced to the Principal of Presidency

College and was invited to take classes in physics

After returning to England, Mahalanobis was introduced to the journal Biometrika. This

interested him so much that he bought a complete set and took them to India. He discovered

the utility of statistics to problems in meteorology and anthropology, beginning to work on problems

on his journey back to India

For more infomation >> Prasanta Chandra Mahalanobis Google Doodle in India - Duration: 2:29.

-------------------------------------------

Connect FileMaker to Google | Integrate with Tasks Using gManipulator - Duration: 5:39.

For more infomation >> Connect FileMaker to Google | Integrate with Tasks Using gManipulator - Duration: 5:39.

-------------------------------------------

Bijan dominasi carian Google Malaysia - Duration: 2:45.

 PETALING JAYA: Orang ramai pastinya tidak terkejut sekiranya diberitahu perkataan 'Bijan' mendominasi carian di Google pada Rabu (27 Jun)

 Ia sekali gus menyingkirkan carian utama yang banyak berkisar mengenai saingan Piala Dunia 2018 di Rusia sejak beberapa hari lalu

 Semakan mendapati terdapat lebih 100,000 entri carian untuk perkataan 'bijan' termasuklah 'Bijan Bag', 'Bijan Handbag' dan 'House of Bijan'

 Turut mendahului senarai carian tertinggi pada Rabu ialah 'Mexico vs Sweden' (lebih 100,000 carian) diikuti 'Switzerland vs Costa Rica' di tangga ketiga (20,000 carian) dan 'Maradona' (10,000 carian)

 Trend carian di Google sejak kebelakangan ini lebih menjurus kepada perlawanan Piala Dunia 2018 yang sedang hangat berlangsung

 Selain Google, perkataan 'Bijan' turut menjadi trending di laman Twitter pada Rabu

 Orang ramai mula membuat carian selepas pihak polis mendedahkan beg tangan jenama Bijan yang ditempah khas sebagai salah satu item mewah dalam rampasan melibatkan harta benda bekas Perdana Menteri, Datuk Seri Najib Tun Razak

 Rampasan dibuat berikutan siasatan skandal 1Malaysia Development Berhad (1MDB) yang sedang dijalankan

 The House of Bijan dikenali sebagai gedung termahal di dunia.  Berpangkalan di Beverly Hills, Los Angeles, jenama keluaran Amerika ini menggunakan material berkualiti yang diperbuat daripada kulit buaya dan kanggaru

For more infomation >> Bijan dominasi carian Google Malaysia - Duration: 2:45.

-------------------------------------------

Easily save websites using the Wakelet Extension in Google Chrome - Duration: 1:05.

hi everyone this is Brad today we're taking a look at the way clip extension

and just how easy it is to use let's say you want to hold on to this link for the

Phillies being in Nationals 4 to 3 what you can do is go ahead up to the weight

cut extension select it you can see the box score comes up here

and you can either create a new wake or a new collection or go ahead into

baseball select save the item has now been saved in wake let we're gonna go

now into the site itself we're just gonna refresh it we will now select

baseball when it comes back up here what's like baseball you can see there

are two items there and these two items aren't the 23rd and the 28th just right

now when the Phillies beat the Nationals don't forget to share it I need to do is

select right up here you can see these options that come up or you could even

embed if you would like to so there you go that's how easy it is to use the way

clip extension in chrome if you have any questions let me know thanks for

watching take care bye bye

For more infomation >> Easily save websites using the Wakelet Extension in Google Chrome - Duration: 1:05.

-------------------------------------------

This Apple iPhone X rumor is actually great news for the Google Pixel 3 ● Tech News ● #TECH - Duration: 2:07.

The second half of the year will bring us a bunch of new flagship handsets, including

the Galaxy Note 9, new iPhone models, and the Pixel 3.

In fact, we're now seeing rumors detailing these products on a daily basis.

But it's rare to see a report about the next-gen iPhone bring good news to Pixel fans

looking forward to buying one of this year's Pixel 3 handsets.

A report from the South China Morning Post says that Apple is considering using LG Display-made

OLED screens in between 2 million and 4 million iPhone X Plus units.

This isn't the first time LG is rumored to be joining Samsung when it comes to OLED

suppliers for the iPhone, but LG is apparently closer than ever to landing the deal.

How is this important to Google and the Pixel fan base?

Well, the Pixel 3 XL, which will have an iPhone X-like design, is said to pack an OLED screen

made by LG.

Last year's Pixel 2 XL also had an LG OLED screen on board, but that screen was the source

of unexpected controversies.

Various performance issues forced early reviewers to rethink their conclusions.

Google heard the criticism and issued software updates to fix the various problems.

The Pixel 2, which packs a Samsung OLED screen, wasn't affected by the same problems.

In fact, Samsung at a time ran a TV commercial about the quality of its own OLED screens.

If Apple is happy with LG's display tech, then it must mean the South Korean company

has made significant improvements when it comes to building OLED screens for smartphones.

LG, of course, already makes excellent OLED screens for TVs, so it's about time we see

LG OLED screens in more handsets, 2018 iPhone models included.

For more infomation >> This Apple iPhone X rumor is actually great news for the Google Pixel 3 ● Tech News ● #TECH - Duration: 2:07.

-------------------------------------------

Chèn dữ liệu từ AhaChat vào Google Sheet bằng IFTTT - Duration: 8:24.

For more infomation >> Chèn dữ liệu từ AhaChat vào Google Sheet bằng IFTTT - Duration: 8:24.

-------------------------------------------

Google leaps on the platform formerly known as Firefox with $22m splurge for KaiOS - Duration: 3:01.

 The Linux formerly known as Firefox OS has become the fastest-growing phone platform in 2018, and is expected to be in around 100 million devices by the end of the year

Now KaiOS has received a huge boost from Google.  Google has made a $22m Series A investment in the company that develops the platform, San Diego-based KaiOS Inc

 KaiOS is unashamedly a feature phone platform, which can run happily in phones with just 256MB of RAM

Only it's a feature phone OS that supports modern features such as 4G. This means devices can reach price points that Android can't, which is something mobile networks like

 It's a fork of the B2G or "Boot to Gecko" project, which itself is a fork of the Firefox OS that the Mozilla Foundation launched to great fanfare at Mobile World Congress in 2013

Mozilla abandoned its plans to compete in smartphones in December 2015.  Google will invest in KaiOS Inc to ensure search, YouTube and Maps come to KaiOS devices

Nokia's revived 8110 uses KaiOS  According to Medianama, KaiOS surpassed Apple iOS in market share in India, thanks to giant operator Reliance's range of Jio phones

But it only started to make an impact in the West after HMD Nokia opted to put it in its revived "Banana Phone", the 8110, this year

 Feature phones are making a remarkable comeback in 2018, Medianama notes. Sailfish OS is targeted at this niche most pundits thought was dead – or not interesting enough to write about

 KaiOS is only just rolling out app stores for developers. Coders write in HTML5 and CSS

You can find out more here. ®

Không có nhận xét nào:

Đăng nhận xét