Posts

Call Without a Phone: How Custom Subdomains Can Save You in Emergencies

Image
When your phone is lost, stolen, or dead, you often can’t remember the numbers you need most—like family or emergency contacts. In those moments, reaching out quickly can be tough. But in today’s world, almost everyone has a smartphone with internet access. It’s easy to borrow someone’s device—but what if you could just type a simple link like call.mom.example.com and instantly make the call? In this blog, we’ll explore how custom subdomains can turn any connected device into a lifeline—no apps, no logins, just fast, direct calling when it matters most. You don't need to have much technical knowledge but the only things you need to have are:               1.  Vercel account to have SSL configured for free otherwise you can also use a minimal tool called surge.sh to deploy your code instantly.               2.  Your own personal domain.               3. ...

How to clear console on Python

If you are working on Windows and you have opened terminal on VS code or Command Prompt, the best way to clear the console fast is using the following commands import os os.system('cls')

Upload Files from Power Apps and Send To Power Automate

Image
Hi, in this blog I will show you how you can upload files in your Power Apps and send it to your Power Automate flow.  The only issue we all face is finding the "Attachments" control under Insert. It is not given but there is turnaround for this. In your Power Apps, insert "Edit Form" and connect it to Sharepoint Source. We won't get the attachment control if you try to connect using Dataverse table. If you like to know, how to create a list on Sharepoint, checkout:  Create a List in SharePoint After you have inserted 'Edit Form' control on your screen, select "SharePoint" under Data Source. Next, link it with your account.  If you don't see the "Attachments" components in the "Edit Form", come to the 'Properties', click on Fields. Under "Choose a field", check "Attachments". Now from the tree view of the screen, copy code of the "Attach a file" control and paste it. If you don't...

Create a List in SharePoint

  Hi, in this blog I am going to show you how to create a list in SharePoint. Steps: 1. Head to the SharePoint site. 2. Click New -> List -> Create from blank - List -> "Enter name of your list" 3. In your newly created List, click "Add column" -> Show and Hide Columns -> Check Attachments -> Apply.

Point and Navigate to Screens in Component.

Image
In my previous   post , we have created the UI for the component. If you haven't seen it, please check it first before moving on here.  In this post, we will be learning how the items in our gallery will point to screens on our App once we place this component on those 3 screens. Steps: 1. Click on the component ' compLeftNavBar ' under Tree View and then under ` Properties `, click ` New custom property '. 2. Type ' MenuItems ' and set the data type to ` Table ` and press Create. 3. Select ` MenuItems ` property on top and set its value to: Table(     {         MenuLabel: "Home",         MenuIcon: Icon.Home,         MenuScreenNavigate: App.ActiveScreen,         MenuID: 1     },     {         MenuLabel: "Profile",         MenuIcon: Icon.CheckBadge,         MenuScreenNavigate: App.ActiveScreen,  ...

Hide and Show Left Navigation on Icon Click

Image
 In my previous post , we have created the UI for the component. If you haven't seen it, please check it first before moving on here.  In this post, we will be learning how the gallery should hide and show when user clicks on the hamburger icon. Steps : 1. Click on the component ' compLeftNavBar ' under Tree View and then under ` Properties `, click ` New custom property '. 2. Type ' OpenMenu ' and set the data type to ` Boolean `, and check the option " Raise OnReset when value changes " and press Create. ( check at the end of this post to learn more about Raise OnReset ) 3. Select ` OpenMenu ` property on top and set its value to ` false ` ( without quotes ). If you can't see it, try refreshing your browser tab after saving your work. 4. Similary, select ` OnReset ` property of the component and set the value to ` Set(showMenu, compLeftNavBar.OpenMenu) `. 5. Now click on the hamburger icon and edit  value for ` OnSelect ` property to ` Set(showMe...