Skip to content

Instantly share code, notes, and snippets.

View BorjaBobby's full-sized avatar

Borislav Borisov BorjaBobby

  • We Are Pentagon Ltd.
  • Plovdiv, Bulgaria
View GitHub Profile
@BorjaBobby
BorjaBobby / index.html
Last active November 29, 2017 21:20
HTML code for the index page of a blog post. Formated as requested in the blog-mockup.pdf, provided by Udacity.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Humans vs Machines Blog</title>
</head>
<body>
<!-- This was adapted from: http://blog.udacity.com/2016/03/humans-vs-machines-an-ai-odyssey-2.html -->
<!-- Format this text to match the mockup exactly! -->
<h1><strong>Humans vs. Machines: An AI Odyssey</strong></h1>
package com.example.android.photoquiz;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.RadioButton;
@BorjaBobby
BorjaBobby / MainActivity.java
Last active April 6, 2017 17:44
Coffee ordering app for Android device
package com.example.android.justjava;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.CheckBox;
import android.widget.EditText;
@BorjaBobby
BorjaBobby / AndroidManifest.xml
Last active March 16, 2017 21:09
Court Count
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.courtcounter">
<application
android:allowBackup="true"
android:icon="@drawable/basketball_spalding_1"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">