₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,330,794 members, 8,447,133 topics. Date: Friday, 17 July 2026 at 06:03 PM

Toggle theme

FincoApps's Posts

Nairaland ForumFincoApps's ProfileFincoApps's Posts

1 2 3 4 5 6 7 8 9 10 (of 31 pages)

WebmastersHow To Make A Game With Processing (game Development) by FincoApps(op): 1:59pm On Aug 27, 2019
In this tutorial, we would be going into game development by creating a simple game using Processing IDE. The game features a bouncing ball with a Paddle to catch the bouncing ball. In order to understand this tutorial, you need to have a basic knowledge of programming, preferably in Java.
For this game development tutorial, you would need to download Processing IDE from Processing Website
Here’s what you are going to be creating

 
First of all before we begin, I’ll like to say “If you are already a programmer, it’s very normal for your mind to think you cannot go on with a game development project all because it seems too complex”. But for me, the way I overcome such thoughts is I decide to break the project down to steps and just start. If I get stuck in a step, I’ll seek help for that step.
The first step in game development in processsing is to create the skeleton of the game, so open processing and type in following




Java


void setup()
{
}

void draw()
{

}




12345678

void setup(){} void draw(){ }





 
The first method above which is the setup() method is executed once, so basically code that you wish to execute just once should go there. (These are mainly codes that initialize variables or instantiate classes).
The second method which is the draw() method is executed continuously, so code that you wish to execute repeatedly should go here (Basically the visible items or items that are drawn on the screen go here.).
Next step is to s... Read more at https://fincoapps.com/how-to-create-a-simple-game-with-processing/
WebmastersTips To Make Your Blackberry Battery Last Longer by FincoApps(op): 1:59pm On Aug 26, 2019
All blackberry users would agree with me that Blackberry is a smart phone with a very dumb battery. Anyway here are some steps you can take to get the most out of your battery.

 
 

Reduce your BlackBerry back light Brightness and also the back light duration and thick “Automatically Dim Backlight” in Screen Display options.
Avoid having several social networks on one phone: Applications like Facebook, Twitter, whatsapp, facebook chat … etc when running all at the same time can really drain the battery in no time.
Turn off background Sync on facebook application: When this is on, your phone periodically sends and receive data to and from facebook respectively and that can really drain your battery.
Turn off all group notifications.
Switch your phone from 3G to 2G: This method increases the battery life by approximately over 40%.
Finally if your battery is in a really bad state already i.e it lasts for only a few minutes, then Try wrapping the battery up in nylon and freeze it for 24 hours. This worked in my case

 
Note: Do the final step only if your battery life is unpredictable.
If anything is unclear, ask your questions in the comment box bellow
... Read more at https://fincoapps.com/tips-to-make-your-blackberry-battery-last-longer/
WebmastersHow To Upgrade Your Pin Pals Account Using Etisalat Recharge Method (BBOS) by FincoApps(op): 1:59am On Aug 26, 2019
We have been asked a lot of questions about how to upgrade your Pin Pals account without getting blocked on BBOS devices. For those who don’t know, supported BBOS devices include:

BlackBerry 9900
BlackBerry 9700
BlackBerry 9780
BlackBerry 9788
BlackBerry 9930
BlackBerry 9790
BlackBerry 9360
BlackBerry 9370
BlackBerry 9350
BlackBerry 9320
BlackBerry 9220
BlackBerry 9310
BlackBerry 9620
BlackBerry 9315
BlackBerry 9380
BlackBerry 9720

Upgrading your Pin Pals account is easy.   Here are the steps to do so:

Get 200 naira worth or Etisalat recharge voucher
Go to the upgrade page on Pin Pals and carefully input the 15 digits into the box provided
Click the upgrade button
Enjoy your upgraded account

The following would lead to the suspension of your Pin Pals account

