Skip to content

Instantly share code, notes, and snippets.

View prathamesh-mutkure's full-sized avatar
🎯
Focusing

Prathamesh Mutkure prathamesh-mutkure

🎯
Focusing
View GitHub Profile
@prathamesh-mutkure
prathamesh-mutkure / open-source-contrib.md
Created February 9, 2024 10:22
List my major open-source contributions
@prathamesh-mutkure
prathamesh-mutkure / array-manipulation-8086.asm
Created July 8, 2022 11:53
Assembly Language Program for Array Manipulations (8086)
;---------------------------------------------------------------------------
;---------------------------- START OF PROGRAM -----------------------------
;---------------------------------------------------------------------------
INCLUDE 'EMU8086.INC'
.MODEL SMALL
.STACK 100h
.DATA
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="gci.omrs.splash">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".SplashActivity"
android:background="#ffffff">
<ImageView
package gci.omrs.splash;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
public class SplashActivity extends AppCompatActivity {
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>