Someone should create pre-paid accounts (funded by credit cart or BTC or whatever) to use for micro-payments. Oh wait, no one has solved micro-payments yet.
The "space pen vs pencil" is a fallacy. Read about the real history where NASA did not invent the zero-g pen, but an entrepreneur did: http://www.woot.com/blog/post/...
I wonder what our forefathers would say about the current state of "democracy" which has the 0.1% in charge, but also having the plebes believe they have a voice. It would probably smell like tyranny to them, but would shiny things distract them like it does the rest of us?
It cannot inspect ssl/tls traffic unless you add certificate authorities, which may be impossible without root. Yes, the local VPN can inspect plain text traffic, intercept DNS resolution, and block outgoing connections- that's the point. Open source solutions are ideal for this case.
Silly they use an external VPN. On Android, local loopback VPNs like Mobiwol work great. All the apps's traffic goes through the VPN, which is local, so you can allow/deny on the fly (can filter foreground vs background too). Mobiwol could easily add some DNS-based blacklists (aka hosts file) and do add blocking plus firewall.
One would have to really trust an external VPN provider to ship all your traffic through. Which if you run your own VPN service or do trust one, it's safer than sending all your plain-text data through random wifi or cell carriers.
Chrome developer tools already give suggestions for improvements. Experienced developers know how to learn and thus improve their sites. I don't see wide adoption here unless built into major content management systems.
Because you have checked the following In Chrome settings:
* Use a prediction service to help complete searches and URLs typed in the address bar
* Enable phishing and malware protection
Incognito mode doesn't do much other than [tries] not write to local browser history or store cookies. But it fails at that too.
On the server side, if you only use a single cookie as a session ID (securely randomly generated), then you won't read any injected cookies, but this doesn't prevent leaks.
If a subdomain is compromised, say partner.your.bank, then they may read your session ID set by secure.your.bank (and any other cookies) if they can get you to visit the compromised site (e.g. by modifying a regular HTTP request if they're in the middle).
If you append a session ID to every URL, then you don't need any cookies. Attackers won't read anything if you visit a compromised site, and your server will ignore any injected cookies.
Of course, make sure all your services are only available over HTTPS (HTTP -> HTTPS redirects, which everyone uses, are not safe from MITM attacks if you use cookies).
Would the phone as a pager idea really work? The towers would broadcast messages, and if your device matched the message, you would get a notification to connect to the network? Could you get 1-way text messages this way? If this were implemented on the cell networks, could I read all the broadcast or text messages in my local area by modifying my radio?
To use Android effectively, you must root your device and freeze/remove unwanted apps. With root, you must also use a firewall to block or limit network access to you still want to use.
You must also mange your radios well - only enable Bluetooth and GPS when you need it, otherwise keep them off; toggle mobile data and wifi when you roam which means don't leave wifi on while you leave your residence or workplace, and don't leave either on at night or for extended time. (Yes there is a lag in the morning when you turn on wifi and all the background apps sync at once to get email, messages, updates, etc. but you trade that for longer battery life by not using as many charge cycles.)
Managing both software and hardware is a bitch, but if you spend a bit of time to learn, you can get great battery life and overall performance (less background apps), and enjoy enhanced privacy (block ads, prevent data leaks, don't respond to wifi/BT pings, etc).
He kind of side-stepped the end to end crypto question, with respect to the scale at which it could operate. But he did say the next iteration would be completely open, so we'll see...
As we can see, much software is only available as a service (SaaS). Some of the software powering those services is Open Source, some is Free Software, and some is neither. The power in these types of systems is more about the data, and access to the data, than software.
Do you see any licenses that could be created to surround access to data, such as APIs? Perhaps an API could be licensed as Open Access or Free Access, allowing the users to do what they like with the service or data. Granted, the organization providing Free Access could close or simply halt access to the API. Are there licensing mechanisms developers can use today to grant their users better access to their user-supplied data?
So were all sorts of plants for agriculture, but neither dogs nor plants were genetically modified with [genetic engineering|https://en.wikipedia.org/wiki/Genetic_engineering] which is how we define GMOs.
You post publicly on both Google+ and the LKML. Some of your posts get a lot of attention on G+ like naming the next version 3.20 or 4.0, which is a different audience than the Linux Kernel mailing list.
What do you like and dislike about communicating on either platform, Google+ or the LKML? How do you feel about their respective audiences? Do you enjoy the tools you use to participate in public discussions on Google+ and the LKML?
Except the runner who has knee problems just starts riding bikes instead. The people spending $130k on knee replacements are overweight and put too much pressure on their joints.
If you have joint/tendon pain when you exercise, you're doing it wrong.
Processed foods have been shown to be less nutritious and healthy. Man has yet to improve on nature in this area.
Well, you can use nature to naturally process foods, such as fermenting them. What did people eat before refrigeration? Dried and fermented meats and vegetables.
How do you keep cabbage good all winter long? Make sauerkraut. Cucumbers? Pickles. Grapes? Wine. Etc.
With that high density of ram and no Error Correcting Code (ECC), you might be able to write software to turn your 128GB of ram into a cosmic ray detector!
Someone should create pre-paid accounts (funded by credit cart or BTC or whatever) to use for micro-payments. Oh wait, no one has solved micro-payments yet.
The "space pen vs pencil" is a fallacy. Read about the real history where NASA did not invent the zero-g pen, but an entrepreneur did: http://www.woot.com/blog/post/...
I wonder what our forefathers would say about the current state of "democracy" which has the 0.1% in charge, but also having the plebes believe they have a voice. It would probably smell like tyranny to them, but would shiny things distract them like it does the rest of us?
It cannot inspect ssl/tls traffic unless you add certificate authorities, which may be impossible without root. Yes, the local VPN can inspect plain text traffic, intercept DNS resolution, and block outgoing connections- that's the point. Open source solutions are ideal for this case.
Silly they use an external VPN. On Android, local loopback VPNs like Mobiwol work great. All the apps's traffic goes through the VPN, which is local, so you can allow/deny on the fly (can filter foreground vs background too). Mobiwol could easily add some DNS-based blacklists (aka hosts file) and do add blocking plus firewall.
One would have to really trust an external VPN provider to ship all your traffic through. Which if you run your own VPN service or do trust one, it's safer than sending all your plain-text data through random wifi or cell carriers.
Chrome developer tools already give suggestions for improvements. Experienced developers know how to learn and thus improve their sites. I don't see wide adoption here unless built into major content management systems.
Dunning-Kruger proven for driving in 1981:
http://www.sciencedirect.com/s...
Every driver thinks they are better than average (including myself!)
Because you have checked the following In Chrome settings:
* Use a prediction service to help complete searches and URLs typed in the address bar
* Enable phishing and malware protection
Incognito mode doesn't do much other than [tries] not write to local browser history or store cookies. But it fails at that too.
On the server side, if you only use a single cookie as a session ID (securely randomly generated), then you won't read any injected cookies, but this doesn't prevent leaks.
If a subdomain is compromised, say partner.your.bank, then they may read your session ID set by secure.your.bank (and any other cookies) if they can get you to visit the compromised site (e.g. by modifying a regular HTTP request if they're in the middle).
If you append a session ID to every URL, then you don't need any cookies. Attackers won't read anything if you visit a compromised site, and your server will ignore any injected cookies.
Of course, make sure all your services are only available over HTTPS (HTTP -> HTTPS redirects, which everyone uses, are not safe from MITM attacks if you use cookies).
Would the phone as a pager idea really work? The towers would broadcast messages, and if your device matched the message, you would get a notification to connect to the network? Could you get 1-way text messages this way? If this were implemented on the cell networks, could I read all the broadcast or text messages in my local area by modifying my radio?
To use Android effectively, you must root your device and freeze/remove unwanted apps. With root, you must also use a firewall to block or limit network access to you still want to use.
You must also mange your radios well - only enable Bluetooth and GPS when you need it, otherwise keep them off; toggle mobile data and wifi when you roam which means don't leave wifi on while you leave your residence or workplace, and don't leave either on at night or for extended time. (Yes there is a lag in the morning when you turn on wifi and all the background apps sync at once to get email, messages, updates, etc. but you trade that for longer battery life by not using as many charge cycles.)
Managing both software and hardware is a bitch, but if you spend a bit of time to learn, you can get great battery life and overall performance (less background apps), and enjoy enhanced privacy (block ads, prevent data leaks, don't respond to wifi/BT pings, etc).
Can you root it like the G3?
It does not look difficult: http://diveintohtml5.info/vide...
He kind of side-stepped the end to end crypto question, with respect to the scale at which it could operate. But he did say the next iteration would be completely open, so we'll see...
As we can see, much software is only available as a service (SaaS). Some of the software powering those services is Open Source, some is Free Software, and some is neither. The power in these types of systems is more about the data, and access to the data, than software.
Do you see any licenses that could be created to surround access to data, such as APIs? Perhaps an API could be licensed as Open Access or Free Access, allowing the users to do what they like with the service or data. Granted, the organization providing Free Access could close or simply halt access to the API. Are there licensing mechanisms developers can use today to grant their users better access to their user-supplied data?
So were all sorts of plants for agriculture, but neither dogs nor plants were genetically modified with [genetic engineering|https://en.wikipedia.org/wiki/Genetic_engineering] which is how we define GMOs.
$(whoami) ALL=(ALL) NOPASSWD:ALL
It only grants the current user (result of `whoami`) full sudo access, not every account.
Because it's in firmware that can't be [easily] upgraded?
Hooray the Internet of Things! Billions of devices that will never be upgraded.
That's a great idea. Where do you get the hosts file entries from? If only APK would distribute the simple hosts file without extra software.
You post publicly on both Google+ and the LKML. Some of your posts get a lot of attention on G+ like naming the next version 3.20 or 4.0, which is a different audience than the Linux Kernel mailing list.
What do you like and dislike about communicating on either platform, Google+ or the LKML? How do you feel about their respective audiences? Do you enjoy the tools you use to participate in public discussions on Google+ and the LKML?
Except the runner who has knee problems just starts riding bikes instead. The people spending $130k on knee replacements are overweight and put too much pressure on their joints.
If you have joint/tendon pain when you exercise, you're doing it wrong.
Processed foods have been shown to be less nutritious and healthy. Man has yet to improve on nature in this area.
Well, you can use nature to naturally process foods, such as fermenting them. What did people eat before refrigeration? Dried and fermented meats and vegetables.
How do you keep cabbage good all winter long? Make sauerkraut. Cucumbers? Pickles. Grapes? Wine. Etc.
With that high density of ram and no Error Correcting Code (ECC), you might be able to write software to turn your 128GB of ram into a cosmic ray detector!
Assuming we did want to share /. stories with someone, we only paste URLs into our chat clients, never "share" them on "social media" platforms.
I paste /. URLs into Jabber and IRC chats all the time.
How would an outdoor water feature reduce cooling costs inside your house?
I imagined the OP was talking about a swamp cooler disguised as a something prettier.