Do you want France’s SFR neufbox in English?

 

I had some time trying to work out the details on the ol’ neufbox, so here is a hint for getting it to be in English which makes life easier for non-francophones:

  1. Hold down the green button on top of the neufbox until it starts flashing purple (takes about 5 seconds)
    image
  2. Go to the neufbox Configuration Page Maintenace –> Personnalisation page.
      – usually http://192.168.1.1/6_3
  3. Click the “Continuer” button (should still be flashing purple on the box)

    image

  4. Change the language to Anglais (English) and click “Valider”

    image 

Done!

image

Posted in Tips | Tagged | 1 Comment

Asp.Net MVC 2 Action Results

A handy list of ActionResult’s that I found on StackOverflow thanks to Chris.S and his reference to the MSDN doc.

ContentResult
Writes a string value directly into the HTTP response.

EmptyResult
Does not write to the HTTP response.

FileContentResult
Takes the contents of a file (represented as an array of bytes) and write the contents into the HTTP response.

FilePathResult
Takes the contents of a file at the given location and writes the contents into the HTTP response.

FileStreamResult
Takes a file stream produced by the controller and writes the stream into the HTTP response.

HttpUnauthorizedResult
A special result used by authorization filters when authorization checks fail.

JavaScriptResult
Responds to the client with a script for the client to execute.

JsonResult
Responds to the client with data in JavaScript Object Notation (JSON).

RedirectResult
Redirects the client to a new URL.

RedirectToRouteResult
Renders the specified view to respond with an HTML fragment (typically used in AJAX scenarios).

PartialViewResult
Renders the specified view to respond with an HTML fragment (typically used in AJAX scenarios).

ViewResult
Renders the specified view and responds to the client with HTML.

Posted in Uncategorized | Tagged | Leave a comment

Fantastic Intro to Prism

I stumbled across this excellent written / video tutorial with source when starting out in my Prism adventure.

Prism for Silverlight – Silver Bay Labs

image

image

I think this is the best starting out example I have found. It still requires a basic understanding of Inversion of Control to figure out what he’s trying to do, but run through it a few times and it all sort of fits together.

Posted in Silverlight | Tagged , | Leave a comment

Finding Prism/CAG is all but easy to find

After trying for a while to figure out how it all sort of works and what I was actually looking for, I found this page at Sparkling Client – Downloading Prism.

Once you get there, there is a 10 step method on how to use Prism/CAG or whatever you want to call it.

Not intuitive in any way for Microsoft to hide it by giving it different  names (Prism == Composite Application Guidance), but I guess that’s life.

I blame Microsoft’s love (or perhaps just programmer’s vanity) of renaming things that already have a name, but I think it got away on them here.

Update: Herding Code, in an interview with Glenn on Prism / CAG, discovered that Prism is the “Cool Name” whereas Composite Application Guidance is the “Serious Important Name”.

Coming soon: A photo viewer app using Prism. I know it’s been done to death, but it’s a good start.

Posted in Silverlight | Tagged , , , | Leave a comment

DNSDataView saves my life from GoDaddy’s DNS servers, again.

Its always tough to figure out what’s happening to your domains when you register them, set the Name Servers and… well nothing happens.

So you do this:

1) Download DNSDataView and run it

2) Write in your Domain name and your expected DOMAIN NAME SERVER

image

3) Click OK and if you get something to show (like below), then you can put these names as the primary and secondary name servers for your domain!  (ping the servers to get the IPs if needed). If not try another server in the list.

image

The usual nameservers for me were:

ns14.domaincontrol.com
ns15.domaincontrol.com
ns25.domaincontrol.com
ns26.domaincontrol.com
ns48.domaincontrol.com
ns49.domaincontrol.com
ns50.domaincontrol.com
ns51.domaincontrol.com

Posted in Uncategorized | Tagged , | Leave a comment