Forum
Advanced Search
Filter     |   View Watchlist
[ Print Friendly ] [ Watch Thread ]

The RvB Tech Blog [ 1 ] [ 2 ] ... [ 29 ] [ 30 ] [ 31 ]
Andy
Love4Boston
#871   Posted 2 years ago
+ 4 Cool     [ Reply ]   [ Quote ]
. Did you hear about the Gameboy that got blown up in the gulf war?


And it still works
BlueKnight1
#872   Posted 2 years ago
    [ Reply ]   [ Quote ]
File this one in the "Duh" Category:

According to a recent NPD study, 57% of consumers who own web-connected TV's watch movies and videos on Netflix, while 47% access YouTube. While this is a victory for Netflix over the perennial leader in online video consumption, it really comes as no surprise.

[Source: Home Media Magazine]
KWierso
MYRADORABLE
#873   Posted 2 years ago
+ 3 Zing!     [ Reply ]   [ Quote ]
downloadsquad.switched.com/2011/03/18/microsoft-and-feds-shuts-down-spam-behemoth-rustock-reduces-worldwide-spam/

DiMono
SITE ADMIN
#874   Posted 1 year ago
+ 3 Cool     [ Reply ]   [ Quote ]
www.escapistmagazine.com/news/view/111442-OnLive-Founder-Claims-Impossible-Wireless-Breakthrough

Basically, 63 years ago someone calculated the maximum speed at which data could be transmitted wirelessly, and a number of times since then that person's calculation has been mathematically proven to be accurate. Now, OnLive founder Steve Perlman claims his company has found a way to shatter that cap, while at the same time providing a way to make transfer limits on cell phone plans obsolete.
pal_sch
#875   Posted 1 year ago
    [ Reply ]   [ Quote ]
In reply to DiMono, #877:

I'm trying to piece this together.

The Shannon–Hartley law is a hard limit for any data channel that goes beyond just a mathematical truth. It's at the heart of what an information transfer is. It isn't really a hard cap so much as it is a rule about how much information any given channel can possibly carry.

The channel capacity is given by;

S/N is the signal to noise ratio, which tends to be dependent on the hard physics of your transfer technology, be it fibre or wifi. B is the bandwidth (in Hz) of the channel. This means for any given technology the capacity is strongly dependent on the bandwidth available. When you are talking about wireless, Shannon's Law is largely the limit of how much information any given transmitter technology can cram into a slice of air.

What this sounds like is a new way to encrypt and transmit the data, similar to MIMO. That stands for Multiple Input, Multiple Output, compared to single/single for traditional wifi.

MIMO is the technology in 802.11n routers which requires two antennae to work. Roughly what you do is transmit half the signal on one antenna and the other half on the other. You then use multiple antennae at the receiving end to distinguish between the two signals and recover the originals. You need multiple antennae so that you can spatially distinguish different signal paths.

The actual way it works is a little more complex, but a simplified version is easy enough to see. Picture two signals being transmitted from two adjacent antennae propagating outwards. The overlapping signal will depend on the path length from each of the two antennae. If you pick two points within this propagating signal then you can use the two different signals (plus information about the positions of each antennae) to find the original signals.

Thing is, the complex, interference signal obeys Shannon's law. It's more that you have increased the effective bandwidth by adding an extra component to the signal; spacial variation. With two antennae at each end you can double the effective bandwidth by encoding two signals into one spatially evolving signal. More antennae cram in more signals.

