Skip to content

Instantly share code, notes, and snippets.

View nperez0111's full-sized avatar
🤜
You know, doin' the do

Nick Perez nperez0111

🤜
You know, doin' the do
View GitHub Profile
@nperez0111
nperez0111 / help.md
Last active December 10, 2015 02:14

#Here is what went wrong

Step 1

1 First inspected the element on the area and noticed the header filled the entire width without any margin or padding(They show in Orange and Green respectively).

Step 2

2 Saw the UL had some margin to it but didn't think anything of it because it is collapsed.

Step 3

3 Checked the LIs and they looked alright too so...

1. Members of the Caltech community live, learn, and work within an Honor System with one simple guideline; "No member shall take unfair advantage of any other member of the Caltech community." While seemingly simple, questions of ethics, honesty and integrity are sometimes puzzling. Share a difficult situation that has challenged you. What was your response, and how did you arrive at a solution? (200 word max)

>The students in my school are some of the most stressed out people I have ever seen. It may be be the courses, or that we are in a Dual-enrollment program, but whatever it is, my fellow classmates and I are under a lot of stress. One of the most stressful periods for these students is picking classes for the next semester because it falls at the same time as finals week. The process of picking classes is not simple because of the need to cross-reference dual-enrollment approved courses, courses that are offered at the college and whether the time is within our time block for college courses. This

##Ok Let's Try again

Impostor syndrome is defined as "a collection of feelings of inadequacy that persist even in face of information that indicates that the opposite is true." This means you feel fake or inadequate, while actually being the right person for the job. This is a common feeling in the programming community, because there are many great minds in the community. It is easy to feel that you are not quite up to par with them. I believe I have impostor syndrome. My impostor syndrome has hindered my communication skills, interpersonal development and has left me feeling that I am a fake at being a normal person. Communication skills are some of the most important skill-sets that you will acquire in your life. I am not a good communicator. I struggle to find the right words to explain an idea to people, assume others understand what I am talking about, over-explain, and overuse jargon. My difficulty stems from my perception that what I have to say is truly unimportant and an inner struggle to relate

<style>
table {
margin: 0 auto;
border-collapse: collapse;
width: 100%;
max-width: 960px;
}
tr {
border: 1px solid black;
@nperez0111
nperez0111 / MutualRecursion.js
Last active July 6, 2016 20:48
Playing with recursion
function isEven( a ) {
if ( a == 0 ) {
return true;
} else {
return isOdd( a - 1 );
}
}
function isOdd( a ) {
if ( a == 0 ) {
@nperez0111
nperez0111 / ThinkAboutIt.md
Created August 28, 2016 21:34
How to get through Think About It for USF Quicker

What It Does

The "Think About It" Course prior to entering to USF is a difficult thing to pass through needing a shit load of time. These are a couple scripts that can be copy and pasted into the console in order to speed things up.

setInterval( function () {
    $( '.closeable-close-button' ).click();
    $( '.next-button' ).click();
    $( '[data-ng-click="NextClicked()"]' ).click();
 $( "video" ).each( function ( c ) {

Running this code in your browser will scrape images from GradImages.com

In chrome to open the devTools to run the code all you need to do is hold ctrl+shift+i

@nperez0111
nperez0111 / OwnCloud Installer.sh
Last active October 3, 2017 20:53
Own Cloud Installer
#!/bin/sh
echo "Thanks for using Nick's OwnCloud Server installer"
#let's just update it all before we start
sudo apt-get update
sudo apt-get upgrade
#start install of owncloud
echo "We are attempting to install OwnCloud"
cd /tmp
#sudo apt-key add - < Release.key
@nperez0111
nperez0111 / README.md
Last active October 11, 2017 22:37
Easy way to calculate fibonacci numbers

So I was bored in class one day and decided to play around with the famous fibonacci sequence. So I started to play with it's definition:

Fn = Fn-1 + Fn-2

From there I started to derive other solutions as it is a recursive function that have each replaced by using this definition and playing with the subscripts:

Fn = (Fn-2 + Fn-3) + Fn-2

Fn = 2(Fn-2) + Fn-3

@nperez0111
nperez0111 / README.md
Last active November 3, 2017 03:58
Description of a Note Taker app

Screens breakdown

Main/Capture Screen

Main Screen

This is the Camera screen and the first screen you see when opening the app. The middle ring is the capture button which will capture the image the user is currently pointing at.If you click on the notebook icon you will be navigated to a list of notebooks.

Notebook List Viewer

list viewer