Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| package main.com.devsharing.loop; | |
| public class LoopExample1 { | |
| public static void main(String[] args) { | |
| int num = 2; | |
| for(int j=1; j<=12; j++) { | |
| System.out.println(num + " x " + j + " = " + num*j); | |
| } | |
| } | |
| } |
| public class Hello { | |
| public static void main(String[] args) { | |
| System.out.println("Hello gist revision"); | |
| } | |
| } |
| <script src="https://gist.github.com/Phonbopit/5824856/xxxxxxxxxxxxxx.js?file=Hello.java"></script> |
| package com.devsharing.example.jxls; | |
| import java.io.File; | |
| import java.io.FileInputStream; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.util.Map; | |
| import net.sf.jxls.reader.ReaderBuilder; | |
| import net.sf.jxls.reader.ReaderConfig; |
| [Desktop Entry] | |
| Version=1.0 | |
| Name=ADT Bundle | |
| Comment=Android Development Tools | |
| Exec=/home/phonbopit/Programs/ADT-Bundle/eclipse/eclipse | |
| Icon=/home/phonbopit/Programs/ADT-Bundle/eclipse/adt.png | |
| Terminal=false | |
| Type=Application | |
| Categories=TextEditor;Development;Utility; |
| sudo apt-get update |
| import android.content.Context; | |
| import android.content.res.Resources; | |
| import android.graphics.Bitmap; | |
| import android.graphics.BitmapFactory; | |
| import android.view.View; | |
| import android.view.ViewGroup; | |
| import android.widget.BaseAdapter; | |
| import android.widget.GridView; | |
| import android.widget.ImageView; |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| requestWindowFeature(Window.FEATURE_NO_TITLE); | |
| getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, | |
| WindowManager.LayoutParams.FLAG_FULLSCREEN); |
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="com.phonbopit.sample" > | |
| <uses-permission android:name="android.permission.INTERNET" /> | |
| <application | |
| android:allowBackup="true" | |
| android:icon="@drawable/ic_launcher" | |
| android:label="@string/app_name" |