Podcasts about Google Developers

Google Developers information and code(RDS)

  • 90PODCASTS
  • 110EPISODES
  • 43mAVG DURATION
  • ?INFREQUENT EPISODES
  • Mar 18, 2025LATEST
Google Developers

POPULARITY

20172018201920202021202220232024


Best podcasts about Google Developers

Latest podcast episodes about Google Developers

Hacker Public Radio
HPR4337: Open Web UI

Hacker Public Radio

Play Episode Listen Later Mar 18, 2025


This show has been flagged as Explicit by the host. OpenWebUI notes ... Open WebUI installer: https://github.com/freeload101/SCRIPTS/blob/master/Bash/OpenWebUI_Fast.bash Older Professor synapse prompt you can use: https://raw.githubusercontent.com/freeload101/SCRIPTS/refs/heads/master/Prof%20Synapse%20Old.txt Fabric prompts you can import into openwebui !!! ( https://github.com/danielmiessler/fabric/tree/main/patterns ) https://github.com/freeload101/SCRIPTS/blob/master/MISC/Fabric_Prompts_Open_WebUI_OpenWebUI_20241112.json Example AT windows task startup script to make it start and not die on boot https://github.com/freeload101/SCRIPTS/blob/master/MISC/StartKokoro.xml Open WebUI RAG fail sause ... https://youtu.be/CfnLrTcnPtY Open registration Model list / order NAME ID SIZE MODIFIED hf.co/mradermacher/L3-8B-Stheno-v3.2-i1-GGUF:Q4_K_S 017d7a278e7e 4.7 GB 2 days ago qwen2.5:32b 9f13ba1299af 19 GB 3 days ago deepsex:latest c83a52741a8a 20 GB 3 days ago HammerAI/openhermes-2.5-mistral:latest d98003b83e17 4.4 GB 2 weeks ago Sweaterdog/Andy-3.5:latest d3d9dc04b65a 4.7 GB 2 weeks ago nomic-embed-text:latest 0a109f422b47 274 MB 2 weeks ago deepseek-r1:32b 38056bbcbb2d 19 GB 4 weeks ago psyfighter2:latest c1b3d5e5be73 7.9 GB 2 months ago CognitiveComputations/dolphin-llama3.1:latest ed9503dedda9 4.7 GB 2 months ago Disable Arena models Documents WIP RAG is not good . Discord notes; https://discord.com/channels/1170866489302188073/1340112218808909875 Abhi Chaturvedi: @(Operat0r) try this To reduce latency and improve accuracy, modify the .env file: Enable RAG ENABLE_RAG=true Use Hybrid Mode (Retrieval + Reranking for better context) RAG_MODE=hybrid Reduce the number of retrieved documents (default: 5) RETRIEVAL_TOP_K=3 Use a Fast Embedding Model (instead of OpenAI's Ada-002) EMBEDDING_MODEL=all-MiniLM-L6-v2 # Faster and lightweight . Optimize the Vector Database VECTOR_DB_TYPE=chroma CHROMA_DB_IMPL=hnsw # Faster search CHROMA_DB_PATH=/root/open-webui/backend/data/vector_db. Optimize Backend Performance # Increase Uvicorn worker count (improves concurrency) UVICORN_WORKERS=4 Increase FastAPI request timeout (prevents RAG failures) FASTAPI_TIMEOUT=60 Optimize database connection pool (for better query performance) SQLALCHEMY_POOL_SIZE=10 So probably the first thing to do is increase the top K value in admin -> settings -> documents, or you could try the new "full context mode" for rag documents. You may also need to increase the context size on the model, but it will make it slower, so you probably don't want to do that unless you start seeing the "truncating input" warnings. @JamesK So probably the first thing to do is increase the top K value in admin -> settings -> documents, or you could try the new "full context mode" for rag documents. You may also need to increase the context size on the model, but it will make it slower, so you probably don't want to do that unless you start seeing the "truncating input" warnings. M] JamesK: Ah, I see. The rag didn't work great for you in this prompt. There are three hits and the first two are duplicates, so there isn't much data for the model to work with [9:12 PM] JamesK: context section I see a message warning that you are using the default 2048 context length, but not the message saying you've hit that limit (from my logs the warning looks like level=WARN source=runner.go:126 msg="truncating input prompt" limit=32768 prompt=33434 numKeep=5 [6:06 AM] JamesK: If you set the env var OLLAMA_DEBUG=1 before running ollama serve it will dump the full prompt being sent to the model, that should let you confirm what the rag has put in the prompt JamesK: Watch the console output from ollama and check for warnings about overflowing the context. If you have the default 2k context you may need to increase it until the warnings go away [8:58 PM] JamesK: But also, if you're using the default rag, it chunks the input into small fragments, then matches the fragments against your prompt and only inserts a few fragments into the context, not the entire document. So it's easily possible for the information you want to not be present. Auto updates echo '0,12 */4 * * * docker run --rm --volume /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower --run-once open-webui' >> /etc/crontab Search red note for API keys Go to Google Developers, use Programmable Search Engine , and log on or create account. Go to control panel and click Add button Enter a search engine name, set the other properties to suit your needs, verify you're not a robot and click Create button. Generate API key and get the Search engine ID . (Available after the engine is created) With API key and Search engine ID , open Open WebUI Admin panel and click Settings tab, and then click Web Search Enable Web search and Set Web Search Engine to google_pse Fill Google PSE API Key with the API key and Google PSE Engine Id (# 4) Click Save Note ​ You have to enable Web search in the prompt field, using plus ( + ) button. Search the web ;-) Kokoro / Open Webui https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html https://github.com/remsky/Kokoro-FastAPI?tab=readme-ov-file apt update apt upgrade curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg && curl -s -L https://nvidia.github.io/libnvidia-container/stable/deb/nvidia-container-toolkit.list | sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list sed -i -e '/experimental/ s/^#//g' /etc/apt/sources.list.d/nvidia-container-toolkit.list sudo apt-get update sudo apt-get install -y nvidia-container-toolkit apt install docker.io -y docker run --gpus all -p 8880:8880 ghcr.io/remsky/kokoro-fastapi-gpu:v0.2.2 http://localhost:8880/v1 af_bella Import fabric prompts https://raw.githubusercontent.com/freeload101/Python/46317dee34ebb83b01c800ce70b0506352ae2f3c/Fabric_Prompts_Open_WebUI_OpenWebUI.py Provide feedback on this episode.

Karachi Wala Developer
I am now a Google Developer Expert in Machine Learn (GDE ML) for GenAI

Karachi Wala Developer

Play Episode Listen Later Apr 14, 2024 6:25


This episode covers my journey as a GDE over the last few years, what got me into it, and what is the big outcome. Also joined another category for GDE in Machine Learning.

A Bootiful Podcast
Google Developer Advocate, Java legend, Alexis Moussine Pouchkine

A Bootiful Podcast

Play Episode Listen Later Nov 16, 2023 40:12


Hi, Spring fans! Happy Thanksgiving to those who celebrate! Have you tried out Spring Boot 3.2? It comes out NEXT week on the 23rd! Get the bits and try them out now! https://start.spring.io This week I am joined by Google Developer Advocate, Java legend, Alexis Moussine Pouchkine (@alexismp)

Let's Data
#046 - Vinícius Caridá - Transição da carreira acadêmica para o mercado, MVP Microsoft, Google Developer Expert e AWS Hero

Let's Data

Play Episode Listen Later Nov 6, 2023 76:30


Neste episódio conversamos com Vinícius Caridá, especialista em inteligência artificial e hoje Superintendente da Comunidade de Atendimento do Itaú Unibanco, além de ser professor na FIAP de MBA de Data Science, IA e Business Intelligence.Falamos sobre a sua transição da carreira acadêmica para o mercado, de como o Itaú Unibanco tem usado inteligência artificial nos seus projetos, sua experiência como professor da FIAP e as comunidade que ele organiza de AWS e TensorFlow. Foi um papo muito bacana com ele que já foi MVP Microsoft, Google Developer Expert e AWS Hero.

Marketer.ge Podcast
საინტერესო პოდკასტი | მზადება საიუბილეო DevFest-ისთვის

Marketer.ge Podcast

Play Episode Listen Later Sep 27, 2023 56:12