This new system is referred to as a distributed-input distributed-output (DIDO). From what I can tell this is a new spacial encryption method that they are claiming is massively more efficient than MIMO systems. Note that in this presentation (~55 min onwards) (which doesn't include any real technical meat, just claims) he says as much. Shannon can't be violated, but you can find ways around it.

Except... some of his claims are just weird. Being able to transmit through solid objects and around the curvature of the earth on any frequency? Right... Also he says their technology only uses a single antenna, so not sure how they would do spacial resolution. Going from the Q&A session it sounds like they are somehow modulating the signal from distributed sources to nullify any particular signal outside of it's target. So the signal is effectively zero except directly around your wifi receiver, at which point it is amplified strongly by multiple sources. I can't think of a way to pull this off and I'm not sure it even makes sense.
DiMono
SITE ADMIN
#876   Posted 1 year ago
    [ Reply ]   [ Quote ]
Tech blog's kinda dead right now, so I figured I'd just share a solution I just figured out to a specific MySQL problem.

Consider the following table structure:
create table imageonevent (
id int unsigned primary key auto_increment,
eventid int unsigned not null,
imageid int unsigned not null,
displayorder int unsigned not null default 1
)


And suppose we have a bunch of images attached to a bunch of events. Now suppose we want to remove an image from the database. In order to maintain the stability of this table, we would then need to lower by 1 the displayorder value of all images in the same event, with a higher display order than the image holds in that event. So if we have data like this:

id|eventid|imageid|order
xx| 5 | 3 | 1
xx| 5 | 7 | 2
xx| 6 | 2 | 1
xx| 6 | 3 | 2
xx| 6 | 1 | 3

and we want to remove picture 3 from the database, we would need to adjust down event5/image7 and event6/image1, but not event6/image2.

It took me a few minutes, but I figured out how to do it in a single query:

update imageonevent ioe
left join (select eventid, displayorder from imageonevent where imageid = 3) as so
on ioe.eventid = so.eventid
set ioe.displayorder = ioe.displayorder - 1
where ioe.displayorder > so.displayorder

So there you go; if this ever comes up for you, you can use this solution.
KWierso
MYRADORABLE
#877   Posted 1 year ago
    [ Reply ]   [ Quote ]
www.jesse-anderson.com/2011/09/a-few-million-monkeys-randomly-recreate-shakespeare/
KWierso
MYRADORABLE
#878   Posted 1 year ago
+ 1 Cool     [ Reply ]   [ Quote ]
arstechnica.com/microsoft/news/2011/11/the-end-of-an-era-internet-explorer-drops-below-50-percent-of-web-usage.ars

www.youtube.com/watch?v=GjjZGyYcH9E&feature=related
KWierso
MYRADORABLE
#879   Posted 1 year ago
    [ Reply ]   [ Quote ]
www.cnn.com/2012/01/12/opinion/rushkoff-write-code/index.html?hpt=op_t1
Tgjanlee
Unvictorious
#880   Posted 1 year ago
+ 1 Zing!     [ Reply ]   [ Quote ]
Welp, Apple is discontinuing the White Mac Book.

Let the masses RAAAAAGE.
KWierso
MYRADORABLE
#881   Posted 1 year ago
    [ Reply ]   [ Quote ]
Oh snap
Pariah80
Sponsor
#882   Posted 1 year ago
    [ Reply ]   [ Quote ]
www.digitaltrends.com/cool-tech/design-team-creates-electric-skateboard-controlled-by-brain-waves/ Pretty cool - would be cool if some of the RT guys could try it out.
LostABiscuit
#883   Posted 1 year ago
    [ Reply ]   [ Quote ]
www.engadget.com/2012/03/11/saffir-autonomous-...
Did you know the master chief fights fires?
Tgjanlee
Unvictorious
#884   Posted 1 year ago
    [ Reply ]   [ Quote ]
Having resources like this makes me giddy...

http://responsive.is/
DiMono
SITE ADMIN
#885   Posted 1 year ago
+ 1 Cool     [ Reply ]   [ Quote ]
Computer virus babies
LostABiscuit
#886   Posted 1 year ago
    [ Reply ]   [ Quote ]
In reply to DiMono, #885:

I wonder if that has been accounted for in the biological end of things,
WindowsRules
#887   Posted 1 year ago
    [ Reply ]   [ Quote ]
In reply to DiMono, #885:

Sadly I wasn't able to load the site you linked us to properly. I was able to read a little bit of it so the first thing that came to mind was this:

Well, that looks like a rosy future for us all if that becomes more common-place. Wouldn't it be ironic if we were having to patch vulnerabilities in viruses to protect ourselves by protecting them from malware?
DiMono
SITE ADMIN
#888   Posted 1 year ago
+ 1 Zing!     [ Reply ]   [ Quote ]
In reply to WindowsRules, #887:

...you couldn't load msn.com on a Windows machine? You may want to check for viruses there.
Jteeth
Hotel Ron
#889   Posted 1 year ago
+ 1 Zing!     [ Reply ]   [ Quote ]
In reply to DiMono, #888:

Or maybe mutant baby viruses
WindowsRules
#890   Posted 1 year ago
    [ Reply ]   [ Quote ]
In reply to DiMono, #888:

I was able to load it properly this time, something happened to the layout (most likely CSS) when I loaded it which caused the browser to make a bit of a mess (I get put off sites very quickly if it doesn't look right to me). Anyway, the problem with that site (and only that site) has gone away and I was able to load it properly this time.

Now that I have been able to read it properly it looks like I was wrong with my initial assessment - the sort of thing that the article refers to makes a lot of sense and I am surprised that this hasn't been discovered sooner.

What do you think?
_______________________________________________
JBagley
#891   Posted 1 year ago
- 1 WTF     [ Reply ]   [ Quote ]
Sega Dream cast 2 Keith Apicary Youtube that shit!
KWierso
MYRADORABLE
#892   Posted 1 year ago
    [ Reply ]   [ Quote ]
Cross-posted with the Political BAR thread: www.schneier.com/blog/archives/2012/02/us_fede...
WindowsRules
#893   Posted 1 year ago
    [ Reply ]   [ Quote ]
In reply to KWierso, #892:

I'm not quite so sure, wouldn't getting the owner of the computer to decrypt the contents of their computer save the US police force time and effort? Surely that is more important?
DiMono
SITE ADMIN
#894   Posted 1 year ago
    [ Reply ]   [ Quote ]
In reply to WindowsRules, #893:

Maybe, but forcing them to do it is slightly different.
WindowsRules
#895   Posted 1 year ago
    [ Reply ]   [ Quote ]
In reply to DiMono, #894:

I understand. I think it is ironic that a law is protecting a criminal, does that make sense? :-)
KWierso
MYRADORABLE
#896   Posted 1 year ago
    [ Reply ]   [ Quote ]
It begins: thehill.com/blogs/hillicon-valley/technol...
KWierso
MYRADORABLE
#897   Posted 1 year ago
+ 1 Ditto     [ Reply ]   [ Quote ]
Wat
DiMono
SITE ADMIN
#898   Posted 1 year ago
+ 1 Ditto     [ Reply ]   [ Quote ]
Facebook being sued by shareholders 2 days after going public
KWierso
MYRADORABLE
#899   Posted 1 year ago
    [ Reply ]   [ Quote ]
WAT

Post edited 5/24/12 3:07AM
pal_sch
#900   Posted 1 year ago
    [ Reply ]   [ Quote ]
IEEE roll out their new wifi standard, optimised for wearable network devices.

10Mbps PAN here we come.
[ Previous ] [ 1 ] [ 2 ] ... [ 29 ] [ 30 ] [ 31 ] [ Next ]