Skip to content

Instantly share code, notes, and snippets.

View tronku's full-sized avatar
💭
Androidifying things

Shubham Pathak tronku

💭
Androidifying things
View GitHub Profile

Codeheat 2019

Codeheat 2019-2020 | Work Report

Shubham Pathak | tronku | FOSSASIA

Introduction

I am a participant in FOSSASIA's Codeheat 2019-20. I have been an active member in FOSSASIA since November 2019. Being an android developer, I have contributed to many android projects of the organization. I have learned a lot about the architecture, coding practices and collaborating with others while contributing. I have tried to find bugs and fix them throughout the competition.

1;
pkg load control
##**************************************************************************
##* OCTAVE PROGRAMMING (e-Yantra 2019-20)
##* ====================================
##* This software is intended to teach Octave Programming and Mathematical
##* Modeling concepts
##* Theme: Biped Patrol
1;
pkg load control
##**************************************************************************
##* OCTAVE PROGRAMMING (e-Yantra 2019-20)
##* ====================================
##* This software is intended to teach Octave Programming and Mathematical
##* Modeling concepts
##* Theme: Biped Patrol
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<fragment
public class Computer {
private Memory memory;
private Processor processor;
public Computer( Memory memory, Processor processor) {
this.memory = memory;
this.processor = processor;
}
}
{
"kind": "books#volumes",
"totalItems": 3049,
"items": [
{
"kind": "books#volume",
"id": "fnspBgAAQBAJ",
"etag": "Fw7n1qNuAlc",
"selfLink": "https://www.googleapis.com/books/v1/volumes/fnspBgAAQBAJ",
"volumeInfo": {
package com.example.tronku.location;
import android.app.Notification;
import android.content.Context;
import android.location.Address;
import android.location.Geocoder;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.util.Log;
package com.example.tronku.location;
import android.Manifest;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
package com.example.tronku.location;
import android.content.DialogInterface;
import android.content.Intent;
import android.location.Location;
import android.location.LocationManager;
import android.os.Handler;
import android.os.Message;
import android.provider.Settings;
import android.support.v7.app.AlertDialog;
bool isPrime(int n)
{
if (n <= 1) return false;
if (n <= 3) return true;
if (n%2 == 0 || n%3 == 0) return false;
for (int i=5; i*i<=n; i=i+6)