საქართველოში IT კომუნა DevFest-ის მეათე, საიუ ბილეო გამოშვებისთვის ემზადება. 2012 წელს Google-ის მხარდაჭერით, Google Developers Group (GDG)-ის ბაზაზე შექმნილი ღონისძიება, მაშინ ერთ-ერთი პირველი კომუნა იყო, რომელიც ქართველ დეველოპერებს აერთიანებდა. ამ წლების განმავლობაში გაიზარდა როგორც მასზე დამწრეთა, ასევე იმ ქართველ სპიკერთა რაოდენობაც, რომლებიც დამსწრეებს საკუთარ გამოცდილებას და ცოდნას უზიარებენ. მეტიც, შარშან DevFest, „საქართველოს ბანკის“ მხარდაჭერით ტერიტორიულადაც გაფართოვდა და 400 დელეგატს ქუთაისმა უმასპინძლა. მეათე საიუბილეო ფესტივალი, რომელიც 1 ოქტომბერს, თავისუფალ უნივერსიტეტში ჩატარდება ორგანიზატორების თქმით ყველა მხრივ გამორჩეული იქნება - დამატებითი სივრცეები პანელური დისკუსიებისთვის, ვორქშოფებისთვის და გასართობად ამ დღეს ყველასთვის განსაკუთრებულ გამოცდილებად აქცევს. საინტერესო პოდკასტის სტუმარები არიან საქართველოს ბანკის ციფრული საბანკო მომსახურების დეპარტამენტის დირექტორის მოადგილე გიორგი ვახტანგიშვილი და DevFest-ის თანაორგანიზატორი, Google Developers ექსპერტი ტატო კუტალია, რომლებთან ერთადაც ვსაუბრობთ აღნიშნული ფესტივალის ისტორიაზე და 2023 წლის პროგრამაზე წამყვანი: ჯაბა შავიშვილი, ციფრული პროდუქტების მენეჯერი

Now in Android
86 - Google Play at I/O, Pixel Fold and Tablet, Google Developer Expert, & more!

Now in Android

Play Episode Listen Later Jul 13, 2023 4:50


Welcome to Now in Android, your ongoing guide to what's new and notable in the world of Android development. Today, we're covering updates from the top three things in Google Play at I/O 2023, Pixel Fold and Pixel Tablet, AndroidX releases, what it means to be a Google Developer Expert, and more! For links to these items, check out Now in Android #86 on Medium → https://goo.gle/46KA6XI  Now in Android podcast → https://goo.gle/2BDIo9y             Now in Android articles → https://goo.gle/2xtWmsu           Now in Android playlist → https://goo.gle/now-in-android             Subscribe to Android Developers YouTube → https://goo.gle/AndroidDevs 

Entre Dev y Ops Podcast
EDyO 78 - Google Developer Experts

Entre Dev y Ops Podcast

Play Episode Listen Later Jun 24, 2023


En el episodio 78 del podcast de Entre Dev y Ops hablaremos sobre con Laura Morillo-Velarde Rodríguez, Google Developer Expert en Google Cloud Platform Blog Entre Dev y Ops - https://www.entredevyops.es Telegram Entre Dev y Ops - https://t.me/entredevyops Twitter Entre Dev y Ops - https://twitter.com/entredevyops LinkedIn Entre Dev y Ops - https://www.linkedin.com/company/entredevyops/ Patreon Entre Dev y Ops - https://www.patreon.com/edyo Enlace afiliados Amazon Entre Dev y Ops - https://amzn.to/2HrlmRw Enlaces comentados: Google Developer Experts - https://developers.google.com/community/experts/ Women Techmakers - https://developers.google.com/womentechmakers Flutter - https://flutter.dev/ Google Cloud Platform - https://cloud.google.com/ Google Developer Group - https://developers.google.com/community/gdg/ Seedtag - https://www.seedtag.com/ OVH - https://www.ovhcloud.com/ TensorFlow - https://www.tensorflow.org/ Kubernetes - https://kubernetes.io/ Raspberry Pi - https://www.raspberrypi.org/ Google Next - https://cloud.withgoogle.com/next Twitter Kelsey Hightower - https://twitter.com/kelseyhightower Kubecon - https://www.cncf.io/kubecon-cloudnativecon-events/ Grails - https://grails.org/ Groovy - http://www.groovy-lang.org/ Duet AI for Google Cloud - https://cloud.google.com/blog/products/application-modernization/introducing-duet-ai-for-google-cloud Tech & Ladies Podcast - https://twitter.com/TechandLadies GDG Spain podcast - https://www.ivoox.com/podcast-gdg-spain-podcast_sq_f1715151_1.html

Fuel Your Marketing Podcast with Arti Sharma| Marketing Podcast for CEO's, Business Owners, Entrepreneurs and Modern Marketer

One of the trends we've seen in 2023 is the use of AMPs or Accelerated Mobile Pages. They provide a seamless experience to users which can lead to higher conversion rates and sales for businesses. However, there are also some downsides you need to consider before applying them to your business. In this episode, Arti Sharma wraps up the 2023 SEO series by talking about AMPs or Accelerated Mobile Pages. She shares the pros and cons of using them to help you make the right decision if you should hop on this trend for your business. Listen and learn in this episode!   KEY TAKEAWAYS FROM THIS EPISODE Accelerated Mobile Page (AMP) is an open-source framework developed by Google Developers that allows web developers to create fast loading lightweight versions of web pages for mobile devices. Why businesses are using AMPs? AMPs are designed to load quickly and provide a smooth, seamless user experience on mobile devices, which can improve user engagement rates.  Faster loading times tend to rank higher in search results, so implementing AMP can improve a website's ranking and visibility. AMPs are eligible to be displayed in the top stories at the top of Google search results, which can increase the visibility and credibility of a website.  Improved user experience and faster loading time lead to a better experience, which can lead to better conversions and sales.   Some downsides of using AMPs: Limited functionality Reduced control over the site's appearance May impact SEO negatively if not done properly (according to some experts) Creating separate versions of pages may lead to content duplication and potential penalties from search engines Privacy concerns   Make the right decision by weighing the pros and cons of AMPs and analyzing what is the right fit for your business. If you liked this episode of Fuel Your Marketing, tell your friends! Find us on iTunes and Google Play to rate/review/subscribe to the show. Want more? Visit our website, and find us on Facebook, Instagram, and YouTube! iTunes: http://ow.ly/Ihl350xDn8M Google Play: http://ow.ly/sPag50xDn8T Spotify: http://ow.ly/bt0g50xDn8Q Our Podcast Portal: http://ow.ly/ogQK50xDn8S  

Flying High with Flutter
Advanced Flutter Networking - Flying High with Flutter #105

Flying High with Flutter

Play Episode Listen Later Apr 5, 2023 47:37


Hi everyone, we had a great time with Mouaz Al-Shahmeh. Mouaz is an experienced Software Engineer and is also a Google Developer for Flutter & Dart. Mouaz will be sharing his knowledge on Advanced Flutter Networking. Check out the episode and share it with your friends.Resources:https://medium.com/@m.m.shahmehhttps://github.com/Eng-Mouaz-M-AlShahmehhttps://developers.google.com/profile/u/mouaz_m_shahmehOn the show:

People of AI
Machine Learning on the web

People of AI

Play Episode Listen Later Mar 30, 2023 29:17


Meet Jason Mayes, the public face of Web ML at Google and host of Made With TensorFlow.js. Join us as we talk about Jason's journey and mission to make machine learning easy, fun and accessible on the web and how getting into the field of machine learning has never been easier.      Made With TensorFlow.js Playlist: http://goo.gle/made-with-tfjs  Learn Web ML on Google Developers: https://goo.gle/Learn-WebML  Connect with Jason on LinkedIn: https://goo.gle/3zcift1  Connect with Jason on Twitter: https://goo.gle/3Xh6MT7  Connect with Jason on Discord: https://goo.gle/3zeoMU1  Guest bio:  Jason Mayes is the public face of Web ML at Google. He helps web engineers around the globe take their first steps with machine learning in JavaScript, pushing the boundaries of what's possible in web-based machine learning which has grown exponentially. He also combines his knowledge of the technical and creative worlds to develop innovative prototypes for Google's largest customers and internal teams with over 15 years experience working within web engineering and investigating emerging technologies.   #AI #ML #MadeWithTFJS #WebML

The Clear Evidence
Solution Challenge 2023 – Google Developer Student Clubs (English)

The Clear Evidence

Play Episode Listen Later Mar 24, 2023 3:53


