Operation Cubicle #24: Language

Operation Cubicle #24: Language.

JP had to handle some business this week, so its up to Agent Jackson and BCole to use words to talk about … words, and the language that we use in and outside of work. But first: we give the official review of Mayweather walking in with Justin Beiber before the Cotto fight, and we read feedback from the Dress Code episode (#24) where we talk about Eddie Bauer, body mods, and paying to dress casually.

On the Corporate side, Jackson talks about using words that resonate with your audience, BCole hates on invented words like “processeeeees” and we somehow tie a discussion of the hated words “deliverable” and “low hanging fruit” into BCole snitching on the human resistance when the robots take over.

On the geeky side, we talk about cursing in front of parents, Belly 3 featuring Nas vs the Predator, and using old school slang to a limit. After all, you can say “word” but not “word to the mutha”. !

Music: Aesop Rock – Labor Days – “Daylight” and “Night Light”

Operation Cubicle #23: Dress Code

Operation Cubicle #23: Dress Code.

Agent Jackson, JP Fairfield, and BCole talk about those annoying things that cover your body. On the corporate side, Jackson educates colleagues on the TriForce, BCole shares tattoo knowledge for all, and JP educates us on stillettos. Education all around!

On the geeky side, Jackson supports Old Navy, BCole’s sneaker game is tight, and JP hates on dreses in the club and burns her blue jacket. And because we didn’t get to it in the episode … RANCH DRESSING! .

Music: Pete Rock & Cl Smooth “The Creator” and “Go With The Flow”

Character Select: Sessler, Salty Gamers, Sex and a Banana

The BSG welcomes founder of Raw Game Play and gamer, Michael Hurdle to the show. This episode we talk about EA talking reckless, Shinji Makami’s new project, what gaming companies expect from you, Adam Sessler leaving G4tv and a banana. You can find more of Michael Hurdle @ www.saltygamers.com.

Follow us [ Google+ | YouTube | Tumblr ]
Google+ [ Shawn | Shareef | JP | Justin | Kahlief ]
Twitter+ [ Shawn | Shareef | JP | Justin | Kahlief ]

Operation Cubicle #22: The Rules, Policies, and Procedures

Operation Cubicle #22: The Rules, Policies, and Procedures.

Agent Jackson, JP Fairfield, and BCole break down the rules of companies, friendships, and some of our favorite characters! But first – we take a quick detour into Operation Caffeination and talk soda!

On the corporate side, Jackson outtests the system tester, JP makes sure her overtime is respected, and both have signed way too many confidentiality agreements.

On the geeky side, Jackson wastes time with a woman instead of playing Mario Kart, JP doesn’t need to hug all of you fools, and we reveal our favorite rule breaking characters from film. Hotspacho!

Music: Da Youngtas – No Mercy – “Hip Hop Ride” and “Mad Props”

Character Select: Wait The Battleship Movie Game Is Real?

Sorry about the beginning we had a bit of audio trouble. The BSG finally make their way back on camera. We talk about C2E2, COD shows racism and the trailers and announced games of the week.

Follow us [ Google+ | YouTube | Tumblr ]
Google+ [ Shawn | Shareef | JP | Justin | Kahlief ]
Twitter+ [ Shawn | Shareef | JP | Justin | Kahlief ]

Character Select: The Pax Pink Suite Lollipop Chainsaw Incident

This week, the BSG talk about Pax east 2012 and Captivate 2012. Also pink suit are a problem at Pax. Outro Music by Reign Supremacy. (Thanks bro)

http://www.youtube.com/user/dalastsoldier99

Follow us [ Google+ | YouTube | Tumblr ]
Google+ [ Shawn | Shareef | JP | Justin | Kahlief ]
Twitter+ [ Shawn | Shareef | JP | Justin | Kahlief ]

Operation Cubicle #21: I’m Leaving

Operation Cubicle #21: I’m Leaving.

Agent Jackson, JP Fairfield, and BCole leave you with wise words about leaving jobs, friendships, and other fun things.

On the corporate side, Jackson will counter your counteroffer with the finger, BCole squashes out a young punk vying for his cube life, and JP takes a week of freedom while between jobs.

On the geeky side, Jackson shows love for Mega Maid, JP accidentally ends an imaginary relationship with a fake boyfriend, and BCole falls asleep. I don’t care what he says!

Music: Public Enemy – Yo! Bumrush The Show – “Rightstarter” and “Miuzi Weighs A Ton”

Character Select: The Dull March of Gaming

We have being gone for while but we are back. My equipment (aka laptop) is going down hill thus google hangout was dropping and programs were crashing. But that will be fixed pretty soon thanks to a third party. But this week, BSG bring up to speed, porn hooking up wid tournament players, the Kickstarter Program and Pax 2012.

Follow us [ Google+ | YouTube | Tumblr ]
Google+ [ Shawn | Shareef | JP | Justin | Kahlief ]
Twitter+ [ Shawn | Shareef | JP | Justin | Kahlief ]

Brilliant! How You Do That? – Check Disk Batch Fun

I’ll be walking you through computer tasks that seem difficult but actually easy to learn.

Today’s Lesson: How To Create A Batch File for Checking Your Hard Drive

The first step is to open the application Notepad.

Since we want the computer to invoke the check disk program, we need to type in the check disk command.

chkdsk

The chkdsk command tells the computer we want to check the hard drive for errors or bad sectors.   Now, we need to tell the computer which hard drive we want to check.

chkdsk c:

We can easily stop right here but we can use switches to give more detail instructions.

chkdsk c: /f /x

/f switch is used to fix errors found on the hard drive but doesn’t scan for bad sectors.
/x switch is used to force the hard drive volume to dismount first if needed. This can be used only for drives formatted in NTFS file system.

Note: Chkdsk will not start until the computer is restarted if the hard drive is currently in use. The hard drive with the main operating system installed will need to be restarted.

chkdsk c: /r /x

You can use the /r switch instead of the /f switch. The /r switch locates bad sectors and attempts to recover readable info. This switch can also fix disk errors so the /f switch is implied in the /r switch.

What if you have more than one hard drive you want to check? Just create another chkdsk command for that volume.

chkdsk d: /f /x
chkdsk c: /r /x

Note: Make sure to put command to check the hard drive with the operation system last. This way the hard drives without an operating system gets checked right away & there isn’t a risk of the computer skipping them.

Let’s play with the echo command. Since check disk won’t be able to scan my C: drive right away, a user prompt will asked if I want to scan the drive the next time the computer restarts. I don’t want to have to enter yes every time so we going to use the echo command to feed an yes to the user prompt.

chkdsk d: /f /x
echo y|chkdsk c: /r /x

Note: If you want to feed a no to the user prompt, replace the ‘y’ with ‘n’.

Let’s play with the echo command some more. I want the batch program to display a message before the execute check disk program.

echo Check Disk for Errors
chkdsk d: /f /x
echo y|chkdsk c: /r /x

I have a little pet peeve. The command prompt program displays the command from the batch file before it executes it. I want to turn this off. Let’s type in the echo command again.

echo off
echo Check Disk for Errors
chkdsk d: /f /x
echo y|chkdsk c: /r /x

Oh..wait… This command echo off only works for the command following directly after. What can I do to turn off displaying commands for the entire batch file?

@echo off
echo Check Disk for Errors
chkdsk d: /f /x
echo y|chkdsk c: /r /x

Typing in the @ symbol before echo off will turn off displaying the command before executing for entire batch file.
Now, I want the computer to restart automatically after the check disk command is executed.

@echo off
echo Check Disk for Errors
chkdsk d: /f /x
echo y|chkdsk c: /r /x
shutdown /r

We use the shutdown command with the /r switch which tells the computer to shut the computer down then restart.

Save the file with the extension .bat. Make sure to change “Save As Type” to “All Files” otherwise the file will be saved as a text file.
You have created a simple batch file to run the check disk program. Woot!

Note: You can either double-check batch file to run check disk or create a scheduled task to run the batch program.

Operation Cubicle #20: Office Supplies

Operation Cubicle #20: Office Supplies.

Agent Jackson, JP Fairfield, and BCole supply all of your desires in this week’s episode!

On the corporate side, Jackson promotes a rainbow coalition of post its, JP gets one over on the coffee machine, and BCole uses the postage machine in a perfectly ethical way . Then we have a Hunger Games-esque battle to the death with office supplies – which supplies make the best weapons?

On the geeky side, Jackson washes dishes like a G, Bcole raises a humanoid, and JP hates on XTREEEME body wash,.

Music: Kool G Rap & DJ Polo – Road To The Riches – “Poison” and “Road to the Riches”