This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%------------------------- | |
% Resume in Latex | |
% Author : Jake Gutierrez | |
% Based off of: https://github.com/sb2nov/resume | |
% License : MIT | |
%------------------------ | |
\documentclass[letterpaper,11pt]{article} | |
\usepackage{latexsym} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> // cout, cerr | |
#include <cstdlib> // EXIT_FAILURE | |
#define GLEW_STATIC | |
#include <GL/glew.h> // GLEW library | |
#include <GLFW/glfw3.h> // GLFW library | |
// GLM Math Header inclusions | |
#include <glm/glm.hpp> | |
#include <glm/gtx/transform.hpp> | |
#include <glm/gtc/type_ptr.hpp> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> // cout, cerr | |
#include <cstdlib> // EXIT_FAILURE | |
#define GLEW_STATIC | |
#include <GL/glew.h> // GLEW library | |
#include <GLFW/glfw3.h> // GLFW library | |
// GLM Math Header inclusions | |
#include <glm/glm.hpp> | |
#include <glm/gtx/transform.hpp> | |
#include <glm/gtc/type_ptr.hpp> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> // cout, cerr | |
#include <cstdlib> // EXIT_FAILURE | |
#define GLEW_STATIC | |
#include <GL/glew.h> // GLEW library | |
#include <GLFW/glfw3.h> // GLFW library | |
// GLM Math Header inclusions | |
#include <glm/glm.hpp> | |
#include <glm/gtx/transform.hpp> | |
#include <glm/gtc/type_ptr.hpp> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> // cout, cerr | |
#include <cstdlib> // EXIT_FAILURE | |
#define GLEW_STATIC | |
#include <GL/glew.h> // GLEW library | |
#include <GLFW/glfw3.h> // GLFW library | |
// GLM Math Header inclusions | |
#include <glm/glm.hpp> | |
#include <glm/gtx/transform.hpp> | |
#include <glm/gtc/type_ptr.hpp> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.trial; | |
import android.content.Context; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.widget.TextView; | |
import androidx.annotation.NonNull; | |
import androidx.recyclerview.widget.RecyclerView; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.trial; | |
import androidx.appcompat.app.AppCompatActivity; | |
import androidx.recyclerview.widget.LinearLayoutManager; | |
import androidx.recyclerview.widget.RecyclerView; | |
import android.content.Intent; | |
import android.os.Bundle; | |
import android.view.Menu; | |
import android.view.MenuInflater; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MergeSort | |
{ | |
public static void main(String[] args) | |
{ | |
int arr[] = {38, 27, 43, 3, 9, 82, 10}; | |
System.out.println("Unsorted Array"); | |
printArray(arr); | |
MergeSort ms = new MergeSort(); | |
ms.sort(arr, 0, arr.length-1); | |
System.out.println("\nSorted array"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void intakeNewMonkey(Scanner scanner) { | |
System.out.println("Enter Name."); | |
String name = new Scanner(System.in).nextLine(); | |
for (Monkey monkey : monkeyList) { | |
if (monkey.getName().equalsIgnoreCase(name)) { | |
System.out.println("\n\nThis monkey is already in our system\n\n"); | |
return; //returns to menu | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package petshop; | |
import java.util.Scanner; | |
import java.util.Dictionary; | |
import java.util.HashMap; | |
import java.util.Map; | |
public class Pet { | |
private String petType; | |
private String petName; | |
private int petAge; |
NewerOlder