The Clear Evidence Table of contents Overview Prizes Timeline Google Developer Student Clubs Overview Evaluation Criteria United Nations 17 Sustainable Development Goals Rules Register: 2023 Solution Challenge | Google Developers Audio / Podcast in Urdu/English Auto-Generated Translation in Urdu Participants are challenged to create a project using Google technologies that contribute to solving one or more of the United Nations‘ 17 Sustainable Development Goals. The top 100 teams receive customized mentorship from Google and experts to take solutions to the next level, branded swag, and a certificate. The top 10 finalists receive additional mentorship, a swag box, and the opportunity to showcase their solutions to Google teams and developers all around the world during the virtual 2023 Solution Challenge Demo Day, live on YouTube. Contest finalists – In addition to the swag box, each individual from the seven teams not in the top three will receive a Cash Prize of $1,000 per student. Winnings for each qualifying team will not exceed $4,000. Top 3 winners – In addition to the swag box, each individual from the top 3 winning teams will receive a Cash Prize of $3,000 and a feature on the Google Developers Blog. Winnings for each qualifying team will not exceed $12,000 Submit Solution: 17th to 31st March 2023 Top 100 Teams Selection: May Top 10 Finalists Selection: June Top 3 Winners Announced: August Google Developer Student Clubs are community groups for university students interested in Google developer technologies. The challenge is open to the members of these clubs. There are over 1,900 clubs in 111 countries. Evaluation criteria include the impact of the solution, the clarity of the problem statement and UN Sustainable Development goals, feedback from users and testing, and the adequacy of the solution in addressing the challenge identified by the team. No Poverty Zero Hunger Good Health and Wellbeing Quality Education Gender Equality Clean Water and Sanitation Affordable and Clean Energy Decent Work and Economic Growth Industry, Innovation and Infrastructure Reduced Inequalities Sustainable Cities and Communities Responsible Consumption and Production Climate Action Life Below Water Life On Land Peace, Justice and Strong Institutions Partnerships for the Goals Rules You do not need to have a team formed yet to register. Each individual should fill out a separate form. Participants must form a 1 to 4 person team, with at least one student who attends the university associated with the Google Developer Student Club, and ideally with a varied set of technical and soft skills. To join a club, participants can either find a club at their college or university or join the closest one through the community event platform. Participants can use the Resources page to brainstorm ideas and support their technical skills. Participants must design the user interface and backend technology, with resources available on the website to help with planning and design. Participants must test the solution, collect feedback by showcasing the project to others, iterate on the design and technology based on feedback, and record a demo video. Register: 2023 Solution Challenge | Google Developers Continue Reading: Solution Challenge 2023 - Google Developer Student Clubs (English, Urdu) - The Clear Evidence

Programar es una Mierda
Epiosiod 105 - ¿Cómo llegar a ser Google Developer Expert?

Programar es una Mierda

Play Episode Listen Later Dec 2, 2022 80:42


Hoy nos acompaña nuestra amiga Carmen Ansio (@carmenansio) y nos explicará cómo es el proceso para convertirse en Google Developer Expert. Presentan: Juanjo Meroño y Àlex Ballesté Música: www.dilo.org

Women Who Code Radio
WWCode Conversations #65: Setting Yourself up for Success: Fireside Chat with an Android Expert

Women Who Code Radio

Play Episode Listen Later Oct 26, 2022 28:00


Madona Wambua, Senior Android Engineer at Western Governors University and Lead at Women Who Code, sits down for a Fireside chat with Moyinoluwa Adeyemi, Moyin for short, Senior Software Engineer at Twitter focused on Android development, and Google Developer Expert for Android. They discuss aspects of working at a startup versus a big tech company, the value of community, and the importance of a brag document.

Let's Data
#025 - Mikaeri Ohana - O caminho para se tornar um Google Developer Expert e um Microsoft MVP

Let's Data

Play Episode Listen Later Oct 24, 2022 66:58


Neste episódio conversamos Mikaeri Ohana, Gerente de Produto de Dados na multinacional CI&T, Microsoft MVP e Google Developer Expert. Ela trabalha há mais de 7 anos com TI e produz conteúdo sobre Data Science e Machine Learning. Conversamos sobre o que é, onde vive e do que se alimenta um Google Developer Expert e um Microsoft MVP (Most Valuable Professional). Dados seriam sua principal refeição matinal?

How Does It Work?
Pakistan's First Female Google Developer Expert Ft. Aqsa Kausar | EP13

How Does It Work?

Play Episode Listen Later Sep 16, 2022 38:42


Host Shayan Mahmud in conversation with Aqsa Kausar, Head of Artificial Intelligence & Machine Learning at Red Buffer! Aqsa is not just the first woman in Pakistan to become a Google Developer Expert (GDE) but also the first female GDE in machine learning in the Southeast Asia Frontier region! In this podcast episode, Aqsa talks about the tech community in Pakistan, raising awareness of machine learning in Pakistan, women in tech in our country, engineer jobs in Pakistan and so much more on artificial intelligence!Aqsa explains the Google Developer Expert title in detail. What is it exactly? How does Google support you in getting this achievement? How does Google support tech awareness in your community? What are the advantages for people in the Google Develop Expert network? How hard is it to get? How many people achieve this? How do you apply for GDE? She explains her journey of going through the process of getting this title, where her interest in artificial intelligence and machine learning came from, how much self-learning was involved, where was she first working and how she made a switch to artificial intelligence.Shayan and Aqsa's discussion also touches on topics like the number of women in engineering and those going into tech, jobs for electrical engineers in Pakistan, the importance of failure, university students' mindset of joining big companies, the learning and open culture at Red Buffer, having the wow factor and more on Aqsa's personal journey.#HowDoesItWork #Technology #Google00:00 Intro & Highlights02:31 Getting the Google Developer Expert Title03:44 How to Become A Google Developer Expert09:30 Public Speaking For the First Time12:30 Women in Tech & Engineering  16:50 The Importance of Setbacks in Your Journey19:14 Does Success Mean Joining A Big Company?21:03 The Culture at Red Buffer24:50 Ratio of Men & Women in Employment27:30 Meeting the Husband at Work30:10 The Support Women Need to Succeed35:15 What NextDon't forget to subscribe and press the bell icon to catch some amazing conversations coming your way every Tuesday and Friday!Keep up with our podcast:Facebook: https://www.facebook.com/Howdoesitwork.podcastInsta: https://www.instagram.com/howdoesitwork.podcast/Tiktok: https://vt.tiktok.com/ZSRYSy1K1/Follow ProPakistani:Facebook: https://www.facebook.com/ProPakistaniInsta: https://www.instagram.com/pro_pakistani/Twitter: https://twitter.com/ProPakistaniPKLinkedIn: https://www.linkedin.com/company/propakistani-pk/Check out Red Buffer and the work they do: https://redbuffer.ai/You can also audio stream our podcast here:Google Podcast: https://bit.ly/3z6AGPiApple Podcast: https://apple.co/3b9GQGuSpotify: https://spoti.fi/3OFNm5H

Deep Dive into Local Search & SEO
Last Week in Local 9/6/22

Deep Dive into Local Search & SEO

Play Episode Listen Later Sep 6, 2022 35:28


Mike's Links:Gigaverse - https://podcasts.apple.com/us/podcast/radiolab/id152249110?i=1000577438045A rural Minnesota self-serve grocery store could be a model for other food deserts - https://www.npr.org/2022/07/14/1111577588/a-rural-minnesota-self-serve-grocery-store-could-be-a-model-for-other-food-deserAmazon Warehousing & Distribution is the company's latest foray into logistics - https://www.freightwaves.com/news/amazon-warehousing-distribution-is-coming-in-2023Small Business Summit - https://business.amazon.com/en/events/small-business-summit?ref=b2b_sow_lp_events_sbm22_smt_abtnav_822How to Write Meta Descriptions | Google Search Central  |  Documentation  |  Google Developers - https://developers.google.com/search/docs/advanced/appearance/snippetNew Product Guidelines for Local Businesses - Stefan Somborac on Twitter - https://twitter.com/stefansomborac/status/1564594145137725441?s=12&t=z1bep5MEleYWRyJhe-yhewGuidelines for representing your business on Google - Google Business Profile Help - https://support.google.com/business/answer/3038177?hl=enThe helpful content update is going to cause so much confusion - https://www.mariehaynes.com/the-helpful-content-update-is-going-to-cause-so-much-confusion/Google testing Review Attribute Content - Colan Nielsen on Twitter - https://twitter.com/colannielsen/status/1563650137846603781PSA: Google Posts Rejections - Mike Blumenthal on Twitter - https://twitter.com/mblumenthal/status/1564712176903938048Google's Cloud Vision Nanny Bot - Mike Blumenthal on Twitter - https://twitter.com/mblumenthal/status/1566036315531087874Google fixes from names on Messages - Colan Nielsen on Twitter - https://twitter.com/ColanNielsen/status/1565764152836104200?s=20&t=j4mChrxt9OBkghuW4w93vACarrie's LinksWondering if your business is eligible for a Google Business Profile? - shared by Stefan Somborac on Twitter - https://support.google.com/contributionpolicy/answer/12473822https://localu.org/nov2   - tickets just $125, scholarships available

Last Week in Local: Local Search, SEO & Marketing Update from LocalU

