- baofeng cheat sheet from Aaron Parecki
- How to manually program the Baofeng UV-5R from the keypad from buytwowayradios.com
- hit
MENUto enter menu mode
MENU to enter menu mode| #!/usr/bin/env python | |
| from selenium import webdriver | |
| from selenium.webdriver.support.ui import WebDriverWait | |
| from selenium.webdriver.support import expected_conditions as EC | |
| from selenium.webdriver.common.keys import Keys | |
| from selenium.webdriver.common.by import By | |
| from selenium.webdriver.common.action_chains import ActionChains | |
| import time | |
| # txt to be sent |
| #!/usr/bin/env python | |
| ''' | |
| stemmer porting from ivanlanin stemmer (php script) | |
| https://github.com/ivanlanin/pengakar | |
| ''' | |
| import sys | |
| import re | |
| import json | |
| from os import path |
| #!/usr/bin/perl | |
| #$second = waktu dalam detik | |
| #$minute = waktu dalam menit | |
| #$hour = waktu dalam jam (1-24) | |
| #$day = hari | |
| #$month = 0 => january 11 => december | |
| #$year = tahun | |
| use Time::Local 'timelocal'; |
| Break this cipher text | |
| Text: rugf sgozj rgaiutozj fmnc kgpe lmnc mzs jg uemxiq | |
| Key: mlnsiwjtoycqazgfberupxvdkh | |
| hint: | |
| this is an improvement method for caesar cipher text. | |
| this cipher using substitusion based method (please mind the key) | |
| alphabet: abcdefghijklmnopqrstuvwxyz |
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="co.nuwira.nwrandroiddev" > | |
| <uses-permission android:name="android.permission.INTERNET" /> | |
| <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | |
| <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | |
| <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | |
| <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| package co.nuwira.nwrandroiddev; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.os.Bundle; | |
| import android.view.LayoutInflater; | |
| import android.view.View; | |
| import android.view.ViewGroup; | |
| import android.widget.ArrayAdapter; | |
| import android.widget.TextView; |
| package co.nuwira.nwrandroiddev; | |
| import android.app.Activity; | |
| import android.os.Bundle; | |
| import android.support.v7.app.ActionBarActivity; | |
| import android.widget.TextView; | |
| import com.google.android.gms.maps.CameraUpdateFactory; | |
| import com.google.android.gms.maps.GoogleMap; | |
| import com.google.android.gms.maps.SupportMapFragment; |
| <?xml version="1.0" encoding="utf-8"?> | |
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent"> | |
| <fragment | |
| android:name="com.google.android.gms.maps.SupportMapFragment" | |
| android:id="@+id/map" | |
| android:layout_width="fill_parent" | |
| android:layout_height="280dp" |
| package co.nuwira.nwrandroiddev; | |
| import android.content.Intent; | |
| import android.os.AsyncTask; | |
| import android.os.Bundle; | |
| import android.support.v7.app.ActionBarActivity; | |
| import android.util.Log; | |
| import android.widget.ListView; | |
| import org.apache.http.HttpResponse; |