├── .classpath
├── .gitattributes
├── .gitignore
├── .project
├── Algorithm
├── C
│ └── zigzagarray.c
├── CPP
│ ├── char_combination.cpp
│ ├── clockwiseiterator.cpp
│ ├── find_no_in_array.cpp
│ └── reverse_stack.cpp
├── Java
│ └── InterviewTest
│ │ ├── .classpath
│ │ ├── .project
│ │ ├── .settings
│ │ └── org.eclipse.jdt.core.prefs
│ │ └── src
│ │ ├── MainTest.java
│ │ └── com
│ │ ├── recursion
│ │ └── MatchingParentheses.java
│ │ ├── search
│ │ └── MatrixSearch.java
│ │ ├── stringtest
│ │ ├── StringPermute.java
│ │ └── StringSearch.java
│ │ ├── test
│ │ ├── BinarySearchTree.java
│ │ ├── ClassImplMarkerInterface.java
│ │ ├── CloneTest.java
│ │ ├── MarkerInterface.java
│ │ └── Node.java
│ │ └── trie
│ │ ├── TrieNode.java
│ │ └── TrieTree.java
└── ReadMe.txt
├── AndroidProjects
├── AlarmManagerExample
│ ├── .classpath
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── bin
│ │ └── AndroidManifest.xml
│ ├── gen
│ │ └── com
│ │ │ └── rakesh
│ │ │ └── alarmmanagerexample
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ ├── ic_launcher-web.png
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── layout
│ │ │ └── activity_alarm_manager.xml
│ │ ├── menu
│ │ │ └── activity_widget_alarm_manager.xml
│ │ ├── values-large
│ │ │ └── dimens.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ ├── values-v14
│ │ │ └── styles.xml
│ │ └── values
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ └── src
│ │ └── com
│ │ └── rakesh
│ │ └── alarmmanagerexample
│ │ ├── AlarmManagerActivity.java
│ │ └── AlarmManagerBroadcastReceiver.java
├── AndroidButtons
│ ├── .classpath
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── gen
│ │ └── com
│ │ │ └── code4reference
│ │ │ └── android
│ │ │ └── buttons
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── layout
│ │ │ └── activity_main.xml
│ │ ├── menu
│ │ │ └── activity_main.xml
│ │ ├── values-large
│ │ │ └── dimens.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ ├── values-v14
│ │ │ └── styles.xml
│ │ └── values
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ └── src
│ │ └── com
│ │ └── code4reference
│ │ └── android
│ │ └── buttons
│ │ └── MainActivity.java
├── AndroidLayout
│ ├── .classpath
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── gen
│ │ └── com
│ │ │ └── code4reference
│ │ │ └── androidlayout
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ ├── ic_launcher-web.png
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── layout
│ │ │ └── activity_xmllayout.xml
│ │ ├── menu
│ │ │ └── activity_xmllayout.xml
│ │ ├── values-large
│ │ │ └── dimens.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ ├── values-v14
│ │ │ └── styles.xml
│ │ └── values
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ └── src
│ │ └── com
│ │ └── code4reference
│ │ └── androidlayout
│ │ ├── DynamicLayoutActivity.java
│ │ └── XMLLayoutActivity.java
├── EnableDisableBroadcastReceiver
│ ├── .classpath
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── gen
│ │ └── com
│ │ │ └── example
│ │ │ └── enabledisablebroadcastreceiver
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ ├── ic_launcher-web.png
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── layout
│ │ │ └── activity_main.xml
│ │ ├── menu
│ │ │ └── activity_main.xml
│ │ ├── values-large
│ │ │ └── dimens.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ ├── values-v14
│ │ │ └── styles.xml
│ │ └── values
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ └── src
│ │ └── com
│ │ └── code4reference
│ │ └── enabledisablebroadcastreceiver
│ │ ├── AlarmManagerBroadcastReceiver.java
│ │ └── EnableDisableBroadcastReceiver.java
├── EnableDisableBroadcastReceiver2
│ ├── .classpath
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── gen
│ │ └── com
│ │ │ └── code4reference
│ │ │ └── broadcastreceiver
│ │ │ └── enabledisable
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ ├── ic_launcher-web.png
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── layout
│ │ │ └── activity_register_unregister.xml
│ │ ├── menu
│ │ │ └── activity_enable_disable.xml
│ │ ├── values-large
│ │ │ └── dimens.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ ├── values-v14
│ │ │ └── styles.xml
│ │ └── values
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ └── src
│ │ └── com
│ │ └── code4reference
│ │ └── broadcastreceiver
│ │ └── enabledisable
│ │ ├── RegisterUnregister.java
│ │ └── UserDefinedBroadcastReceiver.java
├── GCMAndroidExample
│ ├── .classpath
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── bin
│ │ └── AndroidManifest.xml
│ ├── gen
│ │ └── com
│ │ │ └── rakesh
│ │ │ └── gcmexample
│ │ │ ├── BuildConfig.java
│ │ │ ├── Manifest.java
│ │ │ └── R.java
│ ├── ic_launcher-web.png
│ ├── libs
│ │ ├── android-support-v4.jar
│ │ └── gcm.jar
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── layout
│ │ │ └── activity_gcmmain.xml
│ │ ├── menu
│ │ │ └── activity_gcmmain.xml
│ │ ├── values-large
│ │ │ └── dimens.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ ├── values-v14
│ │ │ └── styles.xml
│ │ └── values
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ └── src
│ │ └── com
│ │ └── rakesh
│ │ └── gcmexample
│ │ ├── GCMIntentService.java
│ │ ├── GCMMainActivity.java
│ │ └── Utility.java
├── GCMAppEngineExample
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ ├── com.google.appengine.eclipse.core.prefs
│ │ ├── com.google.gdt.eclipse.core.prefs
│ │ ├── org.eclipse.jdt.core.prefs
│ │ └── org.eclipse.wst.common.project.facet.core.xml
│ ├── src
│ │ ├── META-INF
│ │ │ ├── jdoconfig.xml
│ │ │ └── persistence.xml
│ │ ├── guestbook
│ │ │ ├── DatastoreFactory.java
│ │ │ ├── GCMBaseServlet.java
│ │ │ ├── GCMRegisterServlet.java
│ │ │ ├── GCMUnregisterServlet.java
│ │ │ ├── GuestbookServlet.java
│ │ │ └── SignGuestbookServlet.java
│ │ └── log4j.properties
│ └── war
│ │ ├── WEB-INF
│ │ ├── appengine-generated
│ │ │ ├── datastore-indexes-auto.xml
│ │ │ └── local_db.bin
│ │ ├── appengine-web.xml
│ │ ├── classes
│ │ │ ├── META-INF
│ │ │ │ ├── jdoconfig.xml
│ │ │ │ └── persistence.xml
│ │ │ └── log4j.properties
│ │ ├── lib
│ │ │ ├── appengine-api-1.0-sdk-1.7.0.jar
│ │ │ ├── appengine-api-labs.jar
│ │ │ ├── appengine-endpoints.jar
│ │ │ ├── appengine-jsr107cache-1.7.0.jar
│ │ │ ├── datanucleus-appengine-1.0.10.final.jar
│ │ │ ├── datanucleus-core-1.1.5.jar
│ │ │ ├── datanucleus-jpa-1.1.5.jar
│ │ │ ├── geronimo-jpa_3.0_spec-1.1.1.jar
│ │ │ ├── geronimo-jta_1.1_spec-1.1.1.jar
│ │ │ ├── gson-2.2.2.jar
│ │ │ ├── jdo2-api-2.3-eb.jar
│ │ │ └── jsr107cache-1.1.jar
│ │ ├── logging.properties
│ │ └── web.xml
│ │ ├── favicon.ico
│ │ ├── guestbook.jsp
│ │ ├── index.html
│ │ └── stylesheets
│ │ └── main.css
├── JellyBeanAnimationExample
│ ├── .classpath
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── bin
│ │ └── AndroidManifest.xml
│ ├── gen
│ │ └── com
│ │ │ └── example
│ │ │ └── jellybeananimationexample
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ ├── ic_launcher-web.png
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── anim
│ │ │ ├── fade_in.xml
│ │ │ └── fade_out.xml
│ │ ├── drawable-hdpi
│ │ │ ├── freelancer2.jpg
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── layout
│ │ │ ├── activity_animation.xml
│ │ │ └── activity_main.xml
│ │ ├── menu
│ │ │ └── activity_main.xml
│ │ ├── values-large
│ │ │ └── dimens.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ ├── values-v14
│ │ │ └── styles.xml
│ │ └── values
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ └── src
│ │ └── com
│ │ └── example
│ │ └── jellybeananimationexample
│ │ ├── AnimationActivity.java
│ │ └── MainActivity.java
├── JellyBeanClipboard
│ ├── .classpath
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── gen
│ │ └── com
│ │ │ └── example
│ │ │ └── jellybeanclipboard
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ ├── ic_launcher-web.png
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── layout
│ │ │ ├── activity_clipdataintent.xml
│ │ │ ├── activity_htmlintent.xml
│ │ │ └── activity_jbclipboard.xml
│ │ ├── menu
│ │ │ └── activity_jbclipboard.xml
│ │ ├── values-large
│ │ │ └── dimens.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ ├── values-v14
│ │ │ └── styles.xml
│ │ └── values
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ └── src
│ │ └── com
│ │ └── code4reference
│ │ └── rakesh
│ │ └── jellybeanclipboard
│ │ ├── ClipdataIntentActivity.java
│ │ ├── HtmlIntentActivity.java
│ │ ├── JBClipboard.java
│ │ └── Utility.java
├── JellyBeanNotificationExample
│ ├── .classpath
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── bin
│ │ ├── AndroidManifest.xml
│ │ ├── JellyBeanNotificationExample.apk
│ │ └── res
│ │ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── drawable-ldpi
│ │ │ ├── ic_launcher.png
│ │ │ ├── ic_launcher_share.png
│ │ │ └── ic_launcher_web.png
│ │ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ │ └── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ ├── gen
│ │ └── com
│ │ │ └── example
│ │ │ └── jellybeannotificationexample
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ ├── ic_launcher-web.png
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ ├── big_picture.jpg
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ │ ├── ic_launcher.png
│ │ │ ├── ic_launcher_share.png
│ │ │ └── ic_launcher_web.png
│ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable
│ │ │ └── button_background.xml
│ │ ├── layout
│ │ │ ├── activity_main.xml
│ │ │ └── handle_notification_activity.xml
│ │ ├── menu
│ │ │ └── activity_main.xml
│ │ ├── values-large
│ │ │ └── dimens.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ ├── values-v14
│ │ │ └── styles.xml
│ │ └── values
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ └── src
│ │ └── com
│ │ └── example
│ │ └── jellybeannotificationexample
│ │ ├── HandleNotificationActivity.java
│ │ └── NotificationMainActivity.java
├── LetMeKnow
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.jdt.core.prefs
│ ├── AndroidManifest.xml
│ ├── default.properties
│ ├── gen
│ │ └── com
│ │ │ └── rak
│ │ │ └── letmeknow
│ │ │ ├── Manifest.java
│ │ │ └── R.java
│ ├── proguard.cfg
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ ├── drawable
│ │ │ ├── add_group_button.xml
│ │ │ ├── add_group_colored.png
│ │ │ ├── add_group_grey.png
│ │ │ ├── add_group_pressed.png
│ │ │ ├── allgroup_pressed.png
│ │ │ ├── allgroups_button.xml
│ │ │ ├── allgroups_white.png
│ │ │ ├── myevents_button.xml
│ │ │ ├── myevents_pressed.png
│ │ │ ├── myevents_white.png
│ │ │ ├── mygroups_pressed.png
│ │ │ ├── mygroups_tab.xml
│ │ │ ├── mygroups_white.png
│ │ │ ├── refresh.png
│ │ │ ├── send.png
│ │ │ ├── send1.png
│ │ │ ├── time.png
│ │ │ ├── time1.png
│ │ │ └── trash_icon.png
│ │ ├── layout
│ │ │ ├── accounts.xml
│ │ │ ├── allgroups.xml
│ │ │ ├── child_event.xml
│ │ │ ├── child_row.xml
│ │ │ ├── compose_activity.xml
│ │ │ ├── create_group.xml
│ │ │ ├── date_time_dialog.xml
│ │ │ ├── datepicker.xml
│ │ │ ├── datetimepicker.xml
│ │ │ ├── event_details.xml
│ │ │ ├── group_row.xml
│ │ │ ├── list_item.xml
│ │ │ ├── main.xml
│ │ │ ├── mygroups.xml
│ │ │ └── timepicker.xml
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── rak
│ │ └── letmeknow
│ │ ├── AccountList.java
│ │ ├── ActivityInterface.java
│ │ ├── AllGroups.java
│ │ ├── C2DM.java
│ │ ├── C2DMReceiver.java
│ │ ├── CreateGroup.java
│ │ ├── DateTimePicker.java
│ │ ├── DisplayActivity.java
│ │ ├── Event.java
│ │ ├── Group.java
│ │ ├── LMKTabWidget.java
│ │ ├── LocationFinder.java
│ │ ├── MyEvents.java
│ │ ├── MyGroups.java
│ │ ├── MyGroupsAdapter.java
│ │ ├── MyHttpClient.java
│ │ ├── MyListAdapter.java
│ │ ├── TGroupActivity.java
│ │ ├── TabGroupActivity.java
│ │ └── URLReader.java
├── OrientationSpecificLayout
│ ├── .classpath
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── gen
│ │ └── com
│ │ │ └── code4reference
│ │ │ └── orientationspecificlayout
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ ├── ic_launcher-web.png
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── layout-land
│ │ │ └── activity_automatic.xml
│ │ ├── layout-port
│ │ │ └── activity_automatic.xml
│ │ ├── layout
│ │ │ ├── activity_dynamic_land.xml
│ │ │ ├── activity_dynamic_port.xml
│ │ │ ├── activity_main.xml
│ │ │ └── activity_restricted.xml
│ │ ├── menu
│ │ │ └── activity_main.xml
│ │ ├── values-large
│ │ │ └── dimens.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ ├── values-v14
│ │ │ └── styles.xml
│ │ └── values
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ └── src
│ │ └── com
│ │ └── code4reference
│ │ └── orientationspecificlayout
│ │ ├── AutomaticOrientation.java
│ │ ├── DynamicOrientationDetection.java
│ │ ├── MainActivity.java
│ │ └── RestrictedOrientation.java
├── SimpleSMSApp
│ ├── .classpath
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── bin
│ │ ├── AndroidManifest.xml
│ │ ├── jarlist.cache
│ │ └── res
│ │ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ │ └── drawable-xhdpi
│ │ │ └── ic_launcher.png
│ ├── gen
│ │ └── com
│ │ │ └── rakesh
│ │ │ └── simpleSms
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ └── ic_launcher.png
│ │ ├── layout
│ │ │ └── main.xml
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── rakesh
│ │ ├── broadcastreceiver
│ │ ├── DeliverSMSBroadcastReceiver.java
│ │ └── OutgoingSMSBroadcastReceiver.java
│ │ └── simpleSms
│ │ └── SimpleSMSAppActivity.java
├── VoiceRecognitionExample
│ ├── .classpath
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── bin
│ │ ├── AndroidManifest.xml
│ │ ├── VoiceRecognitionExample.apk
│ │ └── res
│ │ │ ├── drawable-hdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ │ └── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ ├── gen
│ │ └── com
│ │ │ └── rakesh
│ │ │ └── voicerecognitionexample
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ ├── ic_launcher-web.png
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── layout
│ │ │ └── activity_voice_recognition.xml
│ │ ├── menu
│ │ │ └── activity_voice_recognition.xml
│ │ ├── values-large
│ │ │ └── dimens.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ ├── values-v14
│ │ │ └── styles.xml
│ │ └── values
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ └── src
│ │ └── com
│ │ └── rakesh
│ │ └── voicerecognitionexample
│ │ └── VoiceRecognitionActivity.java
├── WidgetAlarmManagerExample
│ ├── .classpath
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── bin
│ │ └── AndroidManifest.xml
│ ├── gen
│ │ └── com
│ │ │ └── rakesh
│ │ │ └── widgetalarmmanagerexample
│ │ │ ├── BuildConfig.java
│ │ │ └── R.java
│ ├── ic_launcher-web.png
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ ├── ic_action_search.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable
│ │ │ └── widget_background.xml
│ │ ├── layout
│ │ │ ├── activity_widget_alarm_manager.xml
│ │ │ └── time_widget_layout.xml
│ │ ├── menu
│ │ │ └── activity_widget_alarm_manager.xml
│ │ ├── values-large
│ │ │ └── dimens.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ ├── values-v14
│ │ │ └── styles.xml
│ │ ├── values
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ │ └── xml
│ │ │ └── widget_metadata.xml
│ └── src
│ │ └── com
│ │ └── rakesh
│ │ └── widgetalarmmanagerexample
│ │ ├── AlarmManagerBroadcastReceiver.java
│ │ ├── TimeWidgetProvider.java
│ │ ├── Utility.java
│ │ └── WidgetAlarmManagerActivity.java
└── simpleWidgetExample
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ └── org.eclipse.jdt.core.prefs
│ ├── AndroidManifest.xml
│ ├── bin
│ ├── AndroidManifest.xml
│ ├── jarlist.cache
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ └── ic_launcher.png
│ │ └── drawable
│ │ │ └── widget_icon.png
│ └── simpleWidgetExample.apk
│ ├── gen
│ └── com
│ │ └── rakesh
│ │ └── simplewidget
│ │ ├── BuildConfig.java
│ │ └── R.java
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ ├── drawable-ldpi
│ │ └── ic_launcher.png
│ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ ├── drawable
│ │ ├── background.xml
│ │ ├── button_shape.xml
│ │ └── widget_icon.png
│ ├── layout
│ │ ├── main.xml
│ │ └── widget_layout.xml
│ ├── values
│ │ └── strings.xml
│ └── xml
│ │ └── widget_metadata.xml
│ └── src
│ └── com
│ └── rakesh
│ └── simplewidget
│ ├── ConnectivityReceiver.java
│ ├── EnableDisableConnectivity.java
│ ├── SimpleWidgetAppWidgetProvider.java
│ ├── SimpleWidgetExampleActivity.java
│ └── UpdateWidgetService.java
├── ApacheBeamPipelines
└── README.md
├── CaliperProjects
├── RegularExpression
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.jdt.core.prefs
│ ├── global.caliperrc
│ └── src
│ │ └── com
│ │ └── code4refernce
│ │ └── caliper
│ │ ├── CaliperRunner.java
│ │ └── SimpleCaliperTest.java
└── common-libs
│ ├── caliper-allocation-0.0.jar
│ └── caliper.jar
├── GradleExample
├── .gitignore
├── custom-plugin-1
│ ├── .gitignore
│ ├── plugin
│ │ ├── build.gradle
│ │ ├── settings.gradle
│ │ └── src
│ │ │ └── main
│ │ │ ├── groovy
│ │ │ └── com
│ │ │ │ └── code4reference
│ │ │ │ └── gradle
│ │ │ │ └── Code4ReferencePlugin.groovy
│ │ │ └── resources
│ │ │ └── META-INF
│ │ │ └── gradle-plugins
│ │ │ └── code4reference.properties
│ ├── repo
│ │ └── com
│ │ │ └── code4reference
│ │ │ ├── Code4ReferencePlugin
│ │ │ ├── 0.1-SNAPSHOT
│ │ │ │ ├── Code4ReferencePlugin-0.1-20120814.145630-1.jar
│ │ │ │ ├── Code4ReferencePlugin-0.1-20120814.145630-1.jar.md5
│ │ │ │ ├── Code4ReferencePlugin-0.1-20120814.145630-1.jar.sha1
│ │ │ │ ├── Code4ReferencePlugin-0.1-20120814.145630-1.pom
│ │ │ │ ├── Code4ReferencePlugin-0.1-20120814.145630-1.pom.md5
│ │ │ │ ├── Code4ReferencePlugin-0.1-20120814.145630-1.pom.sha1
│ │ │ │ ├── maven-metadata.xml
│ │ │ │ └── maven-metadata.xml.sha1
│ │ │ ├── maven-metadata.xml
│ │ │ └── maven-metadata.xml.sha1
│ │ │ └── code4ReferencePlugin
│ │ │ ├── 0.1-SNAPSHOT
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152606-1.jar
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152606-1.jar.md5
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152606-1.jar.sha1
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152606-1.pom
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152606-1.pom.md5
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152606-1.pom.sha1
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152800-2.jar
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152800-2.jar.md5
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152800-2.jar.sha1
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152800-2.pom
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152800-2.pom.md5
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152800-2.pom.sha1
│ │ │ ├── code4ReferencePlugin-0.1-20120814.153309-3.jar
│ │ │ ├── code4ReferencePlugin-0.1-20120814.153309-3.jar.md5
│ │ │ ├── code4ReferencePlugin-0.1-20120814.153309-3.jar.sha1
│ │ │ ├── code4ReferencePlugin-0.1-20120814.153309-3.pom
│ │ │ ├── code4ReferencePlugin-0.1-20120814.153309-3.pom.md5
│ │ │ ├── code4ReferencePlugin-0.1-20120814.153309-3.pom.sha1
│ │ │ └── maven-metadata.xml.md5
│ │ │ ├── 1.1-SNAPSHOT
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153520-1.jar
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153520-1.jar.md5
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153520-1.jar.sha1
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153520-1.pom
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153520-1.pom.md5
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153520-1.pom.sha1
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153730-2.jar
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153730-2.jar.md5
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153730-2.jar.sha1
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153730-2.pom
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153730-2.pom.md5
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153730-2.pom.sha1
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153816-3.jar
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153816-3.jar.md5
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153816-3.jar.sha1
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153816-3.pom
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153816-3.pom.md5
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153816-3.pom.sha1
│ │ │ ├── maven-metadata.xml
│ │ │ ├── maven-metadata.xml.md5
│ │ │ └── maven-metadata.xml.sha1
│ │ │ └── maven-metadata.xml.md5
│ └── user
│ │ └── build.gradle
├── custom-plugin-2
│ ├── .gitignore
│ ├── plugin
│ │ ├── build.gradle
│ │ ├── settings.gradle
│ │ └── src
│ │ │ ├── main
│ │ │ ├── groovy
│ │ │ │ └── com
│ │ │ │ │ └── code4reference
│ │ │ │ │ └── gradle
│ │ │ │ │ ├── Code4ReferencePlugin.groovy
│ │ │ │ │ └── Code4ReferenceTask.groovy
│ │ │ └── resources
│ │ │ │ └── META-INF
│ │ │ │ └── gradle-plugins
│ │ │ │ └── code4reference.properties
│ │ │ └── test
│ │ │ └── groovy
│ │ │ └── com
│ │ │ └── code4reference
│ │ │ └── gradle
│ │ │ ├── Code4ReferencePluginTest.groovy
│ │ │ └── Code4ReferenceTaskTest.groovy
│ ├── repo
│ │ └── com
│ │ │ └── code4reference
│ │ │ ├── Code4ReferencePlugin
│ │ │ ├── 0.1-SNAPSHOT
│ │ │ │ ├── Code4ReferencePlugin-0.1-20120814.145630-1.jar
│ │ │ │ ├── Code4ReferencePlugin-0.1-20120814.145630-1.jar.md5
│ │ │ │ ├── Code4ReferencePlugin-0.1-20120814.145630-1.jar.sha1
│ │ │ │ ├── Code4ReferencePlugin-0.1-20120814.145630-1.pom
│ │ │ │ ├── Code4ReferencePlugin-0.1-20120814.145630-1.pom.md5
│ │ │ │ ├── Code4ReferencePlugin-0.1-20120814.145630-1.pom.sha1
│ │ │ │ ├── maven-metadata.xml
│ │ │ │ └── maven-metadata.xml.sha1
│ │ │ ├── maven-metadata.xml
│ │ │ ├── maven-metadata.xml.md5
│ │ │ └── maven-metadata.xml.sha1
│ │ │ └── code4ReferencePlugin
│ │ │ ├── 0.1-SNAPSHOT
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152606-1.jar
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152606-1.jar.md5
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152606-1.jar.sha1
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152606-1.pom
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152606-1.pom.md5
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152606-1.pom.sha1
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152800-2.jar
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152800-2.jar.md5
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152800-2.jar.sha1
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152800-2.pom
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152800-2.pom.md5
│ │ │ ├── code4ReferencePlugin-0.1-20120814.152800-2.pom.sha1
│ │ │ ├── code4ReferencePlugin-0.1-20120814.153309-3.jar
│ │ │ ├── code4ReferencePlugin-0.1-20120814.153309-3.jar.md5
│ │ │ ├── code4ReferencePlugin-0.1-20120814.153309-3.jar.sha1
│ │ │ ├── code4ReferencePlugin-0.1-20120814.153309-3.pom
│ │ │ ├── code4ReferencePlugin-0.1-20120814.153309-3.pom.md5
│ │ │ ├── code4ReferencePlugin-0.1-20120814.153309-3.pom.sha1
│ │ │ └── maven-metadata.xml.md5
│ │ │ └── 1.1-SNAPSHOT
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153520-1.jar
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153520-1.jar.md5
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153520-1.jar.sha1
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153520-1.pom
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153520-1.pom.md5
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153520-1.pom.sha1
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153730-2.jar
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153730-2.jar.md5
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153730-2.jar.sha1
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153730-2.pom
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153730-2.pom.md5
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153730-2.pom.sha1
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153816-3.jar
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153816-3.jar.md5
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153816-3.jar.sha1
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153816-3.pom
│ │ │ ├── code4ReferencePlugin-1.1-20120814.153816-3.pom.md5
│ │ │ └── code4ReferencePlugin-1.1-20120814.153816-3.pom.sha1
│ └── user
│ │ └── build.gradle
└── xmlparsing
│ ├── build.gradle
│ ├── gradlexmlexample.xml~
│ └── xmlexample.xml
├── JMeter
├── .classpath
├── .gitignore
├── .project
├── build.gradle
├── build
│ ├── libs
│ │ └── C4RJMeter.jar
│ └── tmp
│ │ └── jar
│ │ └── MANIFEST.MF
├── exampletestplan
│ └── propertyTest.jmx
└── src
│ └── java
│ └── com
│ └── code4reference
│ └── jmeter
│ ├── functions
│ ├── FloatRandomNumber.java
│ ├── IsDefined.java
│ ├── RandomChoice.java
│ ├── RandomRegExValue.java
│ └── TimeInMillis.java
│ └── threads
│ ├── HostThreadGroup.java
│ └── HostThreadGroupGui.java
├── JavaPrograms
├── AirTrafficController
│ ├── .classpath
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.jdt.core.prefs
│ ├── acqueue.ser
│ ├── docs
│ │ └── AirTrafficController.pdf
│ └── src
│ │ └── com
│ │ └── atc
│ │ ├── AC.java
│ │ ├── ACUtility.java
│ │ ├── AcConst.java
│ │ ├── AcManager.java
│ │ ├── AcSize.java
│ │ ├── AcType.java
│ │ ├── PriorityComparator.java
│ │ └── accontroller
│ │ └── AirTrafficControlerConsole.java
└── jarExample
│ ├── MainJar.java
│ ├── code4reference
│ └── com
│ │ └── jar
│ │ └── TestJar.java
│ └── testjar.jar
├── Miscellaneous
├── Integer_swap
│ └── src
│ │ └── IntegerSwap.java
└── env_var
│ ├── EnvRead.java
│ ├── build.gradle
│ ├── env_read.c
│ ├── env_read.py
│ └── env_read.sh
├── PythonPrograms
├── GmailSendEmail.py
├── SendEmail.py
├── SendEmailWithAttachment.py
├── YahooSendEmail.py
├── code4reference.txt
├── csvReadDBWrite.py
├── facebook.py
├── findandreplace.py
├── githubTest.py
├── pic.jpg
├── readxlsFile.py
├── whitelist.txt
└── whitelistOperation.py
├── README.md
├── ShellScripts
└── jarscan.sh
├── mytest.java
└── webApplication
└── HelloWorldWebApp
├── build.gradle
├── build
├── libs
│ └── HelloWorldWebApp.war
└── tmp
│ └── war
│ └── MANIFEST.MF
└── src
└── main
├── java
└── com
│ └── code4reference
│ └── mywebapp
│ └── HelloWorldController.java
└── webapp
└── WEB-INF
├── .jsp
└── hello.jsp
├── .pages
└── list.jsp
├── appContext
├── beans.xml
└── mappings.xml
└── web.xml
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
4 | # Custom for Visual Studio
5 | *.cs diff=csharp
6 | *.sln merge=union
7 | *.csproj merge=union
8 | *.vbproj merge=union
9 | *.fsproj merge=union
10 | *.dbproj merge=union
11 |
12 | # Standard to msysgit
13 | *.doc diff=astextplain
14 | *.DOC diff=astextplain
15 | *.docx diff=astextplain
16 | *.DOCX diff=astextplain
17 | *.dot diff=astextplain
18 | *.DOT diff=astextplain
19 | *.pdf diff=astextplain
20 | *.PDF diff=astextplain
21 | *.rtf diff=astextplain
22 | *.RTF diff=astextplain
23 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Compiled source #
2 | ###################
3 | *.com
4 | *.class
5 | *.dll
6 | *.exe
7 | *.o
8 | *.so
9 | *.ser
10 | *.dex
11 | *.ap_
12 | tempclasses
13 | #Caliper temp folders
14 | ####################
15 | .metadata/
16 | # temp file#
17 | ###########
18 | *~
19 | *.swp
20 | # OS generated files #
21 | ######################
22 | .DS_Store?
23 | #Bin folder
24 | #################
25 | bin/
26 |
27 | #Gradle temp files
28 | #################
29 | .gradle/
30 |
--------------------------------------------------------------------------------
/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | JMeter
4 |
5 |
6 |
7 |
8 |
9 | org.eclipse.jdt.core.javabuilder
10 |
11 |
12 |
13 |
14 |
15 | org.eclipse.jdt.core.javanature
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Algorithm/CPP/char_combination.cpp:
--------------------------------------------------------------------------------
1 | #include
2 | #include
3 | #include
4 | #include
5 | #include
6 | using namespace std;
7 |
8 | #define DEST_SIZE 2
9 |
10 | void rec_combination(char* src, char * dest, int level, int len)
11 | {
12 | if(level==DEST_SIZE)
13 | {
14 | dest[level]='\0';
15 | cout<
2 | #include
3 |
4 | using namespace std;
5 |
6 | void find_number(int array[],int size,int num){
7 |
8 | for(int index=0;index
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Algorithm/Java/InterviewTest/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | InterviewTest
4 |
5 |
6 |
7 |
8 |
9 | org.eclipse.jdt.core.javabuilder
10 |
11 |
12 |
13 |
14 |
15 | org.eclipse.jdt.core.javanature
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Algorithm/Java/InterviewTest/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | #Thu Nov 17 17:03:56 EST 2011
2 | eclipse.preferences.version=1
3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
6 | org.eclipse.jdt.core.compiler.compliance=1.6
7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate
8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate
9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate
10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
12 | org.eclipse.jdt.core.compiler.source=1.6
13 |
--------------------------------------------------------------------------------
/Algorithm/Java/InterviewTest/src/MainTest.java:
--------------------------------------------------------------------------------
1 | import java.util.HashMap;
2 |
3 |
4 |
5 |
6 |
7 | public class MainTest {
8 |
9 | /**
10 | * @param args
11 | */
12 | public static void main(String[] args) {
13 |
14 | // TrieTree tt=new TrieTree();
15 | // tt.insertWord("rakesh");
16 | // System.out.println("----------------------");
17 | // tt.insertWord("rajesh");
18 | //
19 | // if(tt.searchWord("rakesm")){
20 | // System.out.println("Word is present");
21 | // }else{
22 | // System.out.println("Word is not present in the trie ");
23 | // }
24 | //
25 | // tt.printSuggestedWord("rak");
26 |
27 | HashMap hashmap=new HashMap();
28 |
29 |
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/Algorithm/Java/InterviewTest/src/com/search/MatrixSearch.java:
--------------------------------------------------------------------------------
1 | package com.search;
2 |
3 | public class MatrixSearch {
4 |
5 | int [][] array;
6 | int m,n;
7 |
8 | public MatrixSearch(int[][] array, int m, int n){
9 | this.array = array;
10 | this.m = m;
11 | this.n = n;
12 | }
13 |
14 | public boolean seach(int no){
15 |
16 | int column=n-1;
17 | int row=0;
18 | while(column>=0 && rowno){
25 | column--;
26 | }else{
27 | row++;
28 | }
29 | }
30 | return false;
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/Algorithm/Java/InterviewTest/src/com/test/ClassImplMarkerInterface.java:
--------------------------------------------------------------------------------
1 | package com.test;
2 |
3 | public class ClassImplMarkerInterface implements MarkerInterface{
4 | String str;
5 | public ClassImplMarkerInterface(String str){
6 | this.str = str;
7 | }
8 |
9 | public void print(){
10 | System.out.println(str);
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/Algorithm/Java/InterviewTest/src/com/test/MarkerInterface.java:
--------------------------------------------------------------------------------
1 | package com.test;
2 |
3 | public interface MarkerInterface {
4 |
5 | }
6 |
--------------------------------------------------------------------------------
/Algorithm/ReadMe.txt:
--------------------------------------------------------------------------------
1 |
2 | Print array in zigzag order
3 | C/zigzagarray.c
4 |
5 | clockwise inward spiral array Print
6 | CPP/clockwiseiterator.cpp
7 |
8 | combination of characters
9 | CPP/char_combination.cpp
10 |
11 | Reverse stack.
12 | CPP/reverse_stack.cpp
13 |
14 | Given an array such that every number differ from its adjacent number by at max 1. Find a number in this array efficiently.
15 | CPP/find_no_in_array.cpp
16 |
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/gen/com/rakesh/alarmmanagerexample/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.rakesh.alarmmanagerexample;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AlarmManagerExample/ic_launcher-web.png
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AlarmManagerExample/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-16
15 |
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AlarmManagerExample/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AlarmManagerExample/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AlarmManagerExample/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AlarmManagerExample/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AlarmManagerExample/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AlarmManagerExample/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AlarmManagerExample/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/menu/activity_widget_alarm_manager.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/values-large/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 16dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 8dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | AlarmManagerExample
3 | Settings
4 | AlarmManagerExample
5 | Cancel Repeating Timer
6 | Start Repeating Timer
7 | One-time Timer
8 |
--------------------------------------------------------------------------------
/AndroidProjects/AlarmManagerExample/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/gen/com/code4reference/android/buttons/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.code4reference.android.buttons;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidButtons/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-16
15 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidButtons/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidButtons/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidButtons/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidButtons/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidButtons/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidButtons/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/res/menu/activity_main.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/res/values-large/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 16dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 8dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidButtons/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/gen/com/code4reference/androidlayout/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.code4reference.androidlayout;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidLayout/ic_launcher-web.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidLayout/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-16
15 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidLayout/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidLayout/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidLayout/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidLayout/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidLayout/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidLayout/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/AndroidLayout/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/menu/activity_xmllayout.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/values-large/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 16dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 8dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | AndroidLayout
3 | Settings
4 | XMLLayoutActivity
5 | Code4Reference.com
6 | Other Activity
7 | Dynamic Layout Activity
8 |
--------------------------------------------------------------------------------
/AndroidProjects/AndroidLayout/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/gen/com/example/enabledisablebroadcastreceiver/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.example.enabledisablebroadcastreceiver;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver/ic_launcher-web.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-16
15 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/menu/activity_main.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/values-large/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 16dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 8dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | EnableDisableBroadcastReceiver
4 | Enable Broadcast Receiver
5 | Disable Broadcast Receiver
6 | Start Repeating Alarm
7 | Cancel Alarm
8 | Settings
9 | EnableDisableBoradcastReceiver
10 |
11 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/gen/com/code4reference/broadcastreceiver/enabledisable/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.code4reference.broadcastreceiver.enabledisable;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver2/ic_launcher-web.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver2/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-16
15 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/EnableDisableBroadcastReceiver2/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/menu/activity_enable_disable.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/values-large/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 16dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 8dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | EnableDisableBroadcastReceiver2
4 | Settings
5 | EnableDisable
6 | Register Broadcast Receiver
7 | Unregister Broadcast Receiver
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/EnableDisableBroadcastReceiver2/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/gen/com/rakesh/gcmexample/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.rakesh.gcmexample;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/gen/com/rakesh/gcmexample/Manifest.java:
--------------------------------------------------------------------------------
1 | /* AUTO-GENERATED FILE. DO NOT MODIFY.
2 | *
3 | * This class was automatically generated by the
4 | * aapt tool from the resource data it found. It
5 | * should not be modified by hand.
6 | */
7 |
8 | package com.rakesh.gcmexample;
9 |
10 | public final class Manifest {
11 | public static final class permission {
12 | /** Permissions
13 | */
14 | public static final String C2D_MESSAGE="com.rakesh.gcmexample.permission.C2D_MESSAGE";
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAndroidExample/ic_launcher-web.png
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAndroidExample/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/libs/gcm.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAndroidExample/libs/gcm.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-16
15 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAndroidExample/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAndroidExample/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAndroidExample/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAndroidExample/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAndroidExample/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAndroidExample/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAndroidExample/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/layout/activity_gcmmain.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/menu/activity_gcmmain.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/values-large/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 16dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 8dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | GCMExample
4 | Hello world!
5 | Settings
6 | GCMMainActivity
7 |
8 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAndroidExample/src/com/rakesh/gcmexample/Utility.java:
--------------------------------------------------------------------------------
1 | package com.rakesh.gcmexample;
2 |
3 | public class Utility {
4 |
5 | static final String SERVER_URL = null; //Need to fill it here.
6 | static final String SENDER_ID = "114172487736";
7 |
8 |
9 | }
10 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/.settings/com.google.appengine.eclipse.core.prefs:
--------------------------------------------------------------------------------
1 | #Wed Jul 11 23:43:31 PDT 2012
2 | eclipse.preferences.version=1
3 | filesCopiedToWebInfLib=appengine-api-labs.jar|appengine-endpoints.jar|appengine-jsr107cache-1.7.0.jar|jsr107cache-1.1.jar|appengine-api-1.0-sdk-1.7.0.jar|geronimo-jpa_3.0_spec-1.1.1.jar|datanucleus-appengine-1.0.10.final.jar|geronimo-jta_1.1_spec-1.1.1.jar|datanucleus-core-1.1.5.jar|jdo2-api-2.3-eb.jar|datanucleus-jpa-1.1.5.jar
4 | gaeDatanucleusVersion=v1
5 | gaeDeployDialogSettings=
6 | gaeHrdEnabled=true
7 | gaeIsEclipseDefaultInstPath=true
8 | googleCloudSqlEnabled=false
9 | localDevMySqlEnabled=true
10 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/.settings/com.google.gdt.eclipse.core.prefs:
--------------------------------------------------------------------------------
1 | #Wed Jul 11 21:35:19 PDT 2012
2 | eclipse.preferences.version=1
3 | warSrcDir=war
4 | warSrcDirIsOutput=true
5 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | #Wed Jul 11 21:35:23 PDT 2012
2 | eclipse.preferences.version=1
3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
5 | org.eclipse.jdt.core.compiler.compliance=1.6
6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
8 | org.eclipse.jdt.core.compiler.source=1.6
9 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/.settings/org.eclipse.wst.common.project.facet.core.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/src/guestbook/GCMUnregisterServlet.java:
--------------------------------------------------------------------------------
1 | package guestbook;
2 |
3 | import javax.servlet.ServletException;
4 | import javax.servlet.http.HttpServletRequest;
5 | import javax.servlet.http.HttpServletResponse;
6 |
7 | @SuppressWarnings("serial")
8 | public class GCMUnregisterServlet extends GCMBaseServlet {
9 |
10 | private final static String PARAMETER_REG_ID = "regId";
11 | @Override
12 | protected void doPost(HttpServletRequest req, HttpServletResponse resp)
13 | throws ServletException {
14 | String regId = getParameter(req, PARAMETER_REG_ID);
15 | DatastoreFactory.unregisterUser(regId);
16 | setSuccess(resp);
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/appengine-generated/datastore-indexes-auto.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/appengine-generated/local_db.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/WEB-INF/appengine-generated/local_db.bin
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/appengine-web.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | rakeshcusat
4 | 1
5 | true
6 |
7 |
8 |
9 | true
10 |
11 |
12 |
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/appengine-api-1.0-sdk-1.7.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/appengine-api-1.0-sdk-1.7.0.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/appengine-api-labs.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/appengine-api-labs.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/appengine-endpoints.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/appengine-endpoints.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/appengine-jsr107cache-1.7.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/appengine-jsr107cache-1.7.0.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/datanucleus-appengine-1.0.10.final.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/datanucleus-appengine-1.0.10.final.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/datanucleus-core-1.1.5.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/datanucleus-core-1.1.5.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/datanucleus-jpa-1.1.5.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/datanucleus-jpa-1.1.5.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/geronimo-jpa_3.0_spec-1.1.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/geronimo-jpa_3.0_spec-1.1.1.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/geronimo-jta_1.1_spec-1.1.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/geronimo-jta_1.1_spec-1.1.1.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/gson-2.2.2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/gson-2.2.2.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/jdo2-api-2.3-eb.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/jdo2-api-2.3-eb.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/jsr107cache-1.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/WEB-INF/lib/jsr107cache-1.1.jar
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/WEB-INF/logging.properties:
--------------------------------------------------------------------------------
1 | # A default java.util.logging configuration.
2 | # (All App Engine logging is through java.util.logging by default).
3 | #
4 | # To use this configuration, copy it into your application's WEB-INF
5 | # folder and add the following to your appengine-web.xml:
6 | #
7 | #
8 | #
9 | #
10 | #
11 |
12 | # Set the default logging level for all loggers to WARNING
13 | .level = WARNING
14 | guestbook.level = INFO
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/GCMAppEngineExample/war/favicon.ico
--------------------------------------------------------------------------------
/AndroidProjects/GCMAppEngineExample/war/stylesheets/main.css:
--------------------------------------------------------------------------------
1 | body {
2 | font-family: Verdana, Helvetica, sans-serif;
3 | background-color: #FFFFCC;
4 | }
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/gen/com/example/jellybeananimationexample/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.example.jellybeananimationexample;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanAnimationExample/ic_launcher-web.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanAnimationExample/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-16
15 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/anim/fade_in.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/anim/fade_out.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/drawable-hdpi/freelancer2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanAnimationExample/res/drawable-hdpi/freelancer2.jpg
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanAnimationExample/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanAnimationExample/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanAnimationExample/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanAnimationExample/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanAnimationExample/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanAnimationExample/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanAnimationExample/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/layout/activity_animation.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
14 |
15 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/menu/activity_main.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/values-large/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 16dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 8dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | JB Animation
4 | Hello world!
5 | Settings
6 | JB Animation
7 | This is Animation Activity
8 | Scaleup Animation
9 | ThumbNail scaleup Animation
10 | Zoom Animation
11 | Fade Animation
12 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanAnimationExample/src/com/example/jellybeananimationexample/AnimationActivity.java:
--------------------------------------------------------------------------------
1 | package com.example.jellybeananimationexample;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 |
6 | public class AnimationActivity extends Activity {
7 |
8 | @Override
9 | public void onCreate(Bundle savedInstanceState) {
10 | super.onCreate(savedInstanceState);
11 | setContentView(R.layout.activity_animation);
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/gen/com/example/jellybeanclipboard/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.example.jellybeanclipboard;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanClipboard/ic_launcher-web.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanClipboard/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-16
15 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanClipboard/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanClipboard/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanClipboard/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanClipboard/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanClipboard/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanClipboard/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanClipboard/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/res/menu/activity_jbclipboard.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/res/values-large/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 16dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 8dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanClipboard/src/com/code4reference/rakesh/jellybeanclipboard/Utility.java:
--------------------------------------------------------------------------------
1 | package com.code4reference.rakesh.jellybeanclipboard;
2 |
3 | import android.content.Context;
4 | import android.widget.Toast;
5 |
6 | public class Utility {
7 |
8 | public static void showToastMessage(Context context, String message, int duration){
9 | Toast.makeText(context, message, duration).show();
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/bin/JellyBeanNotificationExample.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/bin/JellyBeanNotificationExample.apk
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-ldpi/ic_launcher_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-ldpi/ic_launcher_share.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-ldpi/ic_launcher_web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-ldpi/ic_launcher_web.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/bin/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/gen/com/example/jellybeannotificationexample/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.example.jellybeannotificationexample;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/ic_launcher-web.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-16
15 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/drawable-hdpi/big_picture.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/res/drawable-hdpi/big_picture.jpg
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/drawable-ldpi/ic_launcher_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/res/drawable-ldpi/ic_launcher_share.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/drawable-ldpi/ic_launcher_web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/res/drawable-ldpi/ic_launcher_web.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/JellyBeanNotificationExample/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/drawable/button_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/layout/handle_notification_activity.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
16 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/menu/activity_main.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/values-large/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 16dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 8dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/JellyBeanNotificationExample/src/com/example/jellybeannotificationexample/HandleNotificationActivity.java:
--------------------------------------------------------------------------------
1 | package com.example.jellybeannotificationexample;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 |
6 | public class HandleNotificationActivity extends Activity {
7 |
8 | @Override
9 | protected void onCreate(Bundle savedInstanceState) {
10 | super.onCreate(savedInstanceState);
11 | setContentView(R.layout.handle_notification_activity);
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | #Mon Apr 04 21:49:15 EDT 2011
2 | eclipse.preferences.version=1
3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
4 | org.eclipse.jdt.core.compiler.compliance=1.5
5 | org.eclipse.jdt.core.compiler.source=1.5
6 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/default.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system use,
7 | # "build.properties", and override values to adapt the script to your
8 | # project structure.
9 |
10 | # Project target.
11 | target=Google Inc.:Google APIs:8
12 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/gen/com/rak/letmeknow/Manifest.java:
--------------------------------------------------------------------------------
1 | /* AUTO-GENERATED FILE. DO NOT MODIFY.
2 | *
3 | * This class was automatically generated by the
4 | * aapt tool from the resource data it found. It
5 | * should not be modified by hand.
6 | */
7 |
8 | package com.rak.letmeknow;
9 |
10 | public final class Manifest {
11 | public static final class permission {
12 | /** Only this application can receive the messages and registration result
13 | */
14 | public static final String C2D_MESSAGE="com.rak.letmeknow.permission.C2D_MESSAGE";
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable-ldpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable-ldpi/icon.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable-mdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable-mdpi/icon.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/add_group_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/add_group_colored.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/add_group_colored.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/add_group_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/add_group_grey.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/add_group_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/add_group_pressed.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/allgroup_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/allgroup_pressed.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/allgroups_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/allgroups_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/allgroups_white.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/myevents_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/myevents_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/myevents_pressed.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/myevents_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/myevents_white.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/mygroups_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/mygroups_pressed.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/mygroups_tab.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/mygroups_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/mygroups_white.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/refresh.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/send.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/send.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/send1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/send1.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/time.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/time.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/time1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/time1.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/drawable/trash_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/LetMeKnow/res/drawable/trash_icon.png
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/layout/accounts.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/layout/datepicker.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/layout/group_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/layout/timepicker.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World, LetMeKnow!
4 | LetMeKnow
5 | AllGroups
6 | MyGroups
7 | CreateGroup
8 | No items
9 | Selected
10 |
11 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/src/com/rak/letmeknow/ActivityInterface.java:
--------------------------------------------------------------------------------
1 | package com.rak.letmeknow;
2 |
3 | public interface ActivityInterface {
4 | public abstract void onData(String data);
5 | }
6 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/src/com/rak/letmeknow/Group.java:
--------------------------------------------------------------------------------
1 | package com.rak.letmeknow;
2 |
3 | public class Group {
4 | private String event;
5 | private boolean state;
6 |
7 | public Group( String event, boolean state ) {
8 | this.event = event;
9 | this.state = state;
10 | }
11 |
12 | public String getEvent() {
13 | return event;
14 | }
15 |
16 |
17 | public boolean getState() {
18 | return state;
19 | }
20 |
21 | public void setEvent(String event) {
22 | this.event = event;
23 | }
24 |
25 | public void setState(boolean state) {
26 | this.state = state;
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/src/com/rak/letmeknow/TGroupActivity.java:
--------------------------------------------------------------------------------
1 | package com.rak.letmeknow;
2 |
3 | import android.content.Intent;
4 | import android.os.Bundle;
5 |
6 | public class TGroupActivity extends TabGroupActivity {
7 | @Override
8 | public void onCreate(Bundle savedInstanceState) {
9 | super.onCreate(savedInstanceState);
10 | startChildActivity("MyEvents", new Intent(this,MyEvents.class));
11 | }
12 |
13 | }
14 |
--------------------------------------------------------------------------------
/AndroidProjects/LetMeKnow/src/com/rak/letmeknow/URLReader.java:
--------------------------------------------------------------------------------
1 | package com.rak.letmeknow;
2 |
3 | public class URLReader {
4 |
5 | public static String getHost(){
6 |
7 | return "http://yevgenius.com/LMKWebV1/";
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/gen/com/code4reference/orientationspecificlayout/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.code4reference.orientationspecificlayout;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/OrientationSpecificLayout/ic_launcher-web.png
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/OrientationSpecificLayout/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-16
15 |
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/OrientationSpecificLayout/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/OrientationSpecificLayout/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/OrientationSpecificLayout/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/OrientationSpecificLayout/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/OrientationSpecificLayout/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/OrientationSpecificLayout/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/OrientationSpecificLayout/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/res/menu/activity_main.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/res/values-large/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 16dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 8dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/src/com/code4reference/orientationspecificlayout/AutomaticOrientation.java:
--------------------------------------------------------------------------------
1 | package com.code4reference.orientationspecificlayout;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 |
6 | public class AutomaticOrientation extends Activity {
7 |
8 | @Override
9 | protected void onCreate(Bundle savedInstanceState) {
10 | super.onCreate(savedInstanceState);
11 | setContentView(R.layout.activity_automatic);
12 | }
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/AndroidProjects/OrientationSpecificLayout/src/com/code4reference/orientationspecificlayout/RestrictedOrientation.java:
--------------------------------------------------------------------------------
1 | package com.code4reference.orientationspecificlayout;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 |
6 | public class RestrictedOrientation extends Activity {
7 |
8 | @Override
9 | protected void onCreate(Bundle savedInstanceState) {
10 | super.onCreate(savedInstanceState);
11 | setContentView(R.layout.activity_restricted);
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/AndroidProjects/SimpleSMSApp/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/SimpleSMSApp/bin/jarlist.cache:
--------------------------------------------------------------------------------
1 | # cache for current jar dependecy. DO NOT EDIT.
2 | # format is
3 | # Encoding is UTF-8
4 |
--------------------------------------------------------------------------------
/AndroidProjects/SimpleSMSApp/bin/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/SimpleSMSApp/bin/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/SimpleSMSApp/bin/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/SimpleSMSApp/bin/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/SimpleSMSApp/bin/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/SimpleSMSApp/bin/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/SimpleSMSApp/bin/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/SimpleSMSApp/bin/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/SimpleSMSApp/gen/com/rakesh/simpleSms/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.rakesh.simpleSms;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/SimpleSMSApp/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=Google Inc.:Google APIs:10
15 |
--------------------------------------------------------------------------------
/AndroidProjects/SimpleSMSApp/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/SimpleSMSApp/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/SimpleSMSApp/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/SimpleSMSApp/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/SimpleSMSApp/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/SimpleSMSApp/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/SimpleSMSApp/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/SimpleSMSApp/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/SimpleSMSApp/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Phone number
5 | Message
6 | SimpleSMSApp
7 | Send
8 |
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/bin/VoiceRecognitionExample.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/bin/VoiceRecognitionExample.apk
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/bin/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/gen/com/rakesh/voicerecognitionexample/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.rakesh.voicerecognitionexample;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/ic_launcher-web.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-16
15 |
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/VoiceRecognitionExample/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/res/menu/activity_voice_recognition.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/res/values-large/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 16dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 8dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/VoiceRecognitionExample/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/gen/com/rakesh/widgetalarmmanagerexample/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.rakesh.widgetalarmmanagerexample;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/WidgetAlarmManagerExample/ic_launcher-web.png
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/WidgetAlarmManagerExample/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-16
15 |
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/WidgetAlarmManagerExample/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/WidgetAlarmManagerExample/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/WidgetAlarmManagerExample/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/WidgetAlarmManagerExample/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/WidgetAlarmManagerExample/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/WidgetAlarmManagerExample/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/WidgetAlarmManagerExample/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/drawable/widget_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/layout/activity_widget_alarm_manager.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/menu/activity_widget_alarm_manager.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/values-large/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 16dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 8dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | WidgetAlarmManagerExample
4 | Settings
5 | WidgetAlarmManagerActivity
6 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/res/xml/widget_metadata.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/AndroidProjects/WidgetAlarmManagerExample/src/com/rakesh/widgetalarmmanagerexample/Utility.java:
--------------------------------------------------------------------------------
1 | package com.rakesh.widgetalarmmanagerexample;
2 |
3 | import java.text.Format;
4 | import java.text.SimpleDateFormat;
5 | import java.util.Date;
6 |
7 | public class Utility {
8 | public static String getCurrentTime(String timeformat){
9 | Format formatter = new SimpleDateFormat(timeformat);
10 | return formatter.format(new Date());
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
3 | org.eclipse.jdt.core.compiler.compliance=1.5
4 | org.eclipse.jdt.core.compiler.source=1.5
5 |
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/bin/jarlist.cache:
--------------------------------------------------------------------------------
1 | # cache for current jar dependecy. DO NOT EDIT.
2 | # format is
3 | # Encoding is UTF-8
4 |
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/bin/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/simpleWidgetExample/bin/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/bin/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/simpleWidgetExample/bin/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/bin/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/simpleWidgetExample/bin/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/bin/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/simpleWidgetExample/bin/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/bin/res/drawable/widget_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/simpleWidgetExample/bin/res/drawable/widget_icon.png
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/bin/simpleWidgetExample.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/simpleWidgetExample/bin/simpleWidgetExample.apk
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/gen/com/rakesh/simplewidget/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.rakesh.simplewidget;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=Google Inc.:Google APIs:10
15 |
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/simpleWidgetExample/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/simpleWidgetExample/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/simpleWidgetExample/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/simpleWidgetExample/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/res/drawable/background.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/res/drawable/button_shape.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/res/drawable/widget_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/AndroidProjects/simpleWidgetExample/res/drawable/widget_icon.png
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/res/layout/main.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/res/layout/widget_layout.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
14 |
15 |
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Data-packet widget
5 |
6 | Enable Data-Packet
7 | Disable Data-Packet
8 | Enable
9 | Disable
10 | Enable/Disable
11 |
--------------------------------------------------------------------------------
/AndroidProjects/simpleWidgetExample/res/xml/widget_metadata.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/ApacheBeamPipelines/README.md:
--------------------------------------------------------------------------------
1 | This directory is going to have Apache Beam pipeline examples mostly in Python language.
2 |
3 |
--------------------------------------------------------------------------------
/CaliperProjects/RegularExpression/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | RegularExpression
4 |
5 |
6 |
7 |
8 |
9 | org.eclipse.jdt.core.javabuilder
10 |
11 |
12 |
13 |
14 |
15 | org.eclipse.jdt.core.javanature
16 |
17 |
18 |
--------------------------------------------------------------------------------
/CaliperProjects/RegularExpression/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | #Sat Aug 25 14:16:30 PDT 2012
2 | eclipse.preferences.version=1
3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
6 | org.eclipse.jdt.core.compiler.compliance=1.6
7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate
8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate
9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate
10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
12 | org.eclipse.jdt.core.compiler.source=1.6
13 |
--------------------------------------------------------------------------------
/CaliperProjects/RegularExpression/src/com/code4refernce/caliper/CaliperRunner.java:
--------------------------------------------------------------------------------
1 | package com.code4refernce.caliper;
2 | import com.google.caliper.Runner;
3 |
4 | public class CaliperRunner {
5 | public static void main(String[] args) {
6 | String myargs[] = new String[1];
7 | myargs[0] = new String("-Dindex=0,1,2,3,4,5,6,7,8,9,10");
8 | Runner.main(SimpleCaliperTest.class, myargs);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/CaliperProjects/common-libs/caliper-allocation-0.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/CaliperProjects/common-libs/caliper-allocation-0.0.jar
--------------------------------------------------------------------------------
/CaliperProjects/common-libs/caliper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/CaliperProjects/common-libs/caliper.jar
--------------------------------------------------------------------------------
/GradleExample/.gitignore:
--------------------------------------------------------------------------------
1 | # git ignore list
2 | ####################
3 | build
4 | .gradle
5 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/.gitignore:
--------------------------------------------------------------------------------
1 | #git ignore folder local to the parent folder
2 | ##########################################
3 | repo/
4 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/plugin/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'groovy'
2 | apply plugin: 'maven'
3 | dependencies {
4 | compile gradleApi()
5 | groovy localGroovy()
6 | }
7 | repositories {
8 | mavenCentral()
9 | }
10 |
11 | group='com.code4reference'
12 | version='1.1-SNAPSHOT'
13 |
14 | uploadArchives {
15 | repositories {
16 | mavenDeployer {
17 | repository(url: uri('../repo'))
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/plugin/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'code4ReferencePlugin'
2 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/plugin/src/main/groovy/com/code4reference/gradle/Code4ReferencePlugin.groovy:
--------------------------------------------------------------------------------
1 | package com.code4reference.gradle;
2 |
3 | import org.gradle.api.*;
4 |
5 | class Code4ReferencePlugin implements Plugin {
6 | def void apply(Project project) {
7 | project.task('c4rTask') << {
8 | println "Hi from Code4Reference plugin!"
9 | }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/plugin/src/main/resources/META-INF/gradle-plugins/code4reference.properties:
--------------------------------------------------------------------------------
1 | implementation-class=com.code4reference.gradle.Code4ReferencePlugin
2 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-1/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.jar.md5:
--------------------------------------------------------------------------------
1 | f122faaa134605f58cb161bd5d35bec1
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.jar.sha1:
--------------------------------------------------------------------------------
1 | 320142f1a26c48973e36e737ba99f0f78779122f
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | Code4ReferencePlugin
7 | 0.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.pom.md5:
--------------------------------------------------------------------------------
1 | a78c5db015774e8e7b3e62b9c53f6418
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.pom.sha1:
--------------------------------------------------------------------------------
1 | fed2ae8dccd39eaa1198f89bac07ad8475707739
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/maven-metadata.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | com.code4reference
4 | code4ReferencePlugin
5 | 0.1-SNAPSHOT
6 |
7 |
8 | 20120814.153309
9 | 3
10 |
11 | 20120814153309
12 |
13 |
14 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/maven-metadata.xml.sha1:
--------------------------------------------------------------------------------
1 | 05ac20d818be027d6cd23baec30233c07f289c6a
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/Code4ReferencePlugin/maven-metadata.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | com.code4reference
4 | code4ReferencePlugin
5 | 0.1-SNAPSHOT
6 |
7 |
8 | 0.1-SNAPSHOT
9 | 1.1-SNAPSHOT
10 |
11 | 20120816164441
12 |
13 |
14 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/Code4ReferencePlugin/maven-metadata.xml.sha1:
--------------------------------------------------------------------------------
1 | 1d0bedbcc1d65afabe87f2a16cc3a80de5f5fbd2
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.jar.md5:
--------------------------------------------------------------------------------
1 | 77a23f9eb79c951ab981202845e035dd
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.jar.sha1:
--------------------------------------------------------------------------------
1 | 04b35337937d6a297a22cf9d25fd9e391ee645e1
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | code4ReferencePlugin
7 | 0.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.pom.md5:
--------------------------------------------------------------------------------
1 | df53467262b9df433c365f4f7c4f437a
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.pom.sha1:
--------------------------------------------------------------------------------
1 | 9cbb28f8571c1023bd8cb1bdbb1b33ee2125aea7
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.jar.md5:
--------------------------------------------------------------------------------
1 | d022c2dfb9b79a809b19c8e4973f6220
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.jar.sha1:
--------------------------------------------------------------------------------
1 | 6347728adf18d5269e857d9fe42aec64907730f2
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | code4ReferencePlugin
7 | 0.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.pom.md5:
--------------------------------------------------------------------------------
1 | df53467262b9df433c365f4f7c4f437a
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.pom.sha1:
--------------------------------------------------------------------------------
1 | 9cbb28f8571c1023bd8cb1bdbb1b33ee2125aea7
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.jar.md5:
--------------------------------------------------------------------------------
1 | d022c2dfb9b79a809b19c8e4973f6220
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.jar.sha1:
--------------------------------------------------------------------------------
1 | 6347728adf18d5269e857d9fe42aec64907730f2
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | code4ReferencePlugin
7 | 0.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.pom.md5:
--------------------------------------------------------------------------------
1 | df53467262b9df433c365f4f7c4f437a
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.pom.sha1:
--------------------------------------------------------------------------------
1 | 9cbb28f8571c1023bd8cb1bdbb1b33ee2125aea7
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/maven-metadata.xml.md5:
--------------------------------------------------------------------------------
1 | 4ce0dc13d05c8964fc735dd159db238b
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.jar.md5:
--------------------------------------------------------------------------------
1 | 8b89c13c77e9629e5f6f644c18b6160f
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.jar.sha1:
--------------------------------------------------------------------------------
1 | fc7e90f9be6b8828c89049f45c5b2535c391774f
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | code4ReferencePlugin
7 | 1.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.pom.md5:
--------------------------------------------------------------------------------
1 | 534a6eaf79154694b30ccc7e86355bef
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.pom.sha1:
--------------------------------------------------------------------------------
1 | 096346605f787690d661539dd9bd8dff4db5d979
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.jar.md5:
--------------------------------------------------------------------------------
1 | 38fdab081954ceb953e75375dae2006a
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.jar.sha1:
--------------------------------------------------------------------------------
1 | f44dffabad3a613bed3ae8fa3a4ebe700232bb73
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | code4ReferencePlugin
7 | 1.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.pom.md5:
--------------------------------------------------------------------------------
1 | 534a6eaf79154694b30ccc7e86355bef
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.pom.sha1:
--------------------------------------------------------------------------------
1 | 096346605f787690d661539dd9bd8dff4db5d979
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.jar.md5:
--------------------------------------------------------------------------------
1 | f8b4f8c479c47a9e67b89552bfd8594b
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.jar.sha1:
--------------------------------------------------------------------------------
1 | d394235a6467b40ce4d9db7fdb73888867069b28
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | code4ReferencePlugin
7 | 1.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.pom.md5:
--------------------------------------------------------------------------------
1 | 534a6eaf79154694b30ccc7e86355bef
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.pom.sha1:
--------------------------------------------------------------------------------
1 | 096346605f787690d661539dd9bd8dff4db5d979
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/maven-metadata.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | com.code4reference
4 | code4ReferencePlugin
5 | 1.1-SNAPSHOT
6 |
7 |
8 | 20120816.164441
9 | 5
10 |
11 | 20120816164442
12 |
13 |
14 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/maven-metadata.xml.md5:
--------------------------------------------------------------------------------
1 | d2cdc367e5ab9a38870fb1b4c39ef4b5
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/maven-metadata.xml.sha1:
--------------------------------------------------------------------------------
1 | c0bd5b1caed2a60fc7c1daa5e5195e78537baa55
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/repo/com/code4reference/code4ReferencePlugin/maven-metadata.xml.md5:
--------------------------------------------------------------------------------
1 | 5dce7ab44a93b7a43188461fa4f2fe69
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-1/user/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | repositories {
3 | maven {
4 | url uri('../repo')
5 | }
6 | }
7 | dependencies {
8 | classpath group: 'com.code4reference', name: 'code4ReferencePlugin', version: '1.1-SNAPSHOT'
9 | }
10 | }
11 | apply plugin: 'code4reference'
12 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/.gitignore:
--------------------------------------------------------------------------------
1 | #git ignore folder local to this parent folder
2 | ############################################
3 | repo/
4 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/plugin/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'groovy'
2 | apply plugin: 'maven'
3 | dependencies {
4 | compile gradleApi()
5 | groovy localGroovy()
6 | }
7 | repositories {
8 | mavenCentral()
9 | }
10 |
11 | group='com.code4reference'
12 | version='1.2-SNAPSHOT'
13 |
14 | uploadArchives {
15 | repositories {
16 | mavenDeployer {
17 | repository(url: uri('../repo'))
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/plugin/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'code4ReferencePlugin'
2 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/plugin/src/main/groovy/com/code4reference/gradle/Code4ReferenceTask.groovy:
--------------------------------------------------------------------------------
1 | package com.code4reference.gradle;
2 |
3 | import org.gradle.api.DefaultTask
4 | import org.gradle.api.tasks.TaskAction
5 |
6 | class Code4ReferenceTask extends DefaultTask {
7 |
8 | @TaskAction
9 | def showMessage() {
10 | println "------------showMessage-------------------"
11 | println "From : ${project.c4rArgs.sender},\
12 | message : ${project.c4rArgs.message}"
13 | println "To : ${project.c4rArgs.nestedArgs.receiver},\
14 | email : ${project.c4rArgs.nestedArgs.email}"
15 |
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/plugin/src/main/resources/META-INF/gradle-plugins/code4reference.properties:
--------------------------------------------------------------------------------
1 | implementation-class=com.code4reference.gradle.Code4ReferencePlugin
2 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/plugin/src/test/groovy/com/code4reference/gradle/Code4ReferencePluginTest.groovy:
--------------------------------------------------------------------------------
1 | package com.code4reference.gradle;
2 |
3 | import org.junit.Test
4 | import org.gradle.testfixtures.ProjectBuilder
5 | import org.gradle.api.Project
6 | import static org.junit.Assert.*
7 |
8 | class Code4ReferencePluginTest {
9 | @Test
10 | public void code4referencePluginAddsCode4ReferenceTaskToProject() {
11 | Project project = ProjectBuilder.builder().build()
12 | project.apply plugin: 'code4reference'
13 | println "code4referencePluginAddsCode4ReferenceTaskToProject"
14 | assertTrue(project.tasks.c4rTask instanceof Code4ReferenceTask)
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/plugin/src/test/groovy/com/code4reference/gradle/Code4ReferenceTaskTest.groovy:
--------------------------------------------------------------------------------
1 | package com.code4reference.gradle;
2 |
3 | import org.junit.Test
4 | import org.gradle.testfixtures.ProjectBuilder
5 | import org.gradle.api.Project
6 | import static org.junit.Assert.*
7 |
8 | class Code4ReferenceTaskTest {
9 | @Test
10 | public void canAddTaskToProject() {
11 | Project project = ProjectBuilder.builder().build()
12 | def task = project.task('c4rtakstest', type: Code4ReferenceTask)
13 | assertTrue(task instanceof Code4ReferenceTask)
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-2/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.jar.md5:
--------------------------------------------------------------------------------
1 | f122faaa134605f58cb161bd5d35bec1
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.jar.sha1:
--------------------------------------------------------------------------------
1 | 320142f1a26c48973e36e737ba99f0f78779122f
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | Code4ReferencePlugin
7 | 0.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.pom.md5:
--------------------------------------------------------------------------------
1 | a78c5db015774e8e7b3e62b9c53f6418
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/Code4ReferencePlugin-0.1-20120814.145630-1.pom.sha1:
--------------------------------------------------------------------------------
1 | fed2ae8dccd39eaa1198f89bac07ad8475707739
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/maven-metadata.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | com.code4reference
4 | code4ReferencePlugin
5 | 0.1-SNAPSHOT
6 |
7 |
8 | 20120814.153309
9 | 3
10 |
11 | 20120814153309
12 |
13 |
14 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/Code4ReferencePlugin/0.1-SNAPSHOT/maven-metadata.xml.sha1:
--------------------------------------------------------------------------------
1 | 05ac20d818be027d6cd23baec30233c07f289c6a
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/Code4ReferencePlugin/maven-metadata.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | com.code4reference
4 | Code4ReferencePlugin
5 | 0.1-SNAPSHOT
6 |
7 |
8 | 0.1-SNAPSHOT
9 |
10 | 20120814145630
11 |
12 |
13 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/Code4ReferencePlugin/maven-metadata.xml.md5:
--------------------------------------------------------------------------------
1 | 922f23f4bfc5bf764593330d4ae7a30a
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/Code4ReferencePlugin/maven-metadata.xml.sha1:
--------------------------------------------------------------------------------
1 | e8e5911f85318421201e80b60ad208af3b2b11e5
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.jar.md5:
--------------------------------------------------------------------------------
1 | 77a23f9eb79c951ab981202845e035dd
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.jar.sha1:
--------------------------------------------------------------------------------
1 | 04b35337937d6a297a22cf9d25fd9e391ee645e1
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | code4ReferencePlugin
7 | 0.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.pom.md5:
--------------------------------------------------------------------------------
1 | df53467262b9df433c365f4f7c4f437a
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152606-1.pom.sha1:
--------------------------------------------------------------------------------
1 | 9cbb28f8571c1023bd8cb1bdbb1b33ee2125aea7
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.jar.md5:
--------------------------------------------------------------------------------
1 | d022c2dfb9b79a809b19c8e4973f6220
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.jar.sha1:
--------------------------------------------------------------------------------
1 | 6347728adf18d5269e857d9fe42aec64907730f2
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | code4ReferencePlugin
7 | 0.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.pom.md5:
--------------------------------------------------------------------------------
1 | df53467262b9df433c365f4f7c4f437a
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.152800-2.pom.sha1:
--------------------------------------------------------------------------------
1 | 9cbb28f8571c1023bd8cb1bdbb1b33ee2125aea7
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.jar.md5:
--------------------------------------------------------------------------------
1 | d022c2dfb9b79a809b19c8e4973f6220
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.jar.sha1:
--------------------------------------------------------------------------------
1 | 6347728adf18d5269e857d9fe42aec64907730f2
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | code4ReferencePlugin
7 | 0.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.pom.md5:
--------------------------------------------------------------------------------
1 | df53467262b9df433c365f4f7c4f437a
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/code4ReferencePlugin-0.1-20120814.153309-3.pom.sha1:
--------------------------------------------------------------------------------
1 | 9cbb28f8571c1023bd8cb1bdbb1b33ee2125aea7
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/0.1-SNAPSHOT/maven-metadata.xml.md5:
--------------------------------------------------------------------------------
1 | 4ce0dc13d05c8964fc735dd159db238b
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.jar.md5:
--------------------------------------------------------------------------------
1 | 8b89c13c77e9629e5f6f644c18b6160f
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.jar.sha1:
--------------------------------------------------------------------------------
1 | fc7e90f9be6b8828c89049f45c5b2535c391774f
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | code4ReferencePlugin
7 | 1.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.pom.md5:
--------------------------------------------------------------------------------
1 | 534a6eaf79154694b30ccc7e86355bef
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153520-1.pom.sha1:
--------------------------------------------------------------------------------
1 | 096346605f787690d661539dd9bd8dff4db5d979
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.jar.md5:
--------------------------------------------------------------------------------
1 | 38fdab081954ceb953e75375dae2006a
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.jar.sha1:
--------------------------------------------------------------------------------
1 | f44dffabad3a613bed3ae8fa3a4ebe700232bb73
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | code4ReferencePlugin
7 | 1.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.pom.md5:
--------------------------------------------------------------------------------
1 | 534a6eaf79154694b30ccc7e86355bef
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153730-2.pom.sha1:
--------------------------------------------------------------------------------
1 | 096346605f787690d661539dd9bd8dff4db5d979
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.jar
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.jar.md5:
--------------------------------------------------------------------------------
1 | f8b4f8c479c47a9e67b89552bfd8594b
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.jar.sha1:
--------------------------------------------------------------------------------
1 | d394235a6467b40ce4d9db7fdb73888867069b28
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.pom:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.code4reference
6 | code4ReferencePlugin
7 | 1.1-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.pom.md5:
--------------------------------------------------------------------------------
1 | 534a6eaf79154694b30ccc7e86355bef
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/repo/com/code4reference/code4ReferencePlugin/1.1-SNAPSHOT/code4ReferencePlugin-1.1-20120814.153816-3.pom.sha1:
--------------------------------------------------------------------------------
1 | 096346605f787690d661539dd9bd8dff4db5d979
--------------------------------------------------------------------------------
/GradleExample/custom-plugin-2/user/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | repositories {
3 | maven {
4 | url uri('../repo')
5 | }
6 | }
7 | dependencies {
8 | classpath group: 'com.code4reference',
9 | name: 'code4ReferencePlugin',
10 | version: '1.2-SNAPSHOT'
11 | }
12 | }
13 |
14 | apply plugin: 'code4reference'
15 |
16 | c4rArgs {
17 | sender = 'Rakesh'
18 | message = 'Hello there !!!!'
19 |
20 | nestedArgs{
21 | receiver = "gradleAdmin"
22 | email = "gradleAdmin@code4reference.com"
23 | }
24 | }
25 |
26 |
27 |
--------------------------------------------------------------------------------
/GradleExample/xmlparsing/build.gradle:
--------------------------------------------------------------------------------
1 | task parseXml() {
2 | def parsedProjectXml = (new XmlParser()).parse('xmlexample.xml')
3 | println "project Name : " + parsedProjectXml.@name +
4 | ", version : " + parsedProjectXml.@version
5 | println "ModuleList name : " + parsedProjectXml.modulelist[0].@name +
6 | ", shortName : " + parsedProjectXml.modulelist[0].@shortName
7 | parsedProjectXml.modulelist.module.each{ module ->
8 | println "Name : " + module.@name + ", version : " + module.@version
9 | }
10 | println parsedProjectXml.description.text()
11 | }
12 |
--------------------------------------------------------------------------------
/GradleExample/xmlparsing/gradlexmlexample.xml~:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/GradleExample/xmlparsing/xmlexample.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | This is simple xml parser in gradle
8 |
9 |
--------------------------------------------------------------------------------
/JMeter/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/JMeter/.gitignore:
--------------------------------------------------------------------------------
1 | #Build directories
2 | ##################
3 | bin/
4 |
5 |
6 | #Class files or Objects.
7 | ########################
8 | *.class
9 |
10 |
--------------------------------------------------------------------------------
/JMeter/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | JMeter
4 |
5 |
6 |
7 |
8 |
9 | org.eclipse.jdt.core.javabuilder
10 |
11 |
12 |
13 |
14 |
15 | org.eclipse.jdt.core.javanature
16 |
17 |
18 |
--------------------------------------------------------------------------------
/JMeter/build/libs/C4RJMeter.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/JMeter/build/libs/C4RJMeter.jar
--------------------------------------------------------------------------------
/JMeter/build/tmp/jar/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 |
3 |
--------------------------------------------------------------------------------
/JavaPrograms/AirTrafficController/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/JavaPrograms/AirTrafficController/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | AirTrafficController
4 |
5 |
6 |
7 |
8 |
9 | org.eclipse.jdt.core.javabuilder
10 |
11 |
12 |
13 |
14 |
15 | org.eclipse.jdt.core.javanature
16 |
17 |
18 |
--------------------------------------------------------------------------------
/JavaPrograms/AirTrafficController/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | #Sun Oct 09 21:33:15 EDT 2011
2 | eclipse.preferences.version=1
3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
6 | org.eclipse.jdt.core.compiler.compliance=1.6
7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate
8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate
9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate
10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
12 | org.eclipse.jdt.core.compiler.source=1.6
13 |
--------------------------------------------------------------------------------
/JavaPrograms/AirTrafficController/acqueue.ser:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/JavaPrograms/AirTrafficController/acqueue.ser
--------------------------------------------------------------------------------
/JavaPrograms/AirTrafficController/docs/AirTrafficController.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/JavaPrograms/AirTrafficController/docs/AirTrafficController.pdf
--------------------------------------------------------------------------------
/JavaPrograms/AirTrafficController/src/com/atc/ACUtility.java:
--------------------------------------------------------------------------------
1 | package com.atc;
2 |
3 | public class AcUtility {
4 | public static String newLine(){
5 | return System.getProperty("line.separator");
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/JavaPrograms/AirTrafficController/src/com/atc/AcConst.java:
--------------------------------------------------------------------------------
1 | package com.atc;
2 |
3 | public interface AcConst {
4 | public final static Integer INITIAL_PRIORITY_QUEUE_SIZE = 20;
5 | public final static String SERIALIZED_FILE ="acqueue.ser";
6 | }
7 |
--------------------------------------------------------------------------------
/JavaPrograms/AirTrafficController/src/com/atc/AcSize.java:
--------------------------------------------------------------------------------
1 | package com.atc;
2 | /**
3 | * This Enum defines the various sizes of Aircraft
4 | * @author Rakesh Kumar
5 | *
6 | */
7 |
8 | public enum AcSize {
9 | BIG, SMALL;
10 |
11 | /**
12 | * static method to convert the integer value to AcSize enum value
13 | * @param enumVal integer value of enum
14 | * @return returns AcSize enum variable
15 | */
16 | public static AcSize intToEnum(Integer enumVal){
17 |
18 | AcSize acSize;
19 |
20 | switch(enumVal){
21 | case 1:
22 | acSize=AcSize.BIG;
23 | break;
24 | case 2:
25 | acSize=AcSize.SMALL;
26 | break;
27 | default:
28 | acSize=null;
29 | }
30 | return acSize;
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/JavaPrograms/AirTrafficController/src/com/atc/PriorityComparator.java:
--------------------------------------------------------------------------------
1 | package com.atc;
2 |
3 | import java.util.Comparator;
4 |
5 | public class PriorityComparator implements Comparator {
6 | /**
7 | * This class has not been used currently, but later it will be used in shorting the
8 | * object array.
9 | */
10 | @Override
11 | public int compare(Ac acFirst, Ac acSecond) {
12 | /*comparing the priority of the Aircraft*/
13 | return (acFirst.getPriority()-acSecond.getPriority());
14 | }
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/JavaPrograms/jarExample/MainJar.java:
--------------------------------------------------------------------------------
1 | import code4reference.com.jar.TestJar;
2 |
3 | class MainJar{
4 | public static void main(String args[]){
5 |
6 | TestJar testjar = new TestJar();
7 |
8 | testjar.print();
9 |
10 | }
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/JavaPrograms/jarExample/code4reference/com/jar/TestJar.java:
--------------------------------------------------------------------------------
1 | package code4reference.com.jar;
2 |
3 | public class TestJar {
4 |
5 | public void print(){
6 | System.out.println("Hello World! from TestJar");
7 | }
8 |
9 | }
10 |
--------------------------------------------------------------------------------
/JavaPrograms/jarExample/testjar.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/JavaPrograms/jarExample/testjar.jar
--------------------------------------------------------------------------------
/Miscellaneous/env_var/EnvRead.java:
--------------------------------------------------------------------------------
1 | import java.util.Map;
2 |
3 | public class EnvRead {
4 | public static void main (String[] args) {
5 | Map env = System.getenv();
6 | System.out.println(env.get("HOME"));
7 |
8 | }
9 | }
10 |
11 |
--------------------------------------------------------------------------------
/Miscellaneous/env_var/build.gradle:
--------------------------------------------------------------------------------
1 | task env_read<<{
2 |
3 | println "$System.env.HOME"
4 |
5 | //Other way
6 | println System.getenv()['HOME']
7 |
8 | //
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/Miscellaneous/env_var/env_read.c:
--------------------------------------------------------------------------------
1 | #include
2 | #include
3 |
4 | void print_env(char * env_var){
5 |
6 | char *path = getenv (env_var);
7 |
8 | if (path!=NULL){
9 | printf (" %s \n",path);
10 | }
11 | else{
12 | printf(" %s not found in the environment\n", env_var);
13 | }
14 | }
15 | int main ()
16 | {
17 | print_env("HOME");
18 | putenv("C_ENV_SET=C set the env");
19 | print_env("C_ENV_SET");
20 | return 0;
21 | }
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/Miscellaneous/env_var/env_read.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | import os
4 |
5 | #For accessing the environment variable.
6 | print os.environ['HOME']
7 |
8 | #For setting the environment variable.
9 | os.environ['PY_ENV_SET']='environ set the env'
10 |
11 | print os.environ['PY_ENV_SET']
12 |
13 |
--------------------------------------------------------------------------------
/Miscellaneous/env_var/env_read.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | #Read the environment variable.
4 | echo $HOME
5 |
6 | #Set the environment variable
7 | export SH_ENV_SET='export set the env'
8 |
9 | #read the Set environment variable.
10 | echo $SH_ENV_SET
11 |
--------------------------------------------------------------------------------
/PythonPrograms/code4reference.txt:
--------------------------------------------------------------------------------
1 | A text attachement file from Code4Reference.com
2 |
--------------------------------------------------------------------------------
/PythonPrograms/pic.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/PythonPrograms/pic.jpg
--------------------------------------------------------------------------------
/PythonPrograms/whitelist.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/PythonPrograms/whitelist.txt
--------------------------------------------------------------------------------
/mytest.java:
--------------------------------------------------------------------------------
1 | class myTest {
2 |
3 | System.out.println("Hello sweta");
4 | System.out.println("Hello from Rakesh");
5 | int i = 10
6 | }
7 |
--------------------------------------------------------------------------------
/webApplication/HelloWorldWebApp/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'java'
2 | apply plugin: 'war'
3 |
4 | repositories {
5 | mavenCentral()
6 | }
7 | dependencies {
8 | compile 'org.springframework:spring-webmvc:3.0.5.RELEASE'
9 | compile 'commons-codec:commons-codec:1.4'
10 | providedCompile "javax.servlet:servlet-api:2.5"
11 |
12 | }
13 |
14 |
15 |
--------------------------------------------------------------------------------
/webApplication/HelloWorldWebApp/build/libs/HelloWorldWebApp.war:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rakeshcusat/Code4Reference/0f17c323ea65f1471c9d1630ef6acbe8a274a74a/webApplication/HelloWorldWebApp/build/libs/HelloWorldWebApp.war
--------------------------------------------------------------------------------
/webApplication/HelloWorldWebApp/build/tmp/war/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 |
3 |
--------------------------------------------------------------------------------
/webApplication/HelloWorldWebApp/src/main/webapp/WEB-INF/.jsp/hello.jsp:
--------------------------------------------------------------------------------
1 | <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
2 |
3 |
4 |
5 |
6 | ${message}
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/webApplication/HelloWorldWebApp/src/main/webapp/WEB-INF/.pages/list.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Spring 3 MVC REST web service
4 |
5 | Movie Name : ${movie}
6 |
7 |
8 |
--------------------------------------------------------------------------------