Using an invalid recharge voucher
Using an already used recharge voucher
Using the recharge voucher after loading it on Pin Pals
Loading a recharge voucher with value less than 200 naira

 
Note
It takes up to 24 hours for your recharge voucher to be validated however your account would be upgraded immediately.   This means that you might enjoy the service for sometime even if you input an invalid or already used recharge voucher, however when we detect that your recharge voucher is invalid, your Pin Pals account would be immediately suspended.
 
... Read more at https://fincoapps.com/how-to-upgrade-your-pin-pals-account-using-etisalat-recharge-method-bbos/
WebmastersSwitching Between Multiple Screens In A Processing Game by FincoApps(op): 1:59am On Aug 24, 2019
In this tutorial, we would be adding a Menu screen and a game over screen to the bouncing ball game that was created in the last tutorial.   So make sure you download the .pde file from the last post.
Here’s what we will be creating:

Since Processing does not give any standard api for switching between scenes, we would need to improvise.   The best way to conveniently transit from screen to screen is to use a variable to hold information about the current screen running.
For this example, we would create a String variable and call it currentScreen.   So go to the very top of the code and type the following:
String currentScreen = “menu”;
The next step is to edit the draw method and make it check the current position of the screen so it can determine what to draw.  ie If the currentScreen variable value is equal to “menu”, then it draws a text, if it is “gameplay”, it plays the game and if the variable value is “game over”, then it shows the Game Over text.   To do this,  change the content of the draw method to:







background(255, 255, 0);

