Skip to content

Commit 5e91598

Browse files
committed
first commit
data science moved to diff repo Added Notes on SSH_GPG Keys 3rd Party Names & References Removed Updated .gitignore Added Git Commands Added PSQL Commands Added Terminal Commands.txt Added Notes on Ansible & Vagrant Folder Restructuring Readme.md Updated GIT on EC2 Update and rename Git.md to Git.git Update Git.git git.git updated with merge commands Android and DB files from hp laptop backedup pics added
0 parents  commit 5e91598

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+7893
-0
lines changed

.gitignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
*\.ipynb_checkpoints
2+
3+
# See http://help.github.com/ignore-files/ for more about ignoring files.
4+
# python files
5+
*.pyc
6+
*.pwc
7+
*/.ipynb_checkpoints
8+
9+
# compiled output
10+
/dist
11+
/tmp
12+
/out-tsc
13+
14+
# dependencies
15+
*/node_modules
16+
17+
# IDEs and editors
18+
/.idea
19+
.project
20+
.classpath
21+
.c9/
22+
*.launch
23+
.settings/
24+
*.sublime-workspace
25+
26+
# IDE - VSCode
27+
.vscode/*
28+
!.vscode/settings.json
29+
!.vscode/tasks.json
30+
!.vscode/launch.json
31+
!.vscode/extensions.json
32+
33+
# misc
34+
/.sass-cache
35+
/connect.lock
36+
/coverage
37+
/libpeerconnection.log
38+
npm-debug.log
39+
testem.log
40+
/typings
41+
42+
# e2e
43+
/e2e/*.js
44+
/e2e/*.map
45+
46+
# System Files
47+
.DS_Store
48+
Thumbs.db

Readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
![Notes for SDE (From roadmap.sh)](./roadmaps/shortBackend.png)

android/1.txt

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools"
4+
android:id="@+id/activity_main"
5+
android:layout_width="match_parent"
6+
android:layout_height="match_parent"
7+
android:paddingBottom="@dimen/activity_vertical_margin"
8+
android:paddingLeft="@dimen/activity_horizontal_margin"
9+
android:paddingRight="@dimen/activity_horizontal_margin"
10+
android:paddingTop="@dimen/activity_vertical_margin"
11+
tools:context="com.example.cruxapp.MainActivity">
12+
13+
<TextView
14+
android:layout_width="wrap_content"
15+
android:layout_height="wrap_content"
16+
android:text="Hello World!" />
17+
</RelativeLayout>
18+
19+
20+
************************
21+
<LinearLayout
22+
android:layout_height="match_parent"
23+
xmlns:android="http://schemas.android.com/apk/res/android"
24+
android:layout_width="match_parent">
25+
26+
<TextView
27+
android:layout_width="wrap_content"
28+
android:layout_height="wrap_content"
29+
android:text="Hello World"
30+
android:textSize="40sp"
31+
android:textColor="#E6E6E6"
32+
android:id="@+id/tv1"/>
33+
34+
<Button
35+
android:layout_width="wrap_content"
36+
android:layout_height="wrap_content"
37+
android:id="@+id/button"
38+
android:text="Don't Click" />
39+
</LinearLayout>
40+
41+
42+
TextView t1= (TextView) findViewById(R.id.tv1);
43+
Button b1=(Button) findViewById(R.id.button);
44+
t1.setText("Android Marshmallow");
45+
46+
************************

android/3june.1.txt

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.example.cruxapp">
4+
5+
<application
6+
android:allowBackup="true"
7+
android:icon="@mipmap/ic_launcher"
8+
android:label="@string/app_name"
9+
android:supportsRtl="true"
10+
android:theme="@style/AppTheme">
11+
<activity android:name=".splashScreen"> //this will launch first
12+
<intent-filter>
13+
<action android:name="android.intent.action.MAIN" />
14+
<category android:name="android.intent.category.LAUNCHER" />
15+
<data android:scheme="linkedinapp" android:host="connect"></data>
16+
</intent-filter>
17+
</activity>
18+
19+
<activity android:name=".secondActivity"></activity>
20+
<activity android:name=".thirdActivity"></activity>
21+
<activity android:name=".MainActivity"></activity>
22+
<activity android:name=".data"></activity>
23+
</application>
24+
25+
</manifest>

android/3june.2

Whitespace-only changes.

android/Android Notes.docx

21.7 KB
Binary file not shown.

android/App List for Android.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
1. java jdk - jdk-8u91-windows-x64
2+
2. eclipse - eclipse-java-mars-2-win32-x86_64
3+
3. adt plugin for eclipse - https://dl-ssl.google.com/android/eclipse
4+
Android Studio
5+
4. Android SDK - android-sdk_r24.4.1-windows.zip
6+
5. emulator

android/SplashScreenCode.txt

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
package com.example.cruxapp;
2+
3+
import android.app.Activity;
4+
import android.content.Intent;
5+
import android.os.Bundle;
6+
7+
/**
8+
* Created by Sanjeev on 28-05-2017.
9+
*/
10+
11+
public class welcomeScreen extends Activity{
12+
@Override
13+
protected void onCreate(Bundle savedInstanceState) {
14+
super.onCreate(savedInstanceState);
15+
setContentView(R.layout.welcome_screen);
16+
17+
/*Thread myThread = new Thread() {
18+
@Override
19+
public void run() {
20+
try {
21+
sleep(2000);
22+
Intent intent = new Intent(getApplicationContext(), MainActivity.class);
23+
startActivity(intent) ;
24+
finish();
25+
} catch (InterruptedException e) {
26+
e.printStackTrace();
27+
}
28+
}
29+
};
30+
myThread.start();*/
31+
32+
33+
}
34+
}
35+
36+
37+
38+
39+
40+
41+
42+
43+
44+
45+
46+
47+
<?xml version="1.0" encoding="utf-8"?>
48+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
49+
android:orientation="vertical" android:layout_width="match_parent"
50+
android:layout_height="match_parent" >
51+
52+
<ImageView
53+
android:layout_width="match_parent"
54+
android:layout_height="match_parent"
55+
android:src="@drawable/splash"
56+
android:id="@+id/welcomescreen" />
57+
58+
</LinearLayout>

0 commit comments

Comments
 (0)