Search found 1112 matches

by Agent Bert Macklin
Thu Nov 12, 2015 2:55 am
Forum: New Testing
Topic: videojuegos
Replies: 1534
Views: 344056

Re: videojuegos

I ditched my PS4 back in June but I recently picked up an XBox One. Loads better than the former. Better media playing experience, better dashboard, better online gaming, better exclusives, etc. The Master Chief collection was the main selling point for me and holy hell is it awesome. I never experi...
by Agent Bert Macklin
Sun Oct 25, 2015 8:52 pm
Forum: New Testing
Topic: Dumping Ground for Coding Issues
Replies: 15
Views: 5344

Re: Dumping Ground for Coding Issues

GUI in Java is pretty cool. I like how setting things up properly is reminiscent of a stage play. It's awesome. Pain in the ass to type all of that stuff, but awesome nonetheless.
by Agent Bert Macklin
Wed Oct 21, 2015 9:58 pm
Forum: New Testing
Topic: Testing Episode IV: A New Lament
Replies: 731
Views: 256378

Re: Testing Episode IV: A New Lament

LaTeX is fine if you either don't have to collaborate with anyone in any way, or the people you do collaborate with are all total nerds who know what the fuck LaTeX is Do what I do: volunteer to write the report. :) LaTeX is fantastic. That said, for my personal stuff I write in markdown and then u...
by Agent Bert Macklin
Tue Oct 20, 2015 9:59 pm
Forum: New Testing
Topic: Episode VII: The Force Awakens
Replies: 21
Views: 7241

Re: Episode VII: The Force Awakens

I decided to give the mobile Fandango app a try last night. Bought tickets without a hitch.
by Agent Bert Macklin
Tue Oct 20, 2015 1:57 am
Forum: New Testing
Topic: Episode VII: The Force Awakens
Replies: 21
Views: 7241

Re: Episode VII: The Force Awakens

Trying to reserve tickets know but the fucking Jedi are making it difficult.
by Agent Bert Macklin
Thu Oct 15, 2015 3:55 am
Forum: New Testing
Topic: videojuegos
Replies: 1534
Views: 344056

Re: videojuegos

Picked up Skyrim Legendary Edition for PC. Imagine my surprise that Colonel Saul Frakking Tigh (Michael Hogan) voiced a character.
by Agent Bert Macklin
Tue Sep 29, 2015 2:15 am
Forum: New Testing
Topic: Dumping Ground for Coding Issues
Replies: 15
Views: 5344

Re: Dumping Ground for Coding Issues

I think we'll be doing more than the basics for OOP. We've talked about parent classes, child classes, and are currently on abstract classes. I've not yet looked ahead in the book to see what else is covered, but I do know that I will need to learn more on my own outside of class if I am to be succe...
by Agent Bert Macklin
Sat Sep 19, 2015 3:47 am
Forum: New Testing
Topic: Dumping Ground for Coding Issues
Replies: 15
Views: 5344

Re: Dumping Ground for Coding Issues

I'm not having any coding issues, but I just wanted to pop in and say that what I'm learning in Java at this moment in class is far more interesting than the basics. We've covered the basics of OOP and are currently learning about exception handling and reading and writing files. It's pretty great. ...
by Agent Bert Macklin
Sat May 09, 2015 1:48 am
Forum: New Testing
Topic: videojuegos
Replies: 1534
Views: 344056

Re: videojuegos

Fuck Konami! Silent Hills is no more. That sucks because it's time for that series to be reinvigorated.
by Agent Bert Macklin
Fri Apr 24, 2015 3:10 pm
Forum: New Testing
Topic: videojuegos
Replies: 1534
Views: 344056

Re: videojuegos

PT is scary as fuck! I really hope this shit with Kojima and Konami doesn't stop production on SIlent HIlls.

Anyone play Pillars of Eternity?
by Agent Bert Macklin
Sat Mar 28, 2015 9:04 pm
Forum: New Testing
Topic: videojuegos
Replies: 1534
Views: 344056

Re: videojuegos

RogueIce wrote:
Agent Bert Macklin wrote:This game will make it tough for me to go back to FFX when the PS4 port is released later this year.
They haven't done enough rereleases of FFX already?

Damn it Square where's my HD FF7?! :argh:
They re-released it last year on the PS3 but not the PS4.
by Agent Bert Macklin
Sat Mar 28, 2015 3:56 am
Forum: New Testing
Topic: videojuegos
Replies: 1534
Views: 344056

Re: videojuegos

I was going to buy Bloodborne today but I decided to get Final Fantasy Type 0 instead. The employee I spoke to at Gamestop described Bloodborne to me and I loved what he had to say, but he said its difficulty was insane. I'm now a casual gamer; I have been one for a decade. I don't think the game wo...
by Agent Bert Macklin
Fri Mar 27, 2015 9:56 pm
Forum: New Testing
Topic: Testing Episode IV: A New Lament
Replies: 731
Views: 256378

Re: Testing Episode IV: A New Lament

