I've been playing Battlefield Bad Company 2 (BFBC2) a lot lately (possibly .5-1 hr a night right before bed while my wife is getting her early hours in). Wednesday and Yesterday, I was unable to play due to an 'error' I was receiving while trying to play some multiplayer. Everything would be okay until I hit Quick Play. It would bring up a screen that says "Connecting" then goto a screen that said "Failed to connect to EA Online".
I searched all over the forums for both EA Online and Xbox and really came up with nothing. There were a few posts about opening ports through your router and the such, but to make sure that wasn't the issue (as I was playing forever without issues earlier) I directly hooked up my xbox to my modem and still nothing (yes... i configured my xbox properly after connecting it to the modem).
At this point (being the engineer that I am), I knew it had to be either a corrupt download or user profile. I went to my xbox file management and deleted my 'user profile' for BFBC2. Now... this will get rid of your saved games... but as I only play multi-player, I didn't care.
After deleting the user profile, BFBC2 joined in a heartbeat!
If anyone needs more specific details (like exactly click here, and the such), let me know and I'll add them, but for most this should be enough!.
Hope this helps someone else besides me :)
Friday, June 10, 2011
"Failed to connect to EA Online" BFBC2 Solution Xbox360
at
11:17
1 comments
Saturday, January 22, 2011
3d Printer?
So I'm come across an interesting site.
www.reprap.com
It is an open source community that is dedicated to building 'self-replicating machines'. Essentially, create a 3d printer with parts that can be created by that 3d printer to in effect be able to replicate itself. This will give the ordinary person a 'factory' in their own household (using thermoplastic extrusion) that they can then make another 'factory'. This can be exponentially branched out which will let more people have a factory and keep everything cost efficient.
Looking at the information, the 'hardest' part of this project is essentially the extruder part. What it does is take a spool of 'PLA' plastic (thermoplastic), heat it up and spread it layer by layer according to a design to make something. Looking at the videos on the site makes everything look amazing. Especially since a lot of their videos show them making the parts for the next 3d printer and some of those parts are complex.
I intend to create my own reprap. It will be made using wood (or even 'Cheese Plastic"), threaded metal rods, stepper motors and an arduino (for the computer interface). It will have a cmd line front end that will allow you to choose a folder of images (so even people without 3d designing software can create items).
We will have to see what happens.
It could just be another one of my 'wishes' but if things work out, could be really cool.
at
23:37
0
comments
Monday, January 17, 2011
Things are not always what they seem...
It seems like everything is getting to the point of being 'news worthy'...
Since when are tips to remove information from a social networking website considered 'news'???
Is there really nothing else to report on?
at
23:16
0
comments
Sunday, November 1, 2009
Creating PDFS from virtually anything w/ linux
So recently I was asked (by my wife) if I would be able to join different web pages together all into 1 file for printing and storage. I thought it would take a very long time but turned out to be quite easy. Here's a lil how to:
- Print each page/image/document to file (i usually name it an autoincrementing filename aka 1,2,3,4,...)
- this stores the page as a PostScript file (even works in Windows)
- Join all of the PS files together to form a huge PS file
- you do this using the ps-utility psmerge
- psmerge -oOutputFileName file1 file2 file3
- you can include as many files as you want in order
- there is NO space between the -o option and the file name
- turn the PS file into a PDF file
- use the ps2pdf utility
- ps2pdf psfile.ps pdffile.pdf
Below is a python code that will make this process easier. It renames files (so they can be sorted properly) and generates the command (quite large at times) to perform the operation
#!/usr/bin/python
import os
path='/home/paul/printer/dadsWorksheets/multiSpaceShip/psFiles/renamed/'
files = os.listdir(path)
files.sort()
##rename = True
rename = False
if rename:
for i in files:
name = i
if len(name) < 3:
name = '00%s' % name
if len(name) > 3:
name = name[1:]
print name
command = 'cp %s/%s %s/renamed/%s' % (path,i,path,name)
os.system(command)
#print files
merge = True
##merge = False
if merge:
com = 'psmerge -oCombined'
#print com
for i in files:
com = ' %s %s' % (com,i)
print com
os.chdir(path)
os.system(com)
its simple and quite crude but it gets the job done quite nicely!!
give it a shot and you'll be storing stuff as PDFs in no time!
at
12:52
0
comments
Wednesday, October 28, 2009
UFC Ultimate FIghter letdown...
I am completely disgusted... can they honestly NOT find decent competitors for this show anymore?
That first round on tonights TUF was a fucking joke. Standing up with just punches and hands down the whole time... Anyone with ANY experience (hell even Kimbo slice...) would have ended that fight in the first 30 seconds... But no.. Dana White goes 'OMG OMG OMG' at the commercial break as if it was an amazing round... It sucked beyond comprehension!
People who know me, know that I studied martial arts for 8+ yrs. If that round is the caliber of fighters that is available in todays market.... its a sad sad world indeed.. Even my 'out of shape' ass could have destroyed anyone of those jokers in that first round...
2nd round starting now... will it be better? i doubt it...
at
22:54
2
comments