Mike's Links:Gigaverse - https://podcasts.apple.com/us/podcast/radiolab/id152249110?i=1000577438045A rural Minnesota self-serve grocery store could be a model for other food deserts - https://www.npr.org/2022/07/14/1111577588/a-rural-minnesota-self-serve-grocery-store-could-be-a-model-for-other-food-deserAmazon Warehousing & Distribution is the company's latest foray into logistics - https://www.freightwaves.com/news/amazon-warehousing-distribution-is-coming-in-2023Small Business Summit - https://business.amazon.com/en/events/small-business-summit?ref=b2b_sow_lp_events_sbm22_smt_abtnav_822How to Write Meta Descriptions | Google Search Central  |  Documentation  |  Google Developers - https://developers.google.com/search/docs/advanced/appearance/snippetNew Product Guidelines for Local Businesses - Stefan Somborac on Twitter - https://twitter.com/stefansomborac/status/1564594145137725441?s=12&t=z1bep5MEleYWRyJhe-yhewGuidelines for representing your business on Google - Google Business Profile Help - https://support.google.com/business/answer/3038177?hl=enThe helpful content update is going to cause so much confusion - https://www.mariehaynes.com/the-helpful-content-update-is-going-to-cause-so-much-confusion/Google testing Review Attribute Content - Colan Nielsen on Twitter - https://twitter.com/colannielsen/status/1563650137846603781PSA: Google Posts Rejections - Mike Blumenthal on Twitter - https://twitter.com/mblumenthal/status/1564712176903938048Google's Cloud Vision Nanny Bot - Mike Blumenthal on Twitter - https://twitter.com/mblumenthal/status/1566036315531087874Google fixes from names on Messages - Colan Nielsen on Twitter - https://twitter.com/ColanNielsen/status/1565764152836104200?s=20&t=j4mChrxt9OBkghuW4w93vACarrie's LinksWondering if your business is eligible for a Google Business Profile? - shared by Stefan Somborac on Twitter - https://support.google.com/contributionpolicy/answer/12473822https://localu.org/nov2   - tickets just $125, scholarships available

Assistant On Air
The future of Google Assistant

Assistant On Air

Play Episode Listen Later Aug 23, 2022 7:58


In this episode of Assistant on Air, Toni Klopfenstein, Developer Relation Engineer, welcomes Allen Firstenberg, Google Developer Expert for Google Assistant, to chat about the future of Google Assistant and the pivot towards focusing on App Actions for Android applications. Allen shares the benefits of App Actions for developers, users, and features to incorporate in the future.    Watch this episode on YouTube → https://goo.gle/3Cu3Knm  Resources:  Conversational Action Sunset →  https://goo.gle/ca-sunset  App Action Docs → https://goo.gle/appactions-docs  App Action Codelabs → http://goo.gle/appactions-codelabs   App Action videos → http://goo.gle/appactions-videos  App Action Samples → http://goo.gle/appactions-samples    Watch more episodes of Assistant on Air → https://goo.gle/2X0nBqG   Subscribe to Google Developers → https://goo.gle/developers  #AssistantOnAir

Blind Android Users Podcast
Blind Android Users Podcast Episode 89, Android 13 Stable Version lands for Qualifying Pixel Phones

Blind Android Users Podcast

Play Episode Listen Later Aug 21, 2022 78:18


Welcome to Episode 89: Android13 Stable lands for Qualifying Pixel Phones In this episode, we focus on the August 15 stable Android13 landing for qualifying Pixel phones. We also talked about things you ought to know after getting the update. You can choose to opt out of the Beta before September, that, meaning you will not be part of the “QPR”—Quarterly Platform Releases betas that Google pushes out for those in the program. So, in order not to be part of that, then after you update to the stable release, then navigate to this page and opt out of the beta. We also discussed the fact that if you have a Tensor-powered phone, e.g., Pixel6, Pixel6Pro and the just released Pixel6A, according to this Google Developer page, that you wouldn't be able to unroll back to Android 12 if you wanted to do so. The page does not tell us why, but according to this article from Android Police, the reason behind this is owed to an exploit in the Bootloader of the Tensor-powered phones running Android12; thus, resulting in the anti-rollback as doing so, would reintroduce that exploit. Announcements · We now have a PayPal URL for those of you who have not been able to donate to the cause because of not being to use the “Buy me a coffee” URL. You can now instead, use the PayPal method if that is easier for you. · We also want to thank Chris Gilland, another person, and some other person from India who have generously donated to the cause. · We appreciate each and everyone that has donated to the cause or is thinking about it. · Also, we want to thank those of you who are not able to donate something but still listen to us and read our forum emails. We are thankful to each and every one! Spotlight: In the “Spotlight,” we focus on the landing of the Android13 for the qualifying Pixel phones as described above. APP OF THE WEEK: For the “App of the week,” Warren demonstrates “Focus Reader,” and excellent RSS Reader. Talkback Highlights: Warren brings us instalment 49 from the theme of “Highlights from Talkback” and this time, it is the sixth entry under the 4-finger-gesture heading. Staying in touch. Email us with suggestions or comments, Send inyour Android journey stories, subscribe to our Email list, join our Telegram group, follow us on Twitter,subscribe to our Youtube and rumble channels and join our Club on Club house.

Tiaras and Tech
Being a Google Developer Expert with Maureen Josephine

Tiaras and Tech

Play Episode Listen Later Aug 16, 2022 44:59


In this episode of the Tiaras and Tech podcast, Shelley Benhoff talks to Maureen Josephine, Google Developer Expert on the topic of Being a Google Developer Expert. Shelley is a Business Owner, Author, and Professional Speaker. She is also a Sitecore Technology MVP with experience as a Lead Developer for many years. Intro Hello, Gems! Welcome to another episode of Tiaras and Tech. I'm your host, Shelley Benhoff, and today I'm talking to Maureen Josephine, Flutter Engineer, and Google Developer Expert. We talked about what the tech industry looks like in Kenya, her amazing accomplishment as the first female GDE in Kenya, and her affinity for fashion. Without further ado, onto the episode! Connect with Maureen! Twitter: https://twitter.com/J_Akello LinkedIn: https://www.linkedin.com/in/maureen-josephine-605127a9/ Tambua Women in Tech Socials Twitter: https://twitter.com/W_TechShoutOuts Instagram: https://www.instagram.com/w_techshoutouts/ LinkedIn: https://www.linkedin.com/company/women-in-tech-shoutouts/ Fireside Chats: https://www.youtube.com/channel/UCAhsktTF6b8WagxFObpg6Xw Connect with Shelley! https://twitter.com/sbenhoff https://pluralsight.pxf.io/mgGLbO Join the Tiaras and Tech Discord https://discord.gg/7aeDjXqV8y Tiaras and Tech is dedicated to providing inspiration for women & marginalized groups in tech. We aim to provide support, celebrate successes, & discuss how we're treated. Follow us! YouTube, Twitch, Twitter, TikTok, Instagram, Pinterest @tiarasandtech tiarasandtech.com Tiaras and Tech is a HoffsTech production. Theme music by Nobuo Uematsu and Juan Medrano https://ocremix.org/remix/OCR03610 --- Support this podcast: https://anchor.fm/tiaras-and-tech/support

Assistant On Air
How to integrate Wear OS with App Actions

Assistant On Air

Play Episode Listen Later Aug 16, 2022 7:00


App Actions is the nexus that enables users to quickly access an app's functionality with just their voice. But what if we told you incorporating App Actions on your smart watch was a possibility too? In this podcast, we'll explore how App Actions works with Wear OS apps. Specifically, we'll take a look at how App Actions and Wear OS work together to voicify media based and fitness apps alike. Overall, this video will demonstrate the value of adding Assistant functionality to your apps on Wear OS devices, and how it enables users to have a unified voice experience between their phone and smart watch!    Resources:    App Action Docs → https://goo.gle/appactions-docs  App Action Codelabs → http://goo.gle/appactions-codelabs   App Action videos → http://goo.gle/appactions-videos  App Action Samples → http://goo.gle/appactions-samples   Watch more episodes of Assistant on Air → https://goo.gle/2X0nBqG   Subscribe to Google Developers → https://goo.gle/developers    #AssistantOnAir

Assistant On Air
How Google Assistant works with Android for Cars

Assistant On Air

Play Episode Listen Later Aug 9, 2022 12:47


In this episode of Assistant on Air, Developer Relations Engineer Jessica Earley-Cha and Google Assistant Product Manager Madhukar Srivastava chat about how Google Assistant enhances the Android for Cars experience with voicified apps. Specifically, they'll speak to how to incorporate Google Assistant on their Android Auto and Android Automotive OS apps. Watch this episode of #AssistantOnAir on YouTube → https://goo.gle/3QB2pyL   Resources:  App Action Docs → https://goo.gle/appactions-docs  App Action Codelabs → http://goo.gle/appactions-codelabs   App Action videos → http://goo.gle/appactions-videos  App Action Samples → http://goo.gle/appactions-samples Watch more episodes of Assistant on Air → https://goo.gle/2X0nBqG   Subscribe to Google Developers → https://goo.gle/developers    #AssistantOnAir

Smart Cherrys Thoughts
Chatting with Senior Software Architect at NearForm, Microsoft MVP, Google Developer Expert Michele

Smart Cherrys Thoughts

Play Episode Listen Later Jul 28, 2022 34:03


Michele Riva said about he as software architect, Microsoft MVP, Google Developer Expert, International Speaker and answered some of my questions. --- This episode is sponsored by · Anchor: The easiest way to make a podcast. https://anchor.fm/app

Assistant On Air
Using Google Assistant with Android

Assistant On Air

Play Episode Listen Later Jul 12, 2022 7:01


In this podcast, Developer Relations Engineers Jessica Earley Cha and Toni Klopfenstein sit down and talk about how to build for Google Assistant and its latest updates. They talk about Google Assistant's role within the Android space, Android voice development, and the different ways in which Google Assistant easily  integrates and works with Android applications.   Subscribe to Google Developers → https://goo.gle/developers

