Skip to main content

Code on your smartphone - Useful Apps To Learn Programming using Smartphone - ABNHive


This article for those who would like to code with a smartphone. The following apps help you to code on your smartphone. 

Programming is becoming one of the most important skills in the 21st century. If you are planning on building your own software program then you will need some necessary tools to get good working software. Millions of people from around the world use smartphones, but they didn't know they can code on their mobile too. I recommend the apps given below after installing and testing.
And, when you want to code, all the universe conspires in helping you to achieve it
  • AIDE — Android IDE — Interactive teaching through examples. They have a Supportive Google plus community to help you.
  • Anacode IDE — Helps you to code in HTML,CSS,java,android, JavaScript,PHP,c++,css. Easy to compile and run.
  • Code Editor — Currently supports coding in the following programming languages: ActionScript, C, C++, C#, CSS, Haskell, HTML, Java, JavaScript, Lisp, Lua, Markdown, Objective-C, Perl, PHP, Python, Ruby, SQL, Visual Basic and XML.
  • Java N-IDE — Java coding IDE, Build Android app…etc are available
  • Dcoder — Write a program/code in any of the available 33+ Programming Languages. Code and Debug the code, see compilation results and errors at the same time on the same screen. Code Editor like Notepad++ or Sublime Text with compilation power makes it equivalent to a powerful Ide like eclipse. Simply earn points and learn to a programme like playing a game.
  • QuickEdit — Its just a text editor like notepad. It has syntax highlight for 50+ languages.
  • anWriter Free — anWriter free is a text editor for web programmers (HTML, CSS, JavaScript). It enables us to develop and learn web designing quickly.
  • Our Code Editor Free — A friendly pocket IDE. Code from wherever you are! It takes some time to understand it’s working.
  • Turbo-Editor — Syntax Highlight for HTML, XHTML, CSS, LESS, JS, PHP, PYTHON and many other languages. Look like Sublime text.
  • DroidEdit Free — Syntax Highlighting for several languages (C, C++, C#, Java, HTML, CSS, Javascript, Python, Ruby, Lua, LaTeX, SQL, ...). A text editor application.
Invest in your future by learning design and coding I hope that will definitely return something great.  
Now let's begin coding.
- Aswin Bhim Nath

Comments

Popular posts from this blog

Android Application Components Activities, Services, Broadcast Recievers, Content Providers - ABNHive

Application components are the essential building blocks of Android app development.  Each component is an entry point through which the system or a user can enter your app. There are 4 types of components in android Activities Services Broadcast receivers Content providers Let's dive into the deep.  Activities This is a component that represents a single screen with a user interface or simply an entry point for interacting with the user. Example, an email app might have one activity that shows a list of new emails. Activities work together to form a cohesive user experience in the app. For example, clicking a button on the first screen might replace that screen with another screen containing other widgets, a web page, a movie, or text information. Activities are typically created by subclassing (extending) the Android class Activity.  click here   to know more about Activity. Services This runs in the background ...

Shortcuts in Android Studio for Android Developers - ABNHive

I hope these shortcuts will definitely help you to increase the productivity level. Search for command: cmd + shift + a ( Windows / Linux : ctrl +  shift + a) You just type: close and you’ll get a proper shortcut/command. Choose from the last copy / pastes : cmd +  shift  + v ( Windows / Linux : Ctrl + Shift + v). By default, there are 5 last copy/paste items. Enable mulmulti cursorature: ctrl + g (alt + j for Windows / Linux ). Open a class: cmd + o ( Windows / Linux : ctrl + n). Open any file: cmd + shift + o ( Windows / Linux : ctrl + shift + n) Open symbol:  cmd + option + o ( Windows / Linux : alt + shift + n). Go to implementation: cmd + option + b ( Windows / Linux : ctrl + alt + b). Go to declaration: cmd + b ( Windows / Linux : ctrl + b).  Go to type declaration: control + shift + b ( Windows / Linux : ctrl + shift + b).  Go to super: cmd + u ( Windows / Linux : ctrl + u).  Move between tabs: cmd + shift + [ (move left) o...

Services in Android - ABNHive

A service is a component which runs in the background without direct interaction with the user.  A service extends the base class Service . Services run with a higher priority than inactive or invisible activities and therefore it is less likely that the Android system terminates them for resource management. The only reason Android will stop a Service prematurely is to provide additional resources for a foreground component usually an Activity. When this happens, your Service can be configured to restart automatically. You can start a service if it is not running using Context.startService(), connect (bind) to a running service using Context.bindService(), and communicate with the running service through an interface that the service exposes. Each service class must have a corresponding <service> declaration in the AndroidManifest.xml file for its package. Types of Services Bound Service Service which call indefinitely in between activity. An Android component m...