Author: admin

The Create React App frameworks lets you easily build single page applications but it doesn’t support multiple entry points. To give you an example, if a website outputs separate home pages for mobile and desktop clients, the pages could be sharing some common React components between them, and it may thus not be practical to build two completely separate React applications. Also see: Bundle React App with Gulp CRA doesn’t support multiple entry points but there are couple of ways to solve this problem. Option 1 Eject from the Create React App using the npm run eject command and update…

Read More

Microsoft Word includes a useful “Insert Watermark” feature to help you easily add your brand’s logo image or a text stamp that fades behind the content of every page in the document. A company’s policy may require employees to add watermarks to indicate if any document is in draft stage or if the document is confidential and not meant for external distribution. Insert Watermarks in Google Docs Unlike Microsoft Word, there’s no built-in support for Watermarks in Google Docs but there’s a simple workaround – create a faded image with the text of your watermark and place that image behind…

Read More

Google Developer Expert Google awarded us the Developer Expert title recogizing our work in Workspace ProductHunt Golden Kitty Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards Microsoft MVP Alumni Microsoft awarded us the Most Valuable Professional title for 5 years in a row Google Cloud Champion Google awarded us the Champion Innovator award for technical expertise

Read More

Google Sheets includes built-in functions for converting cell references in A1 notation to row and column numbers and another function for converting column alphabets (like AA) into the column index (26 in this case). =ADDRESS(23, 28, 4) – Returns the A1 style notation of the cell whose row number is 23 and column number is 28. =COLUMN(C9) – Returns the column number of a specified cell C9 where column A corresponds to 1 and column AA corresponds to 27. Get A1 Notation with JavaScript If you are working with the Google Sheets API, you may sometimes needs to calculate the…

Read More

Located at an altitude of 3,400 feet at the base of Mullayanagiri, Chikmagalur is an enchanting hill station in Karnataka. It represents the pinnacle of verdant nature and a pleasant atmosphere, offering a refuge from the intense heat of the plains. With its flowing streams, rolling hills, lush forests, towering mountains, fragrant coffee plantations, and agreeable climate, Chikmagalur ranks among the most sought-after tourist places in Karnataka. This pristine hill station is rich in greenery and features numerous attractions that captivate visitors with their splendor and magnificence. Additionally, Chikmagalur is home to several lesser-known or unconventional sites. Exploring these hidden…

Read More

Google Developer Expert Google awarded us the Developer Expert title recogizing our work in Workspace ProductHunt Golden Kitty Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards Microsoft MVP Alumni Microsoft awarded us the Most Valuable Professional title for 5 years in a row Google Cloud Champion Google awarded us the Champion Innovator award for technical expertise

Read More

The default layout of your Gmail inbox has the sender’s name listed in the left column followed by the subject and the date of the message. The emails are sorted in reverse chronological order with the newest messages listed at the top. Play ; The problem with this layout is that you cannot figure out who the actual sender of a message is without actually opening the email. For instance, if you get an email from Angus who works at Google and a different email from another Angus who is employed with Microsoft, Gmail will show Angus as the sender…

Read More

Google Cloud offers several serverless services that let you build and run applications without having to manage servers. You can run containers on Google Cloud Run, create API endpoints with Cloud Run Functions (formerly Google Cloud Functions) or run your mobile and web backends with Firebase Functions. A common concept for serverless functions on Google Cloud is the concept of revisions. Each time you deploy your code, a new and immutable revision is created on Google Cloud and the old revision is not deleted. This is useful because, later, you can easily roll back to an older version of a…

Read More

Google Developer Expert Google awarded us the Developer Expert title recogizing our work in Workspace ProductHunt Golden Kitty Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards Microsoft MVP Alumni Microsoft awarded us the Most Valuable Professional title for 5 years in a row Google Cloud Champion Google awarded us the Champion Innovator award for technical expertise

Read More

The REMOVE_ACCENTED function for Google Sheets will replace all accented characters in the referenced cell, like the letters è, õ, ā, ĝ and so on with their normal Latin equivalents. To get started, make a copy of the Google Sheet, go to the Tools menu, choose Script Editor and copy the entire code to your clipboard. Now open your own Google Sheet and paste the same code inside the Script editor of your sheet. Save and you should be able to use the REMOVE_ACCENTED function in your own sheets. Input StringOutput stringA História de Malú e João MiguelA Historia de…

Read More

Google Developer Expert Google awarded us the Developer Expert title recogizing our work in Workspace ProductHunt Golden Kitty Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards Microsoft MVP Alumni Microsoft awarded us the Most Valuable Professional title for 5 years in a row Google Cloud Champion Google awarded us the Champion Innovator award for technical expertise

Read More

You have a workbook in Google Sheets that contains multiple rows of data and you are required to sort the list in a random order. For instance, your sheet may contain the names of your team members and you need to reshuffle the list before assigning tasks to each of the members randomly. Or your Google Sheet may have the email addresses of people who participated in a giveaway and you need to pick any three random entries in an unbiased manner for the prize. There are multiple ways to randomize the data rows in Google Sheet. You can either…

Read More