GotTechED
Skills and Edtech for Teachers Who Use Technology and the Coaches Who Support Them

GotTechED

Play Episode Listen Later Jul 4, 2022 52:59


GotTechED the Podcast Episode #115: Skills and Edtech for Teachers who Use Tech and the Coaches who Support them Welcome back to GotTechED the podcast this is Episode 115 called “Skills and EdTech for Teachers who use Technology and the Tech Coaches Who Support Them” In this episode, we'll share 10 skills for teachers who use tech and the coaches that support them. We'll also share some great edtech to aid in both of these roles. This is another episode you don't want to miss, check it out. Segment 1: UpdatesTeachbetter podcasters network Summits Segment 2: Skills and ToolsKnowledge in the field Strong PLN Degree Find some “go-to” podcasts on edtech Subscribe to email newsletters like https://developers.google.com/newsletter (Google Developer) https://edu.google.com/intl/ALL_us/for-educators/certification-programs/product-expertise/educator-level1/?modal_active=none (Google for Education certifications) Framework https://fcit.usf.edu/matrix/ (Technology Integration Matrix) https://www.powerschool.com/blog/samr-model-a-practical-guide-for-k-12-classroom-technology-integration/ (SAMR) http://www.tpack.org/ (TPACK) TPACK is a technology integration framework that identifies three types of knowledge instructors need to combine for successful edtech integration—technological, pedagogical, and content knowledge (a.k.a. TPACK). While TPACK is often compared with the SAMR Model, they are very different in scope. EdTech Integration Plan Problem Solving Goal Setting Start the year with a plan to implement something new you haven't done before (newsletter, etc) How to integrate technology into the classroom? https://drive.google.com/file/d/16hx07sVpfsVh51yI4togmdsxtOlOcXhg/view?usp=sharing (Mentor-based Learning System) How does Nick work with teachers? Badge System / Being available and approachable Organization of Possibilities A list of activities that are easily matched up with various content areas Escape Room https://docs.google.com/document/u/0/d/1yHJTjGlhurRtKhetXCiCbUfbtfpgHoBVkNC3-zvm6DU/edit (Google Sites) https://www.google.com/forms/about/ (Google Forms) https://www.google.com/sheets/about/ (Google Sheets) PDF's Password Protected Documents https://pdfcandy.com/ (PDF Candy) Formative Assessments https://quizizz.com/ (Quizizz) https://quizlet.com/ (Quizlet) https://www.gimkit.com/ (Gimkit) https://www.blooket.com/ (Blooket) https://www.quizalize.com/ (Quizalize) Digital Annotation https://www.kamiapp.com/ (Kami) https://insertlearning.com/ (Insert Learning) Google drawings Jamboard Google slides QR Code Scavenger Hunts Murder Mystery Parties Pecha kucha  Classroom games  Stop motion Curation A list of district or school approved edtech tools with or without district subscriptions An easy way for teachers to request approval and subscriptions SSO Service for staff and students https://www.classlink.com/ (Classlink) and https://clever.com/ (Clever) Scheduling Make sure to tell people often when you're available Peruse the hallway Give options for how people can reach you (email, zoom, meet, office hours drop-in) https://calendly.com/ (Calendly) Communication Asynchronous Communication vs Synchronous F2F Email Screencasts (Keep it quick with screencastify, did you know windows has a screencast tool built in?) How-to Guides https://www.myedtechbundle.com/product-page/iorad (Iorad) https://www.myedtechbundle.com/product-page/scribe (Scribe) https://www.myedtechbundle.com/product-page/tango (Tango) Classroom Management Solo teaching with support vs team teaching Classroomq  Making Connections Get on social media - Twitter, Insta for elementary Follow https://www.teachthought.com/technology/top-education-hashtags/ (common hashtags) Start showing up to your local EdTech PD circuit Reflection Collect best practices Showcase the accomplishments Share with PLC and...

Choses à Savoir TECH
Google : une secte adepte d'art et de sexe au cœur de l'entreprise ?

Choses à Savoir TECH

Play Episode Listen Later Jun 26, 2022 2:55


C'est une drôle d'histoire (mais qui ne fait pas rire tout le monde) que l'on a décidé de vous raconter aujourd'hui. Un employé de Google Developers affirme qu'une secte religieuse exerce une influence démesurée sur l'environnement de travail de son unité. Une influence qu'il a décidé de dénoncer en trainant son employeur en justice. Tous les détails, genèse et conséquence dans cet épisode.Kevin Loyd, c'est le nom de cet employé à qui l'on doit cette histoire. « Fellowship of Friend », la confrérie des amis en Français, c'est le nom de la secte que ce dernier a décidé d'envoyer en justice suite à son licenciement. Dans le détail, Kevin Loyd porte plainte contre Google pour licenciement abusif, discrimination, représailles et préjudice psychologique. Mais pour comprendre davantage cette histoire, il faut revenir aux années 1970, quand cette confrérie a été créé par l'Américain Robert Earl Burton. Aujourd'hui, l'organisation compte plus de 1500 membres. Un tiers d'entre eux vivent d'ailleurs à proximité d'une énorme villa à Oregon House, en Californie, avec pour philosophie la théorie du développement personnel de la Quatrième Voie, autrement dit, ces adeptes pensent qu'un état de conscience total peut être atteint par la connaissance des beaux-arts. Dès lors, la confrérie collectionne des œuvres d'art, notamment des antiquités chinoises et monte de nombreux spectacles d'opéras, de théâtre ainsi que des concerts.Au sein de Google Developers, Kevin Loyd explique que 12 employés sont membres de la secte. Certains d'entre eux étaient d'ailleurs très actifs au sein de l'entreprise, notamment lors d'événements où ils prenaient des photos, jouaient de la musique et proposaient même des massages. Une omniprésence inquiétante pour le plaignant, qui, dès qu'il a décidé d'en parler, a été licencié. À noter que ce n'est pas la première fois que la secte est mêlée à la justice. En 1984, plusieurs jeunes membres de l'organisation ont porté plainte contre Burton pour harcèlement sexuel... En 1996, un jeune a lui aussi porté plainte contre le fondateur pour conduite inappropriée alors qu'il était encore mineur. De son côté, Google a affirmé que vérifier l'identité religieuse des employés est à l'encontre de ses principes, mais a aussi dit que les plaintes de Kevin Loyd allaient être examinées sérieusement. Le procès ne fait que commencer. Hébergé par Acast. Visitez acast.com/privacy pour plus d'informations.

All Angular Podcasts by Devchat.tv
NgRx with Google Developer Expert, Tomas Trajan - AiA 347

All Angular Podcasts by Devchat.tv

Play Episode Listen Later Jun 23, 2022


All Angular Podcasts by Devchat.tv
NgRx with Google Developer Expert, Tomas Trajan - AiA 347

All Angular Podcasts by Devchat.tv

Play Episode Listen Later Jun 23, 2022 62:24


Tomas Trajan, Google Developer Expert for Angular and Web technologies, joins the show today to discuss NgRx and best practices.  They deliberate the main integrations for NgRx with Angular, various implementation strategies, and more.  This is an exciting conversation you won't want to miss! In this Episode… NgRx overview NgRx best practices NgRx and Angular implementation  Sponsors Top End Devs Raygun | Click here to get started on your free 14-day trial Coaching | Top End Devs Links Level Up Your NgRx Skills With 10 Time-Tested Best Practices Tomas Trajan - Medium LinkedIn: Tomas (Trajan) Herich Angular Workshops Angular Experts Picks Charles- Marvel's Guardians of the Galaxy Game | SQUARE ENIX Charles - Top End Devs Conferences Charles - Top End Devs Meetups Subrat- Mindset: The New Psychology of Success Tomas - Huberman Lab

Adventures in Angular
NgRx with Google Developer Expert, Tomas Trajan - AiA 347

Adventures in Angular

Play Episode Listen Later Jun 23, 2022


Adventures in Angular
NgRx with Google Developer Expert, Tomas Trajan - AiA 347

Adventures in Angular

Play Episode Listen Later Jun 23, 2022 62:24


Tomas Trajan, Google Developer Expert for Angular and Web technologies, joins the show today to discuss NgRx and best practices.  They deliberate the main integrations for NgRx with Angular, various implementation strategies, and more.  This is an exciting conversation you won't want to miss! In this Episode… NgRx overview NgRx best practices NgRx and Angular implementation  Sponsors Top End Devs Raygun | Click here to get started on your free 14-day trial Coaching | Top End Devs Links Level Up Your NgRx Skills With 10 Time-Tested Best Practices Tomas Trajan - Medium LinkedIn: Tomas (Trajan) Herich Angular Workshops Angular Experts Picks Charles- Marvel's Guardians of the Galaxy Game | SQUARE ENIX Charles - Top End Devs Conferences Charles - Top End Devs Meetups Subrat- Mindset: The New Psychology of Success Tomas - Huberman Lab

