This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "net/http" | |
| ) | |
| type Hello struct{} | |
| func (h Hello) ServeHTTP( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.onlyangel.libs; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.net.MalformedURLException; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| import org.apache.http.HttpResponse; | |
| import org.apache.http.client.methods.HttpGet; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.onlyangel.sclbits.rosh.activities.veiculos; | |
| import android.app.ListActivity; | |
| import android.content.Intent; | |
| import android.content.SharedPreferences; | |
| import android.database.Cursor; | |
| import android.os.Bundle; | |
| import android.view.ContextMenu; | |
| import android.view.ContextMenu.ContextMenuInfo; | |
| import android.view.Menu; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.onlyangel.sclbits.rosh.database.adapters; | |
| import java.util.Date; | |
| import android.content.ContentValues; | |
| import android.content.Context; | |
| import android.database.Cursor; | |
| import android.database.SQLException; | |
| import android.database.sqlite.SQLiteDatabase; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.onlyangel.sclbits.rosh.database; | |
| import java.io.BufferedReader; | |
| import java.io.DataInputStream; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.InputStreamReader; | |
| import android.content.Context; | |
| import android.database.sqlite.SQLiteDatabase; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // AndroidManifest.xml must have the following permission: | |
| // <uses-permission | |
| // android:name="android.permission.ACCESS_FINE_LOCATION"/> | |
| LocationManager locationManager = | |
| (LocationManager) getSystemService(Context.LOCATION_SERVICE); | |
| locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, | |
| 0, new LocationListener() { | |
| public void onStatusChanged(String provider, int status, | |
| Bundle extras) { | |
| // called when the provider status changes. Possible |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <uses-permission android:name="android.permission.INTERNET" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| browser.loadData("<html><body>Hello, world!</body></html>", "text/html", "UTF-8"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:orientation="vertical" | |
| android:layout_width="fill_parent" | |
| android:layout_height="fill_parent" | |
| > | |
| <LinearLayout | |
| android:orientation="horizontal" | |
| android:layout_width="fill_parent" | |
| android:layout_height="wrap_content" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class T2 { | |
| public static void main(String arg[]){ | |
| double acum = 0; | |
| for (int n = 1;n<=10;n++){ | |
| acum+=factorial(n)/nALaN(n,n); | |
| } | |
| System.out.print(acum); | |
| } | |
| public static Long factorial(int i){ | |
| if (i==1){ |