TRENDING NEWS

POPULAR NEWS

Lil Pip Designs Tutorial How To Add Pockets To A Simple

How do I send text messages from a python script to a mobile number (if possible with a free gateway)?

You can send SMS through Python using Fast2SMS Service.There are many online services which provide API for the sending free SMS like Twilio[1] ,way2sms [2] , Fast2sms[3] etc.In this example I will describe about sending an SMS from a python code using Fast2SMS API.Sign up to Fast2SMS : Unlimited Free SMS in IndiaYou will be assigned with an API authorisation key[4] , which you need to be included in the Python code.You can send 20 free SMS daily. The message is sent with your mobile number as initials.Test by running the Python code below. Include your API auth key ,message to be sent and also include the mobile number of the recipients( I have considered 9999… , 8888…) . If you are using the Free SMS service than the default sender_id is FSTSMS.import requests

url = "https://www.fast2sms.com/dev/bulk"

payload = "sender_id=FSTSMS&message=test&language=english&route=p&numbers=9999999999,888888888"
headers = {
'authorization': "YOUR_AUTH_KEY",
'Content-Type': "application/x-www-form-urlencoded",
'Cache-Control': "no-cache",
}

response = requests.request("POST", url, data=payload, headers=headers)

print(response.text)
For example If you want to send an “Good Morning” message to a recipients with mobile number 985411279 and 854112799 , then payload in the code changes topayload = "sender_id=FSTSMS&message=GoodMorning&language=english&route=p&numbers=985411279,854112799"
For more info : docs.fast2sms.comIf you have any problem, let me knowThankYouFootnotes[1] Communication APIs for SMS, Voice, Video and Authentication[2] Free SMS, Send Free SMS, Send Free SMS to india, Way2SMS Login, Free SMS Site, Free email alerts, email2SMS, SMS Alerts, send SMS to any Mobile, Mobile to Mobile free SMS[3] Unlimited Free SMS in India[4] Unlimited Free SMS in India

How do I use free internet on any SIM card?

YOU NEED TO REMOTE PROXY OF YOUR ISP AND PORT AND MAKE TUNNLING THROUGH HTTP INJECTORYOU CAN USE MMS PROXY AND PORT IF YOU HAVE NO IDEA HOW TO GET REMOTE PROXY OF ISP AND USE ON ANDROID APP CALLED HTTP INJECTOR AND ON THIS YOU NEED TO CREATE PAYLOADFOR THAT YOU NEED WEBSITE WHICH IS FREE BY YOUR IS WHICH OPEN EVEN YOU HAVE NO MONEY OR DATA PACKAGE LEFTAND CREATE SSH ACCOUNT WHICH WILL BE USED ON HTTP INJECTORAFTER FINISHING SETUP YOU WILL BE CONNECTED WITH VPN AND TUNNILING WILL STARTBOOM YOU CAN ENJOY AFTER THAT UNTILL YOUR CANT FIND IT AND FIX OR PATCH IT FOR MORE YOU CAN SEARCH ANY WHERE ABOUT HTTP INJECTORTHANKS BY ABHIJEET

Which is the best photo editing app for Android and iPhone?

There are hundreds of photography apps available, and so selecting most appropriate one can be daunting.From capturing, editing, sharing, and preserving the most vital moments of your life, you can do all this with these apps.Here are best apps specifically for photo editing for Android & iOS devices.PrismaIt is a popular app for Android that can transform any photo into artwork with the use of Artificial Intelligence feature. This app requires an internet connection and includes 30 amazing filters.·SnapseedIf you just want to enhance your photographs for Facebook, then Snapseed is an amazing option. It is absolutely free of cost and is equipped with numerous refined tools and filters that can help you accentuate the most vital features of your photoPicsArt Photo StudioIt is a free app with an inbuilt camera and feature loaded photo editing. This app has numerous photo effects such as collage, border, text effect, overlays, frame, etc. The app has a group of artistic photo effects and is ideal for tablets.Photo Editor by AviaryIt is an extensive photo editing app that can be used to do just anything. With numerous editing features, like cosmetic tools, meme generator and single-tap auto enhance option it is one of the most wonderful photography app.·AirbrushAirbrush is an exclusive app for those who prefer taking selfies. It is inbuilt with great features like filters, blemish removal, teeth whitening, eye brightening, skin tone, and concealer.Fotor Photo EditorYou can click and edit photos with this app. It comes with 6 different photo-taking modes, creating classic and magazine photo collage and offers numerous filters and effects to transform photos.So, these are the best photo editing apps available on Google Play Store as well as Apple App Store.Well, If you are looking for Karaoke or no crop apps, Do check out article about last post on Best No crop Apps & Best Karaoke Apps for (Android and iOS),

How do you record a Reaction video and the video your reacting too simultaneously?

I wanted to do this myself the other day and found this question. Ultimately I decided to do it on my iPhone. The top result on the App Store works quite well, it’s called “reaction.cam”[1].Reaction.cam records the video and your front-facing camera simultaneously and gives you the recording composed (so you see yourself and the video synced together). After recording you can save the video to the camera roll (what I did) or share to other apps.[1] reaction.cam – Reaction Video Maker for YouTube, Instagram & musical.ly

TRENDING NEWS