Down South IT Podcast
My Two Cents - Google I/O Announcements

Down South IT Podcast

Play Episode Listen Later May 14, 2022 11:35


On this episode I talk about all the announcements made at this year's Google Developer's Conference.

Talking Tech - Vision Australia Radio
Talking Tech 10th May 2022

Talking Tech - Vision Australia Radio

Play Episode Listen Later May 10, 2022 14:58 Transcription Available


Strap Technology and the New ARA O&M device   ARA is a Chest wearable Sonar and LIDAR system which can be used with a cane or guide dog or without where you feel comfortable. 6 sonar and 3 LIDAR senses. Gives feedback to the user via haptic (vibration) feedback for changes in ground surface including stairs, in front and above head hight. Also has a straight line mode. Ground sensing can be turned off to allow use with a cane or guide dog. All self contained, learning mode, and easy to operate. Can connect to wifi to update, 48hrs of use, and mobile app coming later.   You can preorder now by paying $50 US with a total cost of $500 US or wait for the actual launch which is May 27 2022 and pay a total of $750 US.  Units to start shipping in July 2022.   Pre-order Webinar held on the last week of April.   https://www.youtube.com/watch?v=x1K-GrkXY_M   Website   Where you can either pre-order or order.   https://strap.tech   As always, use any type of O&M device with commonsense and if concerned, consult a specialist.     Google IO May 11 2022   Yes, it is time for the yearly Google Developers conference where we should hear about Android 13, and possibly some new hardware.   https://www.cnet.com/tech/mobile/google-io-2022-what-you-need-to-know-before-next-week/?ftag=COS-05-10aaa0b&UniqueID=037E284E-CC84-11EC-95DE-75CE96E8478F&TheTime=2022-05-05T14:59:50&PostType=link&ServiceType=twitter   Hearables   Never thought this category of wearables existed, but they do, ear phones and assist in hearing assistance, not to be confused with hearing aids or the noise or transpenren transperency function found in ear phones like the AirPods Pro.   https://www.reviewgeek.com/114421/what-are-hearables/   SONOS May be Getting Its Own Personal Assistant by June this Year   Everyone seems to be suggesting that “Hey Sonos” will be coming in June 1 so you can control your Sonos smart speaker, guess we'll wait and see what happens.,   https://www.digitaltrends.com/home-theater/sonos-voice-control-google-assistant-amazon-alexa/?utm_source=dlvr.it&utm_medium=twitter   Fun Game, Sound Matching   Just a bit of fun, match sounds in a grid which you can make bigger and also increase the number of sounds to be matched: a good old fashion memory game. It is also free.   https://www.applevis.com/apps/ios/games/sound-matching   What You Need to Know About Vampire Sucking energy Devices   Just some food for thought in this article about devices that may not be as in a  standby mode as you may think and could be chewing or sucking up power over the year.   https://www.abc.net.au/news/2022-05-02/vampire-appliances-electronics-sucking-your-wallet-dry/101022106   Support this Vision Australia Radio program: https://www.visionaustralia.org/donate?src=radio&type=0&_ga=2.182040610.46191917.1644183916-1718358749.1627963141 See omnystudio.com/listener for privacy information.

Young Creators Podcast: Behind the Product met Rens Gingnagel
Job Harmsen, Co-Founder & Head of Design van Polarsteps

Young Creators Podcast: Behind the Product met Rens Gingnagel

Play Episode Listen Later Apr 5, 2022 67:40


In deze aflevering is Job Harmsen te gast. Job is de co-founder en head of design van de reis startup Polarsteps. Polarsteps is een van de weinige succesvolle Nederlandse consumer social apps. Je plant er je trip, trackt je ervaringen en kan er zelfs achteraf een fotoboek printen. We bespreken waarom Polarsteps in de eerste jaren niet aan marketing deed door de sterke ingebouwde distributie. Job legt uit hoe Polarsteps, als reis startup, in het eerste jaar van Corona gek genoeg een record jaar doormaakte. Ook vertelt Job waarom de menselijke reis curators binnen het bedrijf zwaarder tellen dan de algoritmes. Shownotes: - Radical Candor: https://www.amazon.nl/Radical-Candor-Kick-Ass-Without-Humanity/dp/1250235375 - Google Developers over Polarsteps: https://www.youtube.com/watch?v=nYcBqtOwLcg - Job Harmsen Twitter: https://twitter.com/jobharmsen - Polarsteps Twitter: https://twitter.com/polarsteps - Behind the Product Instagram: https://www.instagram.com/btp.fm/ - Behind the Product Twitter: https://twitter.com/RensGingnagel

CloudQuest - A Cloud Gaming Podcast
Stadia WILL be at Google Developer Summit! - SideQuest #56

CloudQuest - A Cloud Gaming Podcast

Play Episode Listen Later Mar 4, 2022 30:57


Google have finally announced Stadia will be at a public event! Sort of... The Google Developer Summit Kicks off on March 15th and Google Stadia will be there! This year the summit looks to have a heavy focus on gaming so Chris and Richie discuss what we could expect to see.If you'd like EARLY ACCESS to SideQuest our YouTube members get the show every Sunday, 6 DAYS EARLY by joining the channel on the members link below.Ukraine Red Cross: https://bit.ly/3Iu5flsWant more Cloud Gaming Content? NEW Podcasts, First Looks, Livestreams and more!

Deep Dive into Local Search & SEO
Last Week in Local 1/24/2022

Deep Dive into Local Search & SEO

Play Episode Listen Later Jan 24, 2022 38:30


 Mike's Links:How Macy's set out to conquer the department store business — and lost - https://www.retaildive.com/news/how-macys-set-out-to-conquer-the-department-store-business-and-lost/608277/Amazon to open first physical clothing store - https://www.retaildive.com/news/amazon-to-open-first-physical-clothing-store/617416/Google deceived consumers about how it profits from their location data, attorneys general allege in lawsuits - https://www.washingtonpost.com/technology/2022/01/24/google-location-data-ags-lawsuit/Gig Workers Were Promised a Better Deal. Then They Were Outsourced - https://www.wired.com/story/gig-economy-outsourcing-uk/Google: SEO Site Migrations Are Hard Because URL Signals Need To Be Forwarded - https://www.seroundtable.com/google-video-site-migrations-32775.htmlUnderstand the screening and verification process - United States - Local Services Help -https://support.google.com/localservices/answer/6226575?hl=en&co=GENIE.CountryCode%3DUnited+StatesGoogle is teaming up with 3C stump for SMB support against Google regulation - https://twitter.com/mblumenthal/status/1483859137293344775?s=12Google Autocomplete: A Complete SEO Guide - https://www.searchenginejournal.com/google-autocomplete-a-complete-seo-guide/251407/?utm_source=twitter&utm_medium=social&utm_campaign=share-back-trafficDeprecation schedule  |  Google Business Profile APIs  |  Google Developers - https://developers.google.com/my-business/content/sunset-datesGoogle's new ederated model for the local API l - https://developers.google.com/my-business/preview/content/upcoming_releasesEverything You Need to Know About the Google Business Profile Manager Agency Dashboard - https://www.sterlingsky.ca/everything-you-need-to-know-about-the-google-business-profile-manager-agency-dashboard/Carries links: Colan Nielsen presenting at Dudacon helping clients grow with local SEO - Tue, Jan 25  1 PM PT -https://t.co/e2kFuzaJYQThe State of Local Search 2022 – January 26, 2021 – 10am ET - Bright Local - https://www.brightlocal.com/the-state-of-local-search-2022-webinar/A Look at Leadferno with Aaron Weiche - 2/8 Webinar -https://us06web.zoom.us/webinar/register/WN_2NQobjHMR3eW1aDRYuuTkQTemporary Move for a Medical Practice | Local Search Forum - Local Search Forum - https://localsearchforum.com/threads/temporary-move-for-a-medical-practice.58590/