Bounty wrote:How will that make you lose your coverage?
The subsidy I was receiving is being revoked and I have to pay $200+/month for insurance. I cannot afford that. So I will not have insurance.
by Agent Bert Macklin
Fri Mar 27, 2015 3:33 pm
Forum: New Testing
Topic: Testing Episode IV: A New Lament
Replies: 731
Views: 256378

Re: Testing Episode IV: A New Lament

I will likely lose my health insurance because the income I reported to the IRS did not match the projected 2015 income I used for my application on the marketplace. I cannot afford a $218.56 monthly premium, so I will be forced to not have insurance and pay a fee to cancle before October and a 10% ...
by Agent Bert Macklin
Wed Mar 18, 2015 4:51 am
Forum: New Testing
Topic: Dumping Ground for Coding Issues
Replies: 15
Views: 5344

Re: Dumping Ground for Coding Issues

I;m not having any issues, but I just wanted to pop in and say that I am in lvoe with using OSX's terminal for coding. I got my hands on Sublime Text to use as an editor. Coding this way is not as efficient as using my go-to IDE IntelliJ, but it's still pretty fun.
by Agent Bert Macklin
Fri Mar 06, 2015 2:56 am
Forum: New Testing
Topic: Dumping Ground for Coding Issues
Replies: 15
Views: 5344

Re: Dumping Ground for Coding Issues

adr wrote:
Agent Bert Macklin wrote: evenNumbers = evenNumbers.substring(0, evenNumbers.length());
oddNumbers = oddNumbers.substring(0, oddNumbers.length());
What happens if you remove these two lines?
Everything works as its supposed to. Hmm. I didn't see that coming but now I know why.
by Agent Bert Macklin
Thu Mar 05, 2015 7:57 pm
Forum: New Testing
Topic: Dumping Ground for Coding Issues
Replies: 15
Views: 5344

Re: Dumping Ground for Coding Issues

I got it to work! public class EvenOdd { public static void main(String args[]) { //start at 50 int number = 50; //declare strings to hold the even and odd numbers String evenNumbers = ""; String oddNumbers = ""; //execute the commands when both the even and odd numbers are betwe...
by Agent Bert Macklin
Thu Mar 05, 2015 1:48 am
Forum: New Testing
Topic: Dumping Ground for Coding Issues
Replies: 15
Views: 5344

Dumping Ground for Coding Issues

SInce I am a NEWB, I figured I'd create this thread for issues I or others may have relating to coding. My current courseork involves loops in Java. The story of my life is such that once I change something I get hit with a roadblock. "You want to be a programmer?" "I do!" "...
by Agent Bert Macklin
Wed Mar 04, 2015 1:23 am
Forum: New Testing
Topic: Testing Episode IV: A New Lament
Replies: 731
Views: 256378

Re: Testing Episode IV: A New Lament

I have finally come to realize that the only reason I chose teaching as a career was because I was out of ideas. However, I enrolled in a computer science course this term and I instantly fell in love. On numerous occassions I've stayed up well past the rational to code. I enjoyed every minute of it...
by Agent Bert Macklin
Mon Feb 02, 2015 8:00 pm
Forum: New Testing
Topic: videojuegos
Replies: 1534
Views: 344056

Re: videojuegos

I think I recall someone here recommending Tomb Radier, which I bought today. I am really looking forward to the new Silent Hill game and Uncharted 4. Those are two reasons why I bought the thing.

Also, the PS4's UI is pretty nice. I like it far more than the PS3's.
by Agent Bert Macklin
Mon Feb 02, 2015 4:13 pm
Forum: New Testing
Topic: videojuegos
Replies: 1534
Views: 344056

Re: videojuegos

Just bought a Ps4 and I have The Last of Us, The Evil Within, and Resident Evil HD. I eed some recs. What else should I play?
by Agent Bert Macklin
Sun Jan 11, 2015 10:24 pm
Forum: New Testing
Topic: Testing Episode IV: A New Lament
Replies: 731
Views: 256378

Re: Testing Episode IV: A New Lament

Today I told a coworker to go fuck herself and called her a "bitch" in front of a customer. Bottled up frustration with shitty employees got the best of me. I took full responsibility of the altercation and even told my managers that I no longer feel capable of being a trainer at work. The...
by Agent Bert Macklin
Sun Dec 14, 2014 2:19 am
Forum: New Testing
Topic: videojuegos
Replies: 1534
Views: 344056

Re: videojuegos

WHAT THE HELL?! Capcom is releasing an HD master of the 2002 Resident Evil remake. That's a reason to get a PS4 right there.
by Agent Bert Macklin
Fri Sep 19, 2014 4:12 pm
Forum: New Testing
Topic: videojuegos
Replies: 1534
Views: 344056

Re: videojuegos

Stofsk wrote:Do you have any interest in multiplayer?
I do. That's the selling point for me. I really enjoyed my years with Starcraft.
by Agent Bert Macklin
Fri Sep 19, 2014 4:00 pm
Forum: New Testing
Topic: videojuegos
Replies: 1534
Views: 344056

Re: videojuegos

Starcraft 2, yay or nay? It's cheap.