Wednesday, 3 April 2019

Timbu, Please Do Me A Favor And Fix This Bug!

While navigating through the site, https://timbu.com, I got to the footer. There’s a link that leads to several countries listed on the platform. You will see it titled “Countries”. I clicked the link and scrolled down to that page where shows ‘Popular Destinations in South America’.
I have always loved the name, Ecuador. So I clicked on the link, https://timbu.com/ecuador. I was greeted with a brief history of Ecuador. After reading through, I decided to follow Timbu on facebook from that page. To my greatest surprise, they either don’t have a facebook page or the devs forgot to enter the facebook page link. I still can’t access Timbu page from there up till now. I have returned back to the page with disappointments.

Tuesday, 11 July 2017

A Python Script to Solve Prime Numbers

Update Prime_numbers
This is an algorithm that finds prime numbers in a given range of numbers. How it works is this:
1) Your number must be more than 1, it excludes 1 from its calculation because any number less than 2 is not a prime number.
2)Input your first number, which should be your starting point, and should be lower than the second number
3) Input your 3rd number, which is the end point and the higher number.  Now due to how range function behaves, the last number is always excluded, so i tried to catch the last number by doing max+1, since the last number in range is always short of 1
4)if the numbers entered are greater than 1, it jumps to the next code
5) Now do a range of the 2 numbers you entered by , adding extra 1 to the last number
6) Since 2 is a prime number, i will let it print, by printing num if num equals 2. This is so that while running the programming, it won't exclude 2 as a prime number as 2%2 == 0.
7)Apart from that, all other numbers that are divisible by 2 are not printed, same with other numbers which are divisible, starting by 2, to the num. Remember ending it at num excludes the num, and run only from 2 to the number before num
8) If it encounters any number in range of 2 and num that is divisible by num, it will break the loop, as the number is no longer a prime a number.
9)Else, it prints all the numbers that are only divisible by 1 and itself
10) For the code below the first one posted, it just prints the prime numbers starting from highest to lowest, the "-1" at the end makes it possible. And note this only works if your lower number was greater than you higher number.
11) The new update prints the numbers which are less than 2 and tell the user that such numbers are lesser than 2 or they are not greater than 1
Image result for python


print "Dont enter numbers less than 2. All numbers should be more than 1"

min = int(raw_input("Enter the lower number here>>>"))
max = int(raw_input("Enter the higher number here>>>"))

for num in range(min, max+1):
    if num > 1:
        for i in range(2, num):
            if num == 2:
                print num
            else:
                if num % i == 0:
                    break
        else:
            print num
    else:
        print " %d is not greater than 1" %min
            
           
#the below code prints the number inversely if your first input should be higher than your second input
print "Dont enter numbers less than 2. All numbers should be more than 1"

min = int(raw_input("Enter the lower number here>>>"))
max = int(raw_input("Enter the higher number here>>>"))

for num in range(min, max+1, -1):
    if num > 1:
        for i in range(2, num):
            if num == 2:
                print num
            else:
                if num % i == 0:
                    break
        else:
            print num
    else:
        print " %d is not greater than 1" % min        


Friday, 2 June 2017

Flash: Nokia 3310 To Be Released Very Soon In Nigeria

The love everybody had for Nokia 3310, which is one of the first phones used in nigeria, never dies. The Nokia 3310 to be released very soon in Nigeria again, now with better specifications. One of the features that made people like it was its strong battery, and how strong the was. It was the choice of people into construction work, auto mechanics, etc, as the phone can fall from your pocket or where you kept it, and you easily pick it up, without the phone breaking.

Although when it first came out over a decade ago, it was not budget friendly, but as newer products and smartphones evolved, it became very affordable for people to buy, and this made the phone to gain more popularity.

Since it went 'extinct', people have not taken it so easy with Nokia across the social media pages. Nokia has listened to their request, by re introducing the phone, now with new specification that will 'wow' you for a basic phone.

The old 3310
Image result for nokia 3310

The new 3310

Image result for nokia 3310

The Specifications
  • Available in dual-SIM variants (microSIM)
  • Dimensions: 115.6 x 51.0 x 12.8mm
  • Weight: 79.6 g (including battery)
  • Display: 2.4in
  • Camera: 2Mpxl camera with LED flash
  • MicroSD card support up to 32GB
  • Standby time: up to 31.0 days, talk time: up to 22.1 hours
The device will also be available in four colors: glossy red and glossy yellow and matte blue and gray.

