Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
Firefox

Submission + - Mozilla Labs Pitches Seabird Superphone (conceivablytech.com)

An anonymous reader writes: Could Mozilla be building a smartphone? It says it has no intentions to do so, but one of their community members has created a truly inspiring vision of a future superphone with integrated headset and dual-pico projectors and a very organic form factor. The Seabird phone may enable Mozilla to break out of its browser shell, but it may also know who quickly such a device can turn into a flop, especially if you are competing with Apple, Google, Microsoft and soon HP. Even if this phone will not become reality, it is amazing to see what the future may hold.
The Internet

IPv6 Over Social Networks 102

An anonymous reader writes "A new RFC has been published this morning to significantly speed the deployment of IPv6. With IPv6 over Social Network (IPoSN), '[e]very user is a router with at least one loopback interface,' and 'Every friend or connection between users will be used as a point-to-point link.' It is noted that latency on the network can be very high, though."

Comment Set jump points on moving to EOF/BOF (Score 1) 412

The following functions will save the current location to a register when going to the beginning of the file or end of file with M-. You can then go back to the last place you were with C-x r j 1 ;;; a trick from ispell... ;;; Let ?1 do the right thing when compiled.
(defun lrd-int-char (char)
    (cond
      ((and (fboundp 'characterp) (characterp char)) char)
      ((and (fboundp 'int-char) (integerp char)) (int-char char))
      ((integerp char) char)
      (t (error "arg is not an int or a character")))) ;;; ;;; misc. advice stuff

(defadvice beginning-of-buffer
    (before bob-register first () activate)
    "When going to beginning of buffer, save point in register 1"
    (point-to-register (lrd-int-char ?1)))

(defadvice end-of-buffer
    (before eob-register first () activate)
    "When going to end of buffer, save point in register 1"
    (point-to-register (lrd-int-char ?1)))

Slashdot Top Deals

Let's organize this thing and take all the fun out of it.

Working...