Jiji's Online Lair

Passion, Technology, Software Engineering, Programming & Christianity

  • Christianity
  • Java
  • Mobile Development
  •  Technology
  • Literary
  • Travel Blog
  • Portfolio

Author: Say

Poem For A Friend 8:6:5

October 27, 2015May 15, 2019 Say Leave a comment Literary

I. So blithesome was I on that eve, To you my amity I’d give. Wishing you would gladly receive. Now, no I don’t want you to leave. Been wearing my heart on my sleeve, And sure that’s for you to perceive. II. There are times I wish I could fly, And I’d go way up […]

Continue reading


Subtraction without using ‘-‘ operator in Java

June 24, 2015October 9, 2017 Say Leave a comment Java
java_logo

College Basic Programming Activity Hi guys! I’m back and I’m going to share another programming problem and show the solution. Problem: Write a program which subtracts two integers without using minus (-) operator. Solution: Let’s use this algorithm: a – b = a + -1 * b Then, let’s convert to code: public static void […]

Continue reading


Blog Listing App Tutorial Part 1 – Setting Up Cordova App

September 25, 2014October 9, 2017 Say Leave a comment apache, cordova, ios

Setting Up Cordova App Hi there buddy! This is the continuation of my previous post Apache Cordova Blog Listing App Important Note This tutorial assumes that you already have installed Cordova on your machine! 🙂 If not, then I encourage you to visit this site UPDATE: This is the latest site Let’s create the app […]

Continue reading


Android SwipeRefreshLayout

September 16, 2014May 18, 2018 Say Leave a comment Mobile Development

The latest update of android support library came out with an interesting new layout: SwipeRefreshLayout. This layout implements the pull-down-to-refresh pattern. In this tutorial, I will show you how to create a SwipeRefreshLayout with a ListView 🙂 Important Note: Support library project must be imported to our workspace and added to our main project as […]

Continue reading


Java Factorial Code

September 8, 2014October 9, 2017 Say 1 Comment Java
java_logo

The factorial function (symbol: !) means to multiply a series of descending natural numbers. Examples: 4! = 4 Ă— 3 Ă— 2 Ă— 1 = 24 7! = 7 Ă— 6 Ă— 5 Ă— 4 Ă— 3 Ă— 2 Ă— 1 = 5040 import java.util.Scanner; public class Factorial { public static void main(String[] args) { […]

Continue reading


Java Print 1000 Hello World Without Loop

September 8, 2014October 9, 2017 Say Leave a comment Java
java_logo

One of the Java questions I faced is to create a program which prints 1000 Hello World without using loop. So how do we solve this? The solution is to use recursion! public class HelloWorld { public static void main(String[] args) { printThousandHelloWorld(1); } private static void printThousandHelloWorld(int n) { if(n < 1000) { printThousandHelloWorld(n+1); […]

Continue reading


Apache Cordova Blog Listing App

June 25, 2014May 18, 2018 Say 1 Comment apache, cordova, ios, phonegap

Cordova Blog Listing App I would like to share my Blog Listing App which was developed using Apache Cordova. An Apache Cordova App is a hybrid app that is essentially a small website running in a browser shell that has an access to the native platform layer (browser shell i.e., iOS’s UIWebView or Android’s WebView) […]

Continue reading


How to Find Your Phone’s IMEI

June 16, 2014May 18, 2018 Say 3 Comments android, imei, Technology, telephony

How to Find Your Phone’s IMEI You might have heard about IMEI, but do not know what it is. IMEI stands for International Mobile Equipment Identity. It is an international “serial number” of your phone to properly identify it. This tutorial is only for Android phones. We can find our phone’s IMEI by doing the […]

Continue reading


The Only Solution

March 24, 2014May 18, 2018 Say Leave a comment Christianity, Jesus Christ
iStock copyright

In my entire life, there is this one of the things that I have ever realised. Despite our own efforts to attain righteousness, it is still worthless and in vain. Only Jesus Christ can make us righteous by allowing Him to change our lives and hearts and with that we can be righteous before the […]

Continue reading


Google’s New UI Design Pattern – Navigation Drawer

January 8, 2014October 9, 2017 Say Leave a comment android, Java

Today I learned something new in Android Development which is Google’s new UI Design Pattern the Navigation Drawer. For more details go to this site and the sample is here

Continue reading


Posts navigation

Older posts
Newer posts
  • Popular
  • Recent
  • java_logo
    Java Factorial Code Sep 8, 2014
  • iStock copyright
    Happier Nov 6, 2019
  • E6 API: Set up Automatic Access Token (Bearer) in Insomnia (Chaining Requests) Jan 8, 2025
  • Mac OS X
    To get captured photo from Mac user profile Dec 31, 2018
  • java_logo
    Java merge and sort lists of integers without using pre-defined functions May 18, 2018
  • Set up Automatic Access Token (Bearer) in Postman (Chaining Requests) Feb 18, 2026
  • E6 API: Set up Automatic Access Token (Bearer) in Insomnia (Chaining Requests) Jan 8, 2025
  • iStock copyright
    Happier Nov 6, 2019
  • Mac OS X
    To get captured photo from Mac user profile Dec 31, 2018
  • java_logo
    Java merge and sort lists of integers without using pre-defined functions May 18, 2018
  • Jiji Chiz on Happier

    Thanks

  • Ed Salinas on Happier

    God is happiest because you are happier.

  • Jiji Chiz on How to fix USB flash drive to get its original size back?

    Glad that it helped

  • israel on How to fix USB flash drive to get its original size back?

    Thank you! Such a great

  • Java merge and sort lists of integers without using pre-defined functions - Jiji's Online Lair on Java merge and sort integer arrays without using pre-defined functions

    […] the previous blog post (...)

Archives

  • February 2026
  • January 2025
  • November 2019
  • December 2018
  • May 2018
  • October 2017
  • October 2016
  • October 2015
  • June 2015
  • September 2014
  • June 2014
  • March 2014
  • January 2014
  • December 2013
  • November 2013
  • May 2013
  • December 2012
  • November 2012
  • March 2012
  • July 2011
  • May 2011
  • January 2011
  • December 2010
  • October 2010
  • January 2010
  • May 2009
  • December 2007
  • July 2006

Recent Comments

  • Jiji Chiz on Happier
  • Ed Salinas on Happier
  • Jiji Chiz on How to fix USB flash drive to get its original size back?
  • israel on How to fix USB flash drive to get its original size back?
  • Java merge and sort lists of integers without using pre-defined functions - Jiji's Online Lair on Java merge and sort integer arrays without using pre-defined functions
  • Christianity
  • Java
  • Mobile Development
  • Technology
  • Literary
  • Travel Blog
  • Portfolio
dazzling Theme by Colorlib Powered by WordPress