Posts

How To Move Active Window Using Three Fingers In Mac

Image
To Enable 'Move Active Window Using Three Finger' Follow these steps: Open ' System Preferences ' > Click  ' Accessibility ' . Click ' Mouse and Trackpad ' > Click ' Trackpad Options. . . ' . ' Enable dragging ' > From the drop down menu select ' three finger drag '. Then click  ' OK ' . Get MacBook Pro Enjoy your  mac  :)

How To Run Glut And Opengl On Xcode

Image
To run glut and openGL on Xcode follow these steps: Open Xcode > 'Create a new Xcode project' . Navigate to 'macOS' tab and select 'Command Line Tool' > Click ' Next' . Fill your project name and other details > Select ' C++ ' as language > 'Next' . Choose the project Location . Click on your project name (at the top left corner). Navigate to build Phases > Click add button '+'. Now  one search window will pop up. Search and add 'OpenGL.framework' and 'GLUT.framework'. Now click on the main.cpp file and add this line (header file adding) > #include <GLUT/glut.h> Sample code available here . My GitHub Profile Now you can start programming on GLUT and openGL :)

How To Download And Install Spotify From Play Store

Image
To install Spotify outside US follow these steps: Open browser and search Spotify. Select "Download Spotify". Select Android - Then you will be redirected to the play store there you can download it. To use Spotify use any VPN  Tunnel bear app.

Lanchat - 2.0 Android Application

Image
LanChat Messenger is a secure instant messaging system that allows you to easily chat with colleagues within a local area network. And now, this powerful LAN chat program is available for smartphones and tablets running the Android operating system. By expanding to mobile devices, this Wi-Fi chat application can now be used by employees who are not always in front of their computers, allowing for even better connectivity than before! Key features Notification speaks. Fast communication. Simple Interface. What's new in Version 2.0  Bug fix (Chat history).  Added Chat wallpapers.  Added Pro settings.  Person name display in chat screen.  Start screen bug fixed. Download now:                       Screenshot:                 

Blog Fetcher [ BETA 1 ]

Image
 T his application fetch all posts from SGK CREATIONS BLOG .  For fetching data we used  (  Blogger API v3 ) , which in turn returns JSON data.  Tap on the given headings provide full content view of that post.  Tap on the title to  Speak the contents . Tap again to stop speaking.  Hold on the title to view original post. Dependencies   Jsoup  -  Dependencies .   Blogger API  -  Dependencies  (Select GRADLE). TRY ( APK ) Snapshots:        Get Source Code

Christmas Tree Generator

Image
Program For Generating Christmas Tree Generates Christmas tree based on the input character and height Language:  JAVA Inputs:character and height tree (int) Source Code:  GitHub

ASCII STRING FORMING

Image
I nput is taken from the user and that string is formed from scratch. Individual character of the string is taken. Each char is incremented on its ASCII value and checked against the given string. This process is carried out till we get all the characters of the formed string match the given string. SourceCode: import java.awt.Toolkit; import java.util.Scanner; import java.util.logging.Level; import java.util.logging.Logger; /**  * @author sooryagangarajk  */ public class StringMagic {     /**      * @param args the command line arguments      */     public static void main(String[] args) {         Scanner in = new Scanner(System.in).useDelimiter("");         String s = in.nextLine();         int[] cia = new int[s.length()];         int[] ans = new int[s.length()]; ...