Last Week in Local: Local Search, SEO & Marketing Update from LocalU

 Mike's Links:How Macy's set out to conquer the department store business — and lost - https://www.retaildive.com/news/how-macys-set-out-to-conquer-the-department-store-business-and-lost/608277/Amazon to open first physical clothing store - https://www.retaildive.com/news/amazon-to-open-first-physical-clothing-store/617416/Google deceived consumers about how it profits from their location data, attorneys general allege in lawsuits - https://www.washingtonpost.com/technology/2022/01/24/google-location-data-ags-lawsuit/Gig Workers Were Promised a Better Deal. Then They Were Outsourced - https://www.wired.com/story/gig-economy-outsourcing-uk/Google: SEO Site Migrations Are Hard Because URL Signals Need To Be Forwarded - https://www.seroundtable.com/google-video-site-migrations-32775.htmlUnderstand the screening and verification process - United States - Local Services Help -https://support.google.com/localservices/answer/6226575?hl=en&co=GENIE.CountryCode%3DUnited+StatesGoogle is teaming up with 3C stump for SMB support against Google regulation - https://twitter.com/mblumenthal/status/1483859137293344775?s=12Google Autocomplete: A Complete SEO Guide - https://www.searchenginejournal.com/google-autocomplete-a-complete-seo-guide/251407/?utm_source=twitter&utm_medium=social&utm_campaign=share-back-trafficDeprecation schedule  |  Google Business Profile APIs  |  Google Developers - https://developers.google.com/my-business/content/sunset-datesGoogle's new ederated model for the local API l - https://developers.google.com/my-business/preview/content/upcoming_releasesEverything You Need to Know About the Google Business Profile Manager Agency Dashboard - https://www.sterlingsky.ca/everything-you-need-to-know-about-the-google-business-profile-manager-agency-dashboard/Carries links: Colan Nielsen presenting at Dudacon helping clients grow with local SEO - Tue, Jan 25  1 PM PT -https://t.co/e2kFuzaJYQThe State of Local Search 2022 – January 26, 2021 – 10am ET - Bright Local - https://www.brightlocal.com/the-state-of-local-search-2022-webinar/A Look at Leadferno with Aaron Weiche - 2/8 Webinar -https://us06web.zoom.us/webinar/register/WN_2NQobjHMR3eW1aDRYuuTkQTemporary Move for a Medical Practice | Local Search Forum - Local Search Forum - https://localsearchforum.com/threads/temporary-move-for-a-medical-practice.58590/

Smart Cherrys Thoughts
Chatting with Netherlands Angular Google Developer Expert(GDE),Angular Nation Founder Bonnie Brennan

Smart Cherrys Thoughts

Play Episode Listen Later Jan 14, 2022 52:06


Bonnie Brennan said about her work and her work experience and answered some of my questions, she is an amazing talented women I know. --- This episode is sponsored by · Anchor: The easiest way to make a podcast. https://anchor.fm/app

founders netherlands chatting angular google developers google developer expert gde bonnie brennan
Damali Ssali #IdeationCorner
Google Developer Student Lead Tips Uganda to Win the Global Solution Challenge. #IdeationCorner

Damali Ssali #IdeationCorner

Play Episode Listen Later Dec 3, 2021 27:34


Halimah Bukirwa is the Google Developer Student Lead at Makerere University. She is a Software Engineering student with a keen interest in data science, cloud operations, Augmented reality, virtual reality, google cloud and flight software. She was recently placed in the top five teams at the HiPipo's #WomenInFintech Hackathon. #IdeationCorner

Deep Dive into Local Search & SEO
Last Week In Local 11/8/2021

Deep Dive into Local Search & SEO

Play Episode Listen Later Nov 8, 2021 27:21


This week, Mike and Carrie dive into Google's history of product name changes, video best practices, the debate between the value of pipes vs dashes in title tags, how to perform great SEO audits for multi-location businesses, what your reviews say about you, and more!Mike's Links:Same Product, New Name: A History of Google Local Profile Name Changes - https://www.nearmedia.co/a-history-of-google-business-profiles-name-changes/GMB to GBP Summary Analysis - https://www.nearmedia.co/gmb-to-gbp-return-of-gyms-nextdoor-finally-publicgmb-to-gbp-return-of-gyms-nextdoor-finally-public/Google My Business Rebrand - Is it a chance to fix GMB or an opportunity to nuke part of the stack? - https://www.nearmedia.co/ep-40/Google's New Business Profile: When Search Becomes a Political Tool - https://www.nearmedia.co/does-the-gmb-rebranding-mean-more-or-less-than-google-say/Video Best Practices | Google Search Central  |  Google Developers - https://developers.google.com/search/docs/advanced/guidelines/videoCase Study: Should You Add Pipes or Dashes to Your Title Tag? - https://www.semrush.com/blog/case-study-should-you-add-pipes-or-dashes-to-your-title-ag-/Additional Product Shots in local pack results (on Twitter) - https://twitter.com/mblumenthal/status/1457691171078221834?s=12 Carries links:Leveraging Conversions with GMB Bookings/Reserve with Google - Allie Margeson - https://whitespark.ca/blog/gmb-bookings-reserve-with-google/How to Perform Local SEO Audits for Multi-location Businesses - Amanda Jordan - https://academy.brightlocal.com/course/how-to-perform-local-seo-audits-for-multi-location-businessesWhat Are Your Reviews Saying About You? An Analysis Of Over 500 Reviews [Case Study] - Becky Weller - https://www.sterlingsky.ca/reviews-say-about-you-gmb/LocalU Advanced Nov 30, 2021 - Scholarships available through Nov 9 at midnight! Tickets just $99 - https://localu.org/nov30

Tech For Granted
Musings and Monologues: Episode 6: An African Millenial's Perspective On The Future of Technology ft. Roina Ochieng

Tech For Granted

Play Episode Listen Later Sep 24, 2021 83:22


Roina is a Technical Program Manager at Microsoft where she supports the developer experience work on the Microsoft Graph SDKs. Roina is passionate about product, African developer ecosystem, technical talent. She currently writes about Product, African Feminism, Talent, Scala, Kotlin, Java and Flutter. Roina Ochieng previously worked at Sendy, as a Product Manager (Core and Scaling) where she supported a great group of Backend, Frontend and Middleware engineers to build great core infrastructure. At Africa's Talking, she was a Developer Relations Lead and Program Manager where she was in charge of actively headhunting for technical and non-technical talent and developing programs to build an inclusive, diverse, and positively impacting team across Africa. She has worked at Google Developer's Group where she was the Lead Community Organizer, GDG Nairobi and was in charge of organizing community events for over 500 members of the developer ecosystem who span from beginner level developers to industry experts. While at Strathmore University, she was a Lead Community Organizer, GDG Strathmore and she improved student participation in the group's program by 84% and increased female attendance by 124% upon entry as the lead organizer. Roina designed an effective hand-over shadowing training program for handing over the lead organizer to the co-lead for the group to enable the continuation of the group's program despite leadership changeovers and put together a specific rubric for integrating women tech makers events and general events to improve female participation. In this episode, she shares her musings as a monologue on technology in Africa yesterday, today, and beyond. --- This episode is sponsored by · Anchor: The easiest way to make a podcast. https://anchor.fm/app --- Send in a voice message: https://anchor.fm/techforgranted/message Support this podcast: https://anchor.fm/techforgranted/support

44BITS 팟캐스트 - 클라우드, 개발, 가젯
44bits 팟캐스트 120.log : 인덴트코퍼레이션 프리A 투자, CodeCov 깃헙 토큰 유출, Google 검색결과에 AMP 가산점 제거

44BITS 팟캐스트 - 클라우드, 개발, 가젯

Play Episode Listen Later Jul 5, 2021 58:41


44bits 팟캐스트 120번째 로그에서는 44bits 팟캐스트 120.log : 인덴트코퍼레이션 프리A 투자, CodeCov 깃헙 토큰 유출, Google 검색결과에 AMP 가산점 제거에 대해서 이야기를 나누었습니다. 참가자: @nacyo_t, @seapy, @raccoonyy 정기 후원 - 44bits podcast are creating 프로그래머들의 팟캐스트 녹음일 5월 27일, 공개일 7월 5일 쇼노트: https://stdout.fm/120/ 주제별 바로 듣기 00:00 시작 00:38 인덴트코퍼레이션 프리A 투자 유치 06:15 CodeCov 깃헙 토큰 유출 27:24 Google 검색결과에 AMP 가산점 제거 44:24 Mac M1 개발자들이 쓰는것에 대한 이야기 쇼노트 인덴트코퍼레이션 프리A 투자 유치 ‘브이리뷰' 운영사 인덴트코퍼레이션, 45억 규모 프리A 투자 유치 야놀자 나스닥 직행…손정의 2조원 투자 | 한경닷컴 - hankyung.com 인덴트코퍼레이션 채용 페이지 CodeCov 깃헙 토큰 유출 Codecov - The Leading Code Coverage Solution Mercari's Response to the Codecov Vulnerability and Related Notification on Personal Information Exposure | Mercari, inc Google 검색결과에 AMP 가산점 제거 More time, tools, and details on the page experience update - Google Developers Largest Contentful Paint (LCP) - web.dev First Input Delay (FID) - web.dev Cumulative Layout Shift (CLS) - web.dev

Xtrategia Podcast
Ep. 70. Educación, tecnología y movilidad social ascendente en Latinoamérica con Jessica Mercedes

Xtrategia Podcast

Play Episode Listen Later Jun 1, 2021 42:19


