Skip to main content

What's a TSI Test?

I took the TSI test on Wednesday, but I wasn't the first one in the lab to finish. I blame my proctor's slowness at informing me on some prerequisites that Administration didn't inform me about and my own apathy to a test that didn't seem to put up much of a fight. Three other people beat me to the punch, but I still managed to finish before the end of third period. Since this test doesn't involve a non-disclosure agreement that people really don't care about anyway, I'll talk about the contents of the test. There's nothing too interesting about the test. I likely could have gotten a perfect score if I tried, and that's not just me being cocky. There was no advanced math on the test (nothing higher than algebra), but the reading sections are slightly more comprehensive than the STAAR test's. I literally mean slightly more comprehensive; the STAAR test is more fiction-oriented while the TSI's reading (I think) only consists of nonfiction passages. I suppose colleges could care less if you don't understand why an author decided to use specific diction in a sentence in an article about a child going to the zoo.
Side note: the essay portion almost drove me to insanity because I couldn't use the standard "Ctrl + Backspace" shortcut that I commonly use to eliminate unruly words produced by my imprecise hands. To the people at College Board that make the testing interface: a dialog saying something about a preview copy doesn't help anyone--especially the people that might hit the keys on accident and wonder if they broke the test.

In other news, the school had a "Club Day" which really consisted of teachers hosting students that got into their rooms first. I saw the Google Sheet which contained teacher names, club names, and room numbers. Apparently, many teachers were sponsoring another club and/or just sending kids to another room so they wouldn't have to single-handedly deal with a bunch of students they didn't know. Looking through the list hit me: there are no computer science or tech enthusiast-related clubs at the school. "Holy crap, I'm screwed," I thought as I will now actually have to go through with founding my own club. Don't get me wrong: I was looking forward to taking this leadership role, but I thought the school would provide some foundation for me to work off. After playing with a angular motion physics demo in Mr. Alcala's class, everyone dispersed around the school (and possibly to the parking lots to leave) for the last half hour of school.

The inter-hallway transportation system flooded with oncoming traffic. Luckily, I got into Mr. Burton's, the computer science teacher's, room before it was flooded with the Halo-playing/Smash-enjoying male demographic. It took nearly a minute and a half after I came for Mr. Burton to close the door and flatly tell the latecomers that the room was filled and that there was a slightly vacant room next door. Of course, I sat in the room, watching a five-player game of Super Smash Bros, until I oversaw the faint outlines of lines of code. Knowing I was staring at an IDE, I went over to the other side of the room to investigate.
I recognized the boy making a bank input program for Computer Science UIL. I still don't know his name, but here's how our conversation went: I sat down; I asked him what he was doing; he responded; he asked if I was taking the computer science class next year; I said yes; he explained that the class only teaches the basics and Computer Science UIL is the way to go; I understood and questioned tiny bits of his code such as why he named certain variables certain names; and the bell rang while I left. I didn't indicate at all that I have a year's experience with Java. I'm not sure why, but I know I felt quite giddy while he explained things to me that I already knew.

Either way, I'm getting quite tired. I have homework to finish tomorrow, and I have a letter to send to Mr. Burton as well. I'm going to email Mr. Burton to act as a declaration of intent because I'm desperate to practically apply all the knowledge I have about Bluetooth beacons and progressive web apps and IoT and server backends and so much more. I plan to make a replacement for the aging school website, and I plan to engage the district's interest in technology while getting major brownie points for life experiences and, more productively, colleges and the like.

Good night.

Comments

Popular posts from this blog

Summer Break 2017, Day 2 of 83: All Hail the Schedule

I think the plan's working; I'm already motivated to accomplish everything I've planned in The Schedule . Thanks to Google Calendar, I have the flexibility to change what I do on a daily basis. (I know, it's like I'm a spokesperson for Google right now, but you haven't seen half of it.) With Calendar's goals feature, I specify frequency and position of goals I want to accomplish, and machine learning ensures the times work out for me. Sure, it's a bit finicky right now, but at least I didn't have to make a hundred something event times for goals that don't have entirely consistent definite start and end time. MOOCs and More Because of my existing knowledge and experience with Udacity , I've decided to use their online courses to enrich my currently unstructured learning. Here's everything scheduled to be completed during the summer: Introduction to Machine Learning (the big one, the real thing I want to accomplish) Introd...

My First AP Test

In around 10–15 minutes, I will begin the AP Physics 1 exam. It's questionable whether I'll obtain a score of five, but I know I can easily obtain a four. Does MIT or Caltech or Stanford or whoever care if I obtain a five? Well, I know MIT doesn't even care if I take the test as they only accept credit for a five on the AP Physics C exam. As for the others, I probably should've done some research. That doesn't matter now. I just looked over my mock test with another highly intelligent student, and we both know we can easily obtain a four. I know how torque works; I know how movement in two dimensions works; heck, I even remember​ how to build a DC circuit. Kirchoff has nothing on me. I know that the junction rule states that a circuit's input current must equal it's output. I understand that resistors have the same current in a series but the same voltage in parallel. I am going to perform very well. (As long as I don't bomb the free-response quest...

Summer Break 2017, Day 5: How Hard is it to Upload a Photo to Firebase?

God help you if you ever decide to implement camera functionality in Android. I didn't have much planned today, but thank goodness I didn't. The Setup Here's the dilemma: I wanted to make a very simple app that will let me take a photo of text and have it read out to me. Using the Google Cloud Vision API ,  I can essentially scan documents and listen to their contents instead of having to use my eyes and scan the thing. It will be great for accessibility and so on, but the thing is I can't have the Cloud Vision API scan documents that I haven't taken. I want to do processing in the cloud to model common app architecture and to reduce strain on the client app. Here's the service flow: Client app takes photo Client app uploads photo to Cloud Storage for Firebase Cloud Functions scans the document for text Cloud Functions updates Firebase Database with scanned text Client app intercepts database update Client app speaks text from database The Co...