Tag Archives: Google
Google Analytics 4 – migrate to Google Analytics 4.
Go to the Google Analytics website and click on the Admin icon gear. This will open the settings and you will see the GA4 Setup Assistant on the second column named Property. Click on this link and you will see the wizard migrate to the new Google Analytics 4. I want to create a new… Read More »
Google – Use spreadsheet with codepen.
If you want to share your spreadsheet from your Google Drive then you need to have proper security settings. This settings can be done from main menu : File – Share – Publish to web, see the next image: See the Pen google_001 by Cătălin George Feștilă (@catafest) on CodePen. This is a simple example… Read More »
Google Cloud Shell – First steps with google cloud shell.
The first step, take a look at this official webpage to see how you can start Google Cloud Shell. Using the online terminal, you can start using the shell with Google Linux distro like any Linux. Let’s see some information and commands used by Google Cloud Shell:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | $ uname -a Linux cs-771133650849-default-boost-j25gz 5.4.104+ #1 SMP Fri Apr 30 09:52:02 PDT 2021 x86_64 GNU/Linux ... $ apt-get install irssi ******************************************************************************** You are running apt-get inside of Cloud Shell. Note that your Cloud Shell machine is ephemeral and no system-wide change will persist beyond session end. To suppress this warning, create an empty ~/.cloudshell/no-apt-get-warning file. The command will automatically proceed in 5 seconds or on any key. Visit https://cloud.google.com/shell/help for more information. ******************************************************************************** E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root? ... $ sudo su root@cs-771133650849-default-boost-j25gz:/home/catalinfest# apt-get install irssi ******************************************************************************** You are running apt-get inside of Cloud Shell. Note that your Cloud Shell machine is ephemeral and no system-wide change will persist beyond session end. To suppress this warning, create an empty ~/.cloudshell/no-apt-get-warning file. The command will automatically proceed in 5 seconds or on any key. Visit https://cloud.google.com/shell/help for more information. ******************************************************************************** Reading package lists... Done Building dependency tree Reading state information... Done Suggested packages: irssi-scripts The following NEW packages will be installed: irssi 0 upgraded, 1 newly installed, 0 to remove and 7 not upgraded. Need to get 1,177 kB of archives. After this operation, 2,910 kB of additional disk space will be used. Get:1 http://deb.debian.org/debian buster/main amd64 irssi amd64 1.2.0-2 [1,177 kB] Fetched 1,177 kB in 0s (14.7 MB/s) debconf: delaying package configuration, since apt-utils is not installed Selecting previously unselected package irssi. (Reading database ... 116563 files and directories currently installed.) Preparing to unpack .../irssi_1.2.0-2_amd64.deb ... Unpacking irssi (1.2.0-2) ... Setting up irssi (1.2.0-2) ... Processing triggers for man-db (2.8.5-2) ... ... # exit exit $ irssi [1]+ Stopped irssi |
Using the apt-get install package command I… Read More »
Google – Starting development with Google and Google Assistant – part 004.
The tutorial for today is about system entities in Dialogflow. Each intent parameter has a type, called the entity type. Because are many entities then you need a system entity. The system entities allow agents to extract information like address, emails, currency, and phone numbers, favorite options like colors, foods, or any piece of information… Read More »
Google – Starting development with Google and Google Assistant – part 003.
I used the Default Welcome Intent to add the new option for my assistant with GOOGLE ASSISTANT. The GOOGLE ASSISTANT comes with many features like a rich response. Use a rich response if you want to display visual elements to enhance user interactions with your Action. These visual elements can provide hints on how to… Read More »
Google – Starting development with Google and Google Assistant – part 002.
In this part of the tutorial, I will show you how to create the content for the assistant. At this moment Google provides a good tool named Dialogflow Console and a new tool with a billing required option named Dialogflow CX agent. Let’s start with basic settings for Dialogflow online tool in order to build responses… Read More »
Google – Starting development with Google and Google Assistant – part 001.
An application programming interface (API) is a computing interface that defines interactions between multiple software applications or mixed hardware-software intermediaries. – see Wikipedia. A software development kit (SDK) is a collection of software development tools in one installable package. They facilitate the creation of applications by having a compiler, debugger, and perhaps a software framework.… Read More »