“We are delighted to bring the Nokia 3310 phone to our consumers in Nigeria. Nokia has been one of the most iconic and recognisable phone brands in our country for decades. HMD has received an incredible reception from our partners so far; it seems everyone shares our excitement for this next chapter. Our consumers are more discerning and demanding than ever before and for us they will always come first. We’ve worked really hard with our teams around the world to bring together world class manufacturers, operating systems and technology partners, enabling us to proudly start sales of our the Nokia 3310, a classic reimagined.”, said Joseph Umunakwe, General Manager, HMD Global, West, East, and Central Africa:

How much will you be willing to spend on this phone? let us know with the comment box 

Thursday, 1 June 2017

How To Easily Access All Files, Docs, Music, Links and Videos On Telegram Groups

There is this feature i like most in Telegram, that is, you can easily access all files, docs, music, links, and videos on a Telegram group, even the once shared before you joined the group.
Have you joined a tutorial group on whatsapp, only to discover that most of the docs and links you will need have been shared before you joined, thereby denying you access to it? Well, Telegram's got you covered.
To Access all the shared files in a Telegram group, kindly follow the below steps:

  • Open the Telegram Group
  • Click on the Groups info icon(The place where the groups name is written)
  • Click on Shared Medias
  • Toggle the shared medias icon to choose between shared files, shared links etc
  • Download the one you need or select the link you need
Whatsapp also has similar feature, but the difference is that you can't access the files shared before you joined. We will cover how to achieve same in Whatsapp in the upcoming post.

Use the comment box to share your experience


Tuesday, 30 May 2017

How To Download Android Play store App Using Telegram

Few weeks back, we covered a series on how to download YouTube videos or audios using telegram. Possibly you did not know that it is possible to download android play store apps using Telegram.

It is possible to do this , either on mobile or Desktop. The need arises because, sometimes, connecting to play store may take longer time than expected and consumes lot more data. As you already know, telegram is a lightweight app, which makes it to load faster. Kindly follow the below steps to see how you can download androip play store app using telegram, even for apps that worths over 1 GB data.

Image result for telegram

STEPS
  • First search for @apkl_bot on your telegram search button or add the bot using this link
  • Once you have added, this bot, simply click on join or add to enable this bot

What can this bot do?
This bot helps you to download latest version of any free android games and apps easily and quickly.

This bot works in inline mode as well :blush:

just send me the name of an app or a game 

To begin with it, type "/start" without the double quotes
You will then see this message : Hi!, please send me the name of any android app or game to download it.
i am also available in inline mode.

Type any app name and follow the instructions.

The good side of this is that you can preview the app before downloading in a case where an app has several similar names.

This is simply how to download android google play store apps using Telegram.

Note:. Once you request for an app with huge size, you will be prompted with what to do.

Use the comment box to tell your experience with it.

Tuesday, 25 April 2017

Hey Siri: Life made easier with siri app reading your Whatsapp messages

With regards to the latest version of Whatsapp released on Friday, a new feature was added, which makes it easier for you to listen to your whatsapp messages while siri reads it for you.


Life with apple devices is becoming easier since last year, after they made siri software open to third party developers.

Just say : 'Hey siri, read new Whatsapp messages' and see the magic.

Kindly note you must be running on iOS 10.3 and allow 'hey siri' in your settings to enjoy this new feature.

Tuesday, 18 April 2017

How To Download YouTube Videos From Telegram

Do You know telegram could do more other than chatting? In this article, i'm gonna show you how to download youtube videos from telegram.

Image result for youtube icon

Definitely, you have tried in the past to download youtube videos from youtube app or website. You will agree with me that it is not always to do so. When google received many complains from its users, they had to add an inbuilt feature that let's you download videos from the app. Did it really solve the problem? Not really. How? The videos are saved as offline videos on your youtube app, which makes the space occupied by youtube app in your mobile to be huge. Again, you cannot find it in the galary section of your phone.

As time goes, we discovered how you can download videos from savefrom net. Now, the easiest? Download youtube videos from telegram.

Kindly follow the steps below to find out

The first thing is to add this bot. How do you do this ? Kindly search @utubebot on the search area of telegram or paste this link https://web.telegram.org/#/im?p=@utubebot on your browser and login. Then click on Join or Add to enable this bot.

What can this bot do?
1. How to Download YouTube Video ? 
To Download YouTube video You need to send an YouTube video URL and then select option VIDEO
—----
2. How to Convert YouTube video into MP3 ? 
To Convert YouTube video into MP3 You need to send an YouTube video URL and then select option AUDIO
—----
3. How to search YouTube Videos within this bot? To search YouTube Videos type @vid<space><your search term> you will be prompted to select video from the list

Please note you will need to select your language by typing /start and send it to the bot.
Image result for youtube icon
I will make a video soon on how to use this bot for people that may still have questions.

Please share and comment how the bot worked for you