Skip to content

Instantly share code, notes, and snippets.

View isabellatea's full-sized avatar

Isabella Tea isabellatea

  • San Francisco, CA
View GitHub Profile
import java.util.Scanner;
public class RPS {
public static void main(String[] args) {
Boolean gameActive = true;
String userChoice;
String aiChoice;
String result;
@isabellatea
isabellatea / LinearLayoutNestedExample
Created September 18, 2019 19:40
Linear Layout: Nested (Example)
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:text="Ocean Guide "
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="50sp"
# Isabella Tea
**Software Engineer and Programs Specialist**
tea.isabella@gmail.com | (909) 208-7238
[linkedin.com/in/isabellatea](linkedin.com/in/isabellatea) | [github.com/isabellatea](github.com/isabellatea)
Tenacious, impact and detail driven professional with 5+ years of cross-functional experience in developing efficiency oriented software solutions and building effective technical education programs. A driven professional with the adaptability and skill-set to thrive in developing and improving infrastructure to support growth, high volume and high quality output, all towards meaningfully driving forward a company’s ability to deliver impactful products.
## Technical Skills
@isabellatea
isabellatea / script.js
Last active May 11, 2019 16:49
Rock, Paper, Scissors starter
//Rock, Paper, Scissors Game
//Pseudocode
//User makes a choice of rock, paper, or scissors
//Computer makes a random choice of rock, paper, or scissors
//Compare each possible outcome of the User's choice and Computer's Choice
@isabellatea
isabellatea / index.html
Created May 4, 2019 12:07
Pokemon JSON
let pokemon = {
pikachu: {
type: 'electric',
favoriteAttack: {
name: 'thunderbolt',
damage: 55
},
attacks: [
{
name: 'thunderpunch',
@isabellatea
isabellatea / pikachu JSON
Created May 4, 2019 10:34
JSON Exercise
let pikachu = {
"name":"pikachu",
"id":25,
"order":35,
"species":{
"name":"pikachu",
"url":"https://pokeapi.co/api/v2/pokemon-species/25/"
},
"height":4,
"weight":60,
@isabellatea
isabellatea / index.html
Created May 4, 2019 09:56
PokeAPIBattle Solution
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css"> <!-- imports stylesheet style.css -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script> <!-- imports jQuery library -->
<title>Pokemon Battle</title>
</head>
<body>
<h1 id="header">Pokemon Battle</h1>
@isabellatea
isabellatea / Marvel (JSON Object)
Last active April 20, 2019 07:28
JSON Object (with for-in loop example at bottom)
let movieListDetailedJSON = {
"Captain America: The First Avenger": {
timelinePosition: 1,
moviePoster: "images/poster-captainamericafirstavenger.jpg",
releaseDate: "July 22, 2011",
releasePosition: 5,
description: "Marvel's 'Captain America: The First Avenger' focuses on the early days of the Marvel Universe when Steve Rogers volunteers to participate in an experimental program that turns him into the Super Soldier known as Captain America.",
budget: "216,700,000",
gross: "370,569,774",
rottenTomatoes: "80%"
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.0.0.js"></script>
<title>JS Bin</title>
<style id="jsbin-css">
#name {
color: blue;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">