En este episodio hablamos con Jessica Mercedes sobre educación y talento tecnológico en Latam. Una súper conversación con una gran mujer y emprendedora del mundo digital latinoamericano. Jessica es emprendedora, actual COO en code inspector, Board Member en Holberton School Colombia y Coderise.org, además inversora de impacto y Advisor en Socialatom Ventures. A través de la firma de inversión de impacto Socialatom Group, Jessica respalda empresas emergentes, programas y organizaciones sin fines de lucro que brindan movilidad social ascendente a través de la tecnología y el espíritu empresarial. Anteriormente, también se desempeñó como directora general de Firstrock Capital, un fondo de capital de riesgo que, además del capital, también conecta al talento de ingeniería con los mercados más grandes del mundo. Jessica es experta en Reclutamiento Técnico, desarrollo y Relaciones Públicas para empresas de tecnología tanto en Estados Unidos como en Latinoamérica. Anteriormente, Jessica ha apoyado la expansión global de marcas como Google Developers, Rackspace, Netflix, Corona y Pepsi. Temas que encontrarás en este episodio: 00:20 Introducción 01:00 La historia de Jessica Mercedes 03:31 ¿Cuál es el propósito de Coderise y Holberton en Latinoamérica? 13:17 ¿Cómo funcionan los modelos híbridos de Holberton School en Colombia? 18:11 Mundo remoto y movilidad social para desarrolladores 19:47 El panorama del telento tech en Latinoamérica 24:08 Retos del ecosistema digital y el telento tech en Latinoamérica. 28:50 Educación tradicional y las necesidades no cubiertas del ecosistema digital. 32:15 Un consejo para emprendedores y para estudiantes tech 39:00 Un libro recomendado No te pierdas este episodio! y recuerda que nos puedes apoyar (click en el botón azul ;)) para seguir contando las historias de nuestros emprendedores, y lo más importante en español! Hazte mecenas de nuestro podcast ;) Nos encuentras también en: Instagram: @xtrategiapodcast Página Web: www.xtrategia.co Correo electrónico: hola@xtrategia.co Escucha el episodio completo en la app de iVoox, o descubre todo el catálogo de iVoox Originals

FOX on Tech
Google Developer Conference Returns

FOX on Tech

Play Episode Listen Later May 19, 2021 1:00


Google is currently holdings its first developer conference since 2019. 

Comsteria Podcast
Google Developer Conference 2021 What You Need To Know

Comsteria Podcast

Play Episode Listen Later May 19, 2021 1:15


Colin Kelly's Digital Minute has the latest from the search giant's 2021 I/O conference. Reaction to some big celebrity announcements And another country gets tough with Amazon

Total Jason (Video)
All About Android 523: Love The Phone You're With

Total Jason (Video)

Play Episode Listen Later May 5, 2021 107:17


Pichai teases 'significant' announcements at Google I/O 2021 as product cycles return to normal Google's I/O schedule is up, featuring a familiar face Here are the seven Google I/O events you'll want to watch Google Nest Hub shows up at Bluetooth SIG running 'Fuchsia 1.0' Google announces 'Pixel Buds A-Series' in inadvertent unveil Google Assistant Will Now Finally Be Able to Say Your Name Correctly Google's next Pixel phone could hop on the ultrawide bandwagon with Samsung and Apple Don't Expect More Software Updates for the Samsung Galaxy S8 New, dodgy Galaxy Z Flip3 and Z Fold3 leaks give us panda Pixel vibes LetsGoDigital did HD renders based on the leaked images Twitter's 'premium' subscription will probably include more than just Twitter Clubhouse for Android is coming very soon as beta tests are now underway Google still struggles with transparency over Play Store app removals Thoughts about the Frame TV Review of the CAT S61 rugged smartphone Read our show notes here: https://bit.ly/3eRCn9n Hosts: Jason Howell, Florence Ion, and Ron Richards Guest: Wesley Faulkner Subscribe to All About Android at https://twit.tv/shows/all-about-android. Get episodes ad-free with Club TWiT at https://twit.tv/clubtwit Sponsors: Gabi.com/ANDROID hover.com/twit

Total Jason (Audio)
All About Android 523: Love The Phone You're With

Total Jason (Audio)

Play Episode Listen Later May 5, 2021 106:47


Pichai teases 'significant' announcements at Google I/O 2021 as product cycles return to normal Google's I/O schedule is up, featuring a familiar face Here are the seven Google I/O events you'll want to watch Google Nest Hub shows up at Bluetooth SIG running 'Fuchsia 1.0' Google announces 'Pixel Buds A-Series' in inadvertent unveil Google Assistant Will Now Finally Be Able to Say Your Name Correctly Google's next Pixel phone could hop on the ultrawide bandwagon with Samsung and Apple Don't Expect More Software Updates for the Samsung Galaxy S8 New, dodgy Galaxy Z Flip3 and Z Fold3 leaks give us panda Pixel vibes LetsGoDigital did HD renders based on the leaked images Twitter's 'premium' subscription will probably include more than just Twitter Clubhouse for Android is coming very soon as beta tests are now underway Google still struggles with transparency over Play Store app removals Thoughts about the Frame TV Review of the CAT S61 rugged smartphone Read our show notes here: https://bit.ly/3eRCn9n Hosts: Jason Howell, Florence Ion, and Ron Richards Guest: Wesley Faulkner Subscribe to All About Android at https://twit.tv/shows/all-about-android. Get episodes ad-free with Club TWiT at https://twit.tv/clubtwit Sponsors: Gabi.com/ANDROID hover.com/twit

All About Android (Video HI)
AAA 523: Love The Phone You're With - Google IO schedule, UWB API, Clubhouse for Android, Premium Twitter

All About Android (Video HI)

Play Episode Listen Later May 5, 2021 107:17


Pichai teases 'significant' announcements at Google I/O 2021 as product cycles return to normal Google's I/O schedule is up, featuring a familiar face Here are the seven Google I/O events you'll want to watch Google Nest Hub shows up at Bluetooth SIG running 'Fuchsia 1.0' Google announces 'Pixel Buds A-Series' in inadvertent unveil Google Assistant Will Now Finally Be Able to Say Your Name Correctly Google's next Pixel phone could hop on the ultrawide bandwagon with Samsung and Apple Don't Expect More Software Updates for the Samsung Galaxy S8 New, dodgy Galaxy Z Flip3 and Z Fold3 leaks give us panda Pixel vibes LetsGoDigital did HD renders based on the leaked images Twitter's 'premium' subscription will probably include more than just Twitter Clubhouse for Android is coming very soon as beta tests are now underway Google still struggles with transparency over Play Store app removals Thoughts about the Frame TV Review of the CAT S61 rugged smartphone Read our show notes here: https://bit.ly/3eRCn9n Hosts: Jason Howell, Florence Ion, and Ron Richards Guest: Wesley Faulkner Subscribe to All About Android at https://twit.tv/shows/all-about-android. Get episodes ad-free with Club TWiT at https://twit.tv/clubtwit Sponsors: Gabi.com/ANDROID hover.com/twit

Maker Journal
From Google Developer to Indie Hacker - #2: Michael Lynch

Maker Journal

Play Episode Listen Later Nov 17, 2020 47:56


Bryan and Aaron sit down with Michael Lynch (@deliberatecoder), the founder of TinyPilot KVM. Michael discusses graduating from Columbia University, backpacking in South America, working for Google and Microsoft, and becoming involved at Indie Hackers.

The Solo Coder Podcast
#16: The Spoken Code with Google Developer Lucas Radaelli

The Solo Coder Podcast

Play Episode Listen Later Dec 3, 2019 34:27


I spoke with Lucas Radaelli, he is a developer that works at Google focusing on Accessibility. Accessibility refers to the design of products, devices, services, and environments so as to be usable by people with impairments like vision, hearing and mobility. Lucas himself is visually impaired. He cannot see. But it didn't stop him from becoming a coder. Interesting enough he is part of the users who benefit from his own work at Google with the Accessibility team, which gives him a very unique perspective. Lucas is a big advocate in the accessibility space. He has spoken at many conference on the subject and recently he has moved from Brazil to the US to become part of the accessibility team at Google. Listen to this conversation to get inspired by Lucas story and to find out how you too can accomplish anything you want no matter what obstacles come in your way. Full show notes and links: https://SoloCoder.com/16

The Big Web Show
Episode 183: Open Source, Google, and WordPress 5.0 with Matt Mullenweg

The Big Web Show

Play Episode Listen Later Jan 1, 2019 52:59


Coder, writer, composer, and founding developer of WordPress Matt Mullenweg is Jeffrey Zeldman's guest. Open Source will save us. The WordPress 5.0 rollout. When Matthew met Jeffrey. Browsers in the age of Blink. AMP & HTML. Gutenberg: blocks and key commands. IE5. Box models. Google: still doing no evil? Links for this episode:Matt Mullenweg (@photomatt) | TwitterMatt Mullenweg – Unlucky in CardsBlog Tool, Publishing Platform, and CMS — WordPressAutomatticBlog — WordPressBringing UX to an open source platform: Redesigning WordPress - studio.zeldmanProgressive Web Apps  |  Web  |  Google DevelopersAMP on Google  |  Google DevelopersThe State of Web Browsers – Ferdy Christant (late 2018)The State of Web Browsers – Ferdy Christant (2019)The Tail End - Wait But WhyBrowser diversity starts with us. | Zeldman on Web & Interaction DesignBrought to you by: Honeybook (Visit Honeybook.com and enter promo code BIGWEBSHOW to get 50% off your first year).