if (currentScreen == "menu"wink {//Checks if the screen is in the Menu
fill(0);//To change the text color from default White to black
textSize(50);
text("Brick Breaker", 120, 110);
text("Press any key to start", 37, 230);
}

else if (currentScreen == "gameplay"wink {
ellipse(ballX, ballY, 20, 20);
fill(0, 0, 0);
rect(mouseX, 380, 80, 20);

if (ballY >= 400)//If the ball has reached the bottom of the screen
{
dirY = -2;//Change ball di... Read more at https://fincoapps.com/switching-between-multiple-screens/
WebmastersAdvanced Tic Tac Toe – Online Multiplayer Game by FincoApps(op): 2:00am On Aug 22, 2019
Advanced Tic Tac Toe is a more challenging version of the traditional Tic Tac Toe game. While other Tic Tac Toe games require you to connect 3 Xs or Os together in order to win, this requires you to connect 5 Xs or Os in other to win.   Also Advanced Tic Tac Toe has a 12 X 10 board instead of the traditional 3 X 3 board so there is enough room for tricks.
Additionally, you have the ability to play with other players over the internet.
Features

 Ability to play with other players online.
 Ability to set AI difficulty.
 Good sound alerts.
 Realistic AI (It plays like a real human).
 Automatically saves your game against Ai.
 Bright User Interface with interesting sound effect

Screenshots






 
Download

... Read more at https://fincoapps.com/advanced-tic-tac-toe-online-multiplayer-game/
WebmastersRe: Facebook Auto Liker by FincoApps(op): 10:02pm On Aug 21, 2019
Smallsmart:
if you want your password to be stolen or hacked then proceed grin
You are really small and unsmart
WebmastersTips To Make Your Blackberry Battery Last Longer by FincoApps(op): 2:00am On Aug 20, 2019
All blackberry users would agree with me that Blackberry is a smart phone with a very dumb battery. Anyway here are some steps you can take to get the most out of your battery.

 
 

Reduce your BlackBerry back light Brightness and also the back light duration and thick “Automatically Dim Backlight” in Screen Display options.
Avoid having several social networks on one phone: Applications like Facebook, Twitter, whatsapp, facebook chat … etc when running all at the same time can really drain the battery in no time.
Turn off background Sync on facebook application: When this is on, your phone periodically sends and receive data to and from facebook respectively and that can really drain your battery.
Turn off all group notifications.
Switch your phone from 3G to 2G: This method increases the battery life by approximately over 40%.
Finally if your battery is in a really bad state already i.e it lasts for only a few minutes, then Try wrapping the battery up in nylon and freeze it for 24 hours. This worked in my case

 
Note: Do the final step only if your battery life is unpredictable.
If anything is unclear, ask your questions in the comment box bellow
... Read more at https://fincoapps.com/tips-to-make-your-blackberry-battery-last-longer/
WebmastersCalculator Villa – All In 1 Maths And Physics Calculator by FincoApps(op): 2:00pm On Aug 19, 2019
I am happy to introduce our latest in-house project.   We develop a feature-rich version one of the most requested Apps on Playstore: Calculator.



About Calculator Villa

Calculator Villa is not just another free online calculator. It is a free online calculator that aims to solve all secondary Maths and Physics calculation problems.
Currently Calculator Villa supports 2 basic calculators, however, we are actively developing it to add more calculators including an advanced Scientific Calculator.
With your support, expect to see a lot more free online calculator modules here at Calculator Villa.
One of the best parts of Calculator Villa is that you have direct access to our developers. All forms of suggestions are welcome.





Our Plans for Calculator Villa
Currently, Calculator Villa contains just 2 basic calculators, however, we have great plans for it.  We plan to make Calculator Villa the one-stop market for all Maths and Physics calculations.   Calculator Villa would be composed of calculator modules.   Each of these modules would focus on a particular calculation type.   Think of it like an evergrowing Calculator with sub Calculators.
Future Calculator Modules to expect in Calculator Villa
Here is a summary of the calculator modules we are currently working on:
Maths Calculator Modules

Matrix Calculator
Simple Algebra
Quadratic Equation Calculator
Permutation and Combination Calculator
Basic Trigonometry
Percentage Calculator
Volume Calculator
Slope Calculator
Area Calculator
Probability Calculator
Ratio Calculator
Triangle Calculator
Number System

Any base t... Read more at https://fincoapps.com/calculator-villa-all-in-1-maths-and-physics-calculator/
WebmastersSome Really Cool HTML 5 Apps For Your Inspiration by FincoApps(op): 2:00am On Aug 19, 2019
If you are about to start your journey into HTML5/Hybrid app development but are a little confused about how good hybrid apps can get, then read on.
HTML5 apps have a relatively bad reputation as compared to native Apps. One of the main reasons for this is because it is amazingly easy to create crappy HTML5 apps even without knowing it… I was once guilty of this.  
Another reason is that some hybrid app developers are from a Web Design/Development background so they tend to develop apps just the way they would for a standard website forgetting the fact that mobile apps run on devices with relatively low hardware configurations.   This means using some things like unnecessary Javascript animations would absolutely be inappropriate for a Hybrid App.
So below is a list of some pretty cool HTML5 apps/games for your inspiration

Brick Breaker Bold for BlackBerry10 – I didn’t believe this game was actually created with HTML5 until a BlackBerry Development Advisor confirmed it
BlackBerry10 Browser – I still find it difficult to believe that the BlackBerry10 native browser was built with HTML5 even though it has been confirmed from a BlackBerry source.
ViceVersa
Walk2view
GT Bank Mobile App
Tic Tac Toe   –   This game is really amazing
Summon
Love Sms Collection   –   I personally developed this app, and I know there is still room for improvement
Pin Pals – Meet your next date   –   This app can also be greatly improved on but it still deserves to be on this list.

This list would be updated from time to time. ... Read more at https://fincoapps.com/some-really-cool-html-5-apps-for-your-inspiration/
WebmastersFacebook Auto Liker by FincoApps(op): 2:00pm On Aug 18, 2019
Make your facebook automated with this light weight application.

Facebook AutoLike gives you the ability to instantly like all Posts, Comments and pictures on a page on Facebook.   It has an inbuilt mini browser and a status bar to help you track what you are doing.
Follow the DOWNLOAD link bellow and wait 5 seconds on the page then click “Skip Ad” on the top right of the page and your download should start.
DOWNLOAD
 
... Read more at https://fincoapps.com/facebook-autolike/
WebmastersSwitching Between Multiple Screens In A Processing Game by FincoApps(op): 2:00am On Aug 18, 2019
In this tutorial, we would be adding a Menu screen and a game over screen to the bouncing ball game that was created in the last tutorial.   So make sure you download the .pde file from the last post.
Here’s what we will be creating:

Since Processing does not give any standard api for switching between scenes, we would need to improvise.   The best way to conveniently transit from screen to screen is to use a variable to hold information about the current screen running.
For this example, we would create a String variable and call it currentScreen.   So go to the very top of the code and type the following:
String currentScreen = “menu”;
The next step is to edit the draw method and make it check the current position of the screen so it can determine what to draw.  ie If the currentScreen variable value is equal to “menu”, then it draws a text, if it is “gameplay”, it plays the game and if the variable value is “game over”, then it shows the Game Over text.   To do this,  change the content of the draw method to:







background(255, 255, 0);

if (currentScreen == "menu"wink {//Checks if the screen is in the Menu
fill(0);//To change the text color from default White to black
textSize(50);
text("Brick Breaker", 120, 110);
text("Press any key to start", 37, 230);
}

else if (currentScreen == "gameplay"wink {
ellipse(ballX, ballY, 20, 20);
fill(0, 0, 0);
rect(mouseX, 380, 80, 20);

if (ballY >= 400)//If the ball has reached the bottom of the screen
{
dirY = -2;//Change ball di... Read more at https://fincoapps.com/switching-between-multiple-screens/
WebmastersPin Pals Share And Win Promo. Win A Free Iphone by FincoApps(op): 2:00pm On Aug 17, 2019
It is my pleasure to announce that Pin Pals is running yet another PROMO.   Pin Pals will give 10 lucky users free brand new iPhones.

PRIZE TO BE WON

1st Place iPhone X
2nd Place iPhone 7
3rd-10th Place iPhone iPhone 6

3 years ago, we ran a PROMO that offered a free brand new BlackBerry Passport smart phone of which Emeka Idam was the lucky winner.   And now we are offering FREE brand new IPHONES THIS TIME TO 10 WINNERS.
HOW TO WIN
Just like in 2015, winning is very easy.   All you have to do is:

Sign up on Pin Pals Dating App.
Get your share link.
Share to at least 5 of your friends.
The more you share, the better your chances of winning.

Think about it for a second.   If Emeka Idam could win a free Blackberry Passport, anyone can.
Here’s a photo of the winner from the event in 2015.

DOWNLOAD PIN PALS NOW AND WIN A FREE IPHONE

FOR INQUIRIES, WHATSAPP
Efetobor Owen Agbontaen   –    09081552310
Nike Yusuf                            –     08101998425
Kolawole Adewale                –     09080792393
 
... Read more at https://fincoapps.com/promo-promo-win-a-free-iphone/
WebmastersFinco Download Manager by FincoApps(op): 2:00am On Aug 16, 2019
Finco Download Manager is an excellent download manager that will take care of all your downloads from the moment you install it on your Device. To use, just copy the download link and Paste in the add url field and let the app take care of the rest.
Features
✔ Supports unlimited downloads at the same time.
✔ Pause and Resume any download at anytime.
✔ Stores up to 20 downloads when you exit.
✔ Option to select preferred save location.
✔ Option to select preferred file format.
✔ Option to stop individual downloads.
✔ Option to clear all downloads.
 
SCREENSHOTS





Note: – Because of the existence of millions of download websites, Finco Download Manager cannot guarantee a 100% service.
Click the Pay Now button to buy Finco Download Manager for $1.

or
Click the button below to download from BlackBerry World.

... Read more at https://fincoapps.com/finco-download-manager/
WebmastersTips To Make Your Blackberry Battery Last Longer by FincoApps(op): 2:00am On Aug 15, 2019
All blackberry users would agree with me that Blackberry is a smart phone with a very dumb battery. Anyway here are some steps you can take to get the most out of your battery.

 
 

Reduce your BlackBerry back light Brightness and also the back light duration and thick “Automatically Dim Backlight” in Screen Display options.
Avoid having several social networks on one phone: Applications like Facebook, Twitter, whatsapp, facebook chat … etc when running all at the same time can really drain the battery in no time.
Turn off background Sync on facebook application: When this is on, your phone periodically sends and receive data to and from facebook respectively and that can really drain your battery.
Turn off all group notifications.
Switch your phone from 3G to 2G: This method increases the battery life by approximately over 40%.
Finally if your battery is in a really bad state already i.e it lasts for only a few minutes, then Try wrapping the battery up in nylon and freeze it for 24 hours. This worked in my case

 
Note: Do the final step only if your battery life is unpredictable.
If anything is unclear, ask your questions in the comment box bellow
... Read more at https://fincoapps.com/tips-to-make-your-blackberry-battery-last-longer/
WebmastersWord Unscrambler by FincoApps(op): 2:00pm On Aug 14, 2019
Word Unscrambler is an easy to use utility that generates a list of possible words from a random word. This simple utility could be very useful to scrabble players or other similar board game players.
NOTE: THIS IS NOT A GAME. THIS IS AN APP THAT HELPS YOU CHEAT IN SCRABBLE-LIKE GAMES
SCREENSHOTS

 

... Read more at https://fincoapps.com/word-unscrambler/
WebmastersHow To Get More Positive Reviews On Your Apps On Appstores by FincoApps(op): 2:00am On Aug 14, 2019
If you are a developer and have your apps on any of the App stores, you would agree with me that it is not really easy to get positive reviews on your apps regardless of how great the app is.   Getting positive reviews on your app is really important for the growth of the app especially in stores like Google Playstore where App reviews are also considered in the search algorithm.
I realized how difficult it is to get positive reviews a few months after releasing my first app “All SMS collection” to BlackBerry World.   What I noticed was that this app got a lot of downloads but very few reviews.   At the time, All SMS collection got an average of 400 daily downloads and an average of 1-2 reviews per month.   Some of these reviews were negative.
This made me start to wonder what could be happening ?   Initially, I felt the app was really bad but then I had a lot of users but these users that weren’t complaining… It then occurred to me that:

When a user downloads an app from any store, if the user likes said app there really is no need for the user to stress his/her self to go all the way back to the store to write a review….
However, if the user for some reason was not pleased with the app or if the app somehow gets the user angry, the user would be willing to go all the way back to the store just to pour out his/her anger as a review…

Well there are ways to get around this and boost the quality of reviews of your apps.   I will be highlighting 2 methods I tried that boosted my reviews
 
1. Create a “Rate this app... Read more at https://fincoapps.com/how-to-get-more-positive-review-on-your-apps-on-appstores/
WebmastersHow To Remove A Key From JSON Object In PHP by FincoApps(op): 2:00pm On Aug 13, 2019
When developing with backend technologies like PHP,  a time comes when you need to use and manipulate JSON objects.  One of such manipulations is removing or deleting a JSON key.
There are several ways to do this, however, I find the below method preferable.







unset($json["key"]);




1

unset($json["key"]);





Note that for this method to work, you need to pass a true parameter to the second argument of the json_decode() method.  See the below sample:







$json = json_decode($json , true);
unset($json["key"]);




12

$json = json_decode($json , true);unset($json["key"]);





The second parameter simply tells the method to return an associative array instead of an object.
Hope this helps.
If you have any questions, feel free to ask them in the comment box below. �
... Read more at https://fincoapps.com/how-to-remove-a-key-from-json-object-in-php/
Webmasters[SOLUTION] Error: Resource Android:attr/dialogcornerradius Not Found. by FincoApps(op): 2:00pm On Aug 12, 2019
This error is actually more annoying than common.  One of the major reasons it is so annoying is because of the fact that it does not actually point to the exact line or file that caused the error.  It leaves it up to you to figure it out.
Cause
We still have not been able to point out what exactly triggers this error but it seems to have something to do with a mismatch in your Gradle dependencies.
Solution
There are different ways to fix this issue.  Not all of them will work for you.

Check your build.gradle file to make sure your compileSdkVersion matches the version of your support libraries.








compileSdkVersion 27
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:design:26.1.0'




123

compileSdkVersion 27 implementation 'com.android.support:appcompat-v7:26.1.0' implementation 'com.android.support:design:26.1.0'






The above code will possibly throw this error because the support library version does not match the compileSdkVersion.  So to fix this, upgrade your support library version.
Migrate your entire project to AndroidX.  To migrate your project, follow these instructions:

 Click on the Refractor menu item in Android Studio
 Click on “Migrate to AndroidX”.
 Follow screen instructions



The second solution could be problematic in large and complex projects.  You might be required to manually migrate some of your libraries.  However, this solution is guaranteed to solve this error as long as the migration ... Read more at https://fincoapps.com/error-resource-androidattr-dialogcornerradius-not-found/
WebmastersAll SMS Collection For BBOS And BB10 by FincoApps(op): 2:00am On Aug 12, 2019
All SMS collection is a very useful app that helps you get unlimited SMS messages of all kinds.   With All SMS Collection, you really don’t need to search all over the internet for SMS messages that can match the occasion you want to use it for.   Love SMS Collection makes this easy for you.
CATEGORIES
All messages in Love SMS Collection has been carefully categorized into the following categories:

Love SMS
Friendship SMS
Funny SMS
Birthday SMS
Flirt SMS
Naughty SMS
Christmas SMS
New Year SMS
Pick Up Lines
Pornographic SMS
Rude SMS

More categories get added to the app regularly
FEATURES

Browse SMS according to categories
Ability to share SMS with your friends easily
Access to unlimited SMS – The SMS comes from an online server so you are not restricted to a particular amount of message
Ability to add your own SMS

SCREENSHOTS






 

... Read more at https://fincoapps.com/love-sms-collection-for-bbos-and-bb10/
WebmastersPin Pals – Dating App (android Version) by FincoApps(op): 2:00pm On Aug 11, 2019
 
Most of our readers would know by now that at FincoApps, we were in love with the BlackBerry OS and we only stopped developing for BlackBerry 2017.
One of the Apps we designed is Pin Pals Dating App.   This is one of the Apps we are quite proud of.   However, at first, Pin Pals dating App was available only on BlackBerry OS.
We later launched a quick version for Android OS using Hybrid Technology.   You can check it out here Pin Pals – Meet your next date.
However, now that BlackBerry is almost totally out of the market, we decided to create a full native version of Pin Pals for the Android Operating System.   Pin Pals has now evolved from just a Dating App to a social network that enables users meet people around the world.
Pin Pals now has a lot of new features some of which are listed below.
NEW FEATURES

INSTANT MESSAGING
The beauty of Pin Pals is the ability for you to get chatting as soon as it is downloaded. The days of sending requests before being able to communicate are leaving. Now with this dating App, you have the total freedom to tell your crush how you feel without the need to send them any form of request.

 

INTELLIGENT SEARCH FEATURE
The Random User Search feature uses your preferences over time to learn about the kind of people you might fall in love with and automatically shows them to you. This algorithm has had a good success rate of helping users meet their soulmate.

 

ABILITY TO SEND A VIRTUAL KISS TO YOUR CRUSH
Just like the Real World, dating is not just all about talking to your partner, users can can also send virtua... Read more at https://fincoapps.com/pin-pals-dating-app-android-version/
WebmastersFinco Download Manager by FincoApps(op): 2:00am On Aug 11, 2019
Finco Download Manager is an excellent download manager that will take care of all your downloads from the moment you install it on your Device. To use, just copy the download link and Paste in the add url field and let the app take care of the rest.
Features
✔ Supports unlimited downloads at the same time.
✔ Pause and Resume any download at anytime.
✔ Stores up to 20 downloads when you exit.
✔ Option to select preferred save location.
✔ Option to select preferred file format.
✔ Option to stop individual downloads.
✔ Option to clear all downloads.
 
SCREENSHOTS





Note: – Because of the existence of millions of download websites, Finco Download Manager cannot guarantee a 100% service.
Click the Pay Now button to buy Finco Download Manager for $1.

or
Click the button below to download from BlackBerry World.

... Read more at https://fincoapps.com/finco-download-manager/
WebmastersPin Pals – Meet Your Next Date by FincoApps(op): 2:00am On Aug 10, 2019
 

 
If you are an Android user and but do not have access to Google Playstore, you can download the apk here: [download id=”5719″]
 
Pin Pals is a social app that has been specially designed to help you easily get a date. Just register with your basic details and let Pin Pals use its very intelligent system to do the match making �
To use Pin Pals, all you have to do is take a minute to register with Pin Pals using a valid WhatsApp number and you are good to go. Your BBM PIN is automatically stored so that other users whose search criteria matches your profile can easily contact you either on BBM or WhatsApp
Features

Edit your profile at anytime.
Upload and view pictures.
Add directly to WhatsApp favorite.
Add users to BlackBerry Messenger.
 Chat room – Online users on Pin Pals can now chat with each other with the Pin Pals public chat room feature.
Favorite list – This is the list of the last 60 users you have added either to BBM or WhatsApp. With this, you can keep track of people you add.
 Directory Search – Now, you can search for a list of Pin Pals users using either their names or PIN.
 More Privacy for ladies – Users can now choose to hide their phone numbers from the public.
 In addition to increase in privacy, users can also hide their profiles from the public.   Hidden profile would also not be accessible in Directory search and the Chat room.
 More Security – Pin Pals version 10.5.X features new security features including a very smart anti scam bot to eliminate scammers.

SCREENSHOTS







 ... Read more at https://fincoapps.com/pin-pals/
WebmastersMarital Blues – Share Your Relationship Issues by FincoApps(op): 2:00pm On Aug 09, 2019
About the Marital Blues Mobile App
Marital Blues is an App where couples can come and share stories about the marital problems they might be facing.
There are a lot of people with issues in their relationship but they keep it in because there’s no one to tell. With Marital Blues, you can post about these relationship problems and get advice from others.
Also, stories can be posted as Anonymous so your identity does not really need to be exposed.
Online Counseling
Users do not only get relationship advice from other users, but they also get some relationship advice from our professional counselors trained particularly for marital counseling.
Also if you are the private type and would not like to post about your marital or relationship issues, you also can choose to contact professional marriage counselors to give you online marriage counseling.
 
Features
✔ ABILITY TO POST STORIES ANONYMOUSLY
✔ Absolute control of your profile privacy
✔ Ability to like stories
✔ Ability to write stories at anytime
✔ Ability to comment on stories
✔ Ability to share stories everywhere
✔ Ability to follow/unfollow stories of your choice
✔ Ability to follow your favorite user
✔ Many more upcoming features
✔ SWEET AND INTERESTING UI
 
Screenshots







 

 
Download

... Read more at https://fincoapps.com/marital-blues-relationship-issues/
WebmastersWord Unscrambler by FincoApps(op): 2:00am On Aug 09, 2019
Word Unscrambler is an easy to use utility that generates a list of possible words from a random word. This simple utility could be very useful to scrabble players or other similar board game players.
NOTE: THIS IS NOT A GAME. THIS IS AN APP THAT HELPS YOU CHEAT IN SCRABBLE-LIKE GAMES
SCREENSHOTS

 

... Read more at https://fincoapps.com/word-unscrambler/
WebmastersFinco Wordpad by FincoApps(op): 2:00pm On Aug 08, 2019
Finco WordPad is a mobile text editor right on your BlackBerry device.
It is equipped with the following features
– Can open the text representation of all files.
– Counts quantity of words in a file.
– Counts quantity of characters in a file.
– Can save file to SD Card so it can be viewed on a computer.
– Has very smart mechanism that knows the right place to save your file, This generally improves user experience.
Note: If you do not have an SD Card, you would not be able to save files with Finco WordPad.
 

... Read more at https://fincoapps.com/finco-wordpad/
WebmastersFinco Wordpad by FincoApps(op): 2:00am On Aug 08, 2019
Finco WordPad is a mobile text editor right on your BlackBerry device.
It is equipped with the following features
– Can open the text representation of all files.
– Counts quantity of words in a file.
– Counts quantity of characters in a file.
– Can save file to SD Card so it can be viewed on a computer.
– Has very smart mechanism that knows the right place to save your file, This generally improves user experience.
Note: If you do not have an SD Card, you would not be able to save files with Finco WordPad.
 

... Read more at https://fincoapps.com/finco-wordpad/
WebmastersWhat Is The Deep Web? by FincoApps(op): 2:00pm On Aug 07, 2019
Facebook recently announced a second URL for their site that can only be accessed through Tor.  Tor is a software that allows users to log in anonymously from nearly anywhere on the planet even in countries where Facebook is heavily monitored or blocked (China, Bangladesh and North Korea for example). This makes Facebook the first major web company to offer a platform on the Dark Web.
So what is the Dark Web or the Deep Web?
First off it is important to understand that the Internet is vast and constantly growing and the majority of our daily usage only scratches the surface. Google, Yahoo, and other search engines only show us about 4% of the data available on the Internet. To access the other 96% we require customized digging through individual sites, sub pages, restricted access journals or archives and so on this 96% is called the Deep Web.
It is also important to understand that pretty much everything we do online is visible, traceable and even possibly being monitored. Everything except for the areas of the Deep Web that are masked by the Dark Web. The Dark Web is concealed through a series of identity masking layers. This basically means that you can access and interact with it anonymously without being tracked. This is achieved through a special encryption software like Tor.
What exactly is Tor browser?
TOR actually stands for The Onion Router. The Tor browser currently publicly available is actually based on Firefox Browser. This means that when installed on your computer, it appears and acts like your standard Firefox browser.  However, instead of routing your co... Read more at https://fincoapps.com/what-is-the-deep-web/
WebmastersHow To Make A Game With Processing (game Development) by FincoApps(op): 2:00pm On Aug 06, 2019
In this tutorial, we would be going into game development by creating a simple game using Processing IDE. The game features a bouncing ball with a Paddle to catch the bouncing ball. In order to understand this tutorial, you need to have a basic knowledge of programming, preferably in Java.
For this game development tutorial, you would need to download Processing IDE from Processing Website
Here’s what you are going to be creating

 
First of all before we begin, I’ll like to say “If you are already a programmer, it’s very normal for your mind to think you cannot go on with a game development project all because it seems too complex”. But for me, the way I overcome such thoughts is I decide to break the project down to steps and just start. If I get stuck in a step, I’ll seek help for that step.
The first step in game development in processsing is to create the skeleton of the game, so open processing and type in following




Java


void setup()
{
}

void draw()
{

}




12345678

void setup(){} void draw(){ }





 
The first method above which is the setup() method is executed once, so basically code that you wish to execute just once should go there. (These are mainly codes that initialize variables or instantiate classes).
The second method which is the draw() method is executed continuously, so code that you wish to execute repeatedly should go here (Basically the visible items or items that are drawn on the screen go here.).
Next step is to s... Read more at https://fincoapps.com/how-to-create-a-simple-game-with-processing/
WebmastersWord Unscrambler For Windows by FincoApps(op): 8:47am On Aug 06, 2019
Word Unscrambler is a good application for scrabble players.   Its main function is to assist in rearranging random characters into meaningful dictionary words.
This is a free application and some of the advanced functions are not available.
Download the zip file with the below link and wait 5 seconds on the edge. ly page, then click “Skip Ad” on the top right of the page.

 
... Read more at https://fincoapps.com/word-unscrambler-for-windows/

1 2 3 4 5 6 7 8 9 10 (of 31 pages)