Think about having a watching party for a new release combined with party/barbecue or something. Maybe you could get your friends to pitch in and watch it on a 100" projection screen. The cost quickly becomes a non-issue.
Tektronix/Xerox already did the fixed nozzle printers in the 1990s with the Phaser series, however they sprayed pigmented wax instead of ink. The heads were about $1000 to replace but the printers were several times that in cost.
I unlocked and started my Aunt's Dodge Neon once using my Mom's key from her Jeep. I did it just to see if it could be done. I put the key in and jiggled it a bit and it worked.
I worked with someone from Bangladesh and he said "guys from India/Pakistan/Bangladesh are all mamma's boys who are served by their moms. They live in the house until they get married. Mom cooks and cleans for them. When you separate them from their mother, they become useless until they can figure out how to live on their own, which is why so many just get married as soon as they can." Those were his words.
Daleks run on wheels, but they have a weakness, stairs. (Well except until they learned to levitate)
Wheels need a flat surface whereas walking legs do not.
So lets say the Dr. finds something wrong with pregnant woman that requires treatment, but the treatment has to be completed before the baby is born because the stress of pregnancy along with her ailment might kill her. This might be just what they needed. Put the baby in a suspended state until the treatment has finished. Perhaps this could also be used in a situation where they baby might die as a result of its own body processing the treatment. If it could be suspended, it may survive.
We had something similar happen at a previous employer. They took exchange down for 2 or 3 minutes while they did some sort of cascade delete and all traces of the e-mail were gone from the entire company.
The Ugly Indian
The speaker makes the point of India can't expect to consider itself a world class country until it cleans itself up. He goes into the culture of "someone else will deal with it" so he organizes cleanup events that target the worst areas so that people see how nice an area can become and then start to take pride in keeping that way.
People who primarily program in C are probably not writing the same kinds of programs that people who program in PHP, Java or C# are making. C people are writing for performance, compactness, an embedded system or for an OS. PHP people are probably mostly web services type people. C# makes it very easy to put together something to stick in front of someone's face. For example I recently put together a GUI front end in C# that makes calls to a REST based API on a web based management tool, because it was hosted off site, slow and required a lot of navigation to get what you wanted. The clicking, and wait 10 to 15 seconds then click again was replaced by a series of combo boxes in a windows form so that you could select what you wanted to do, type in a parameter that gets input validated before the web call is made and hit submit. Things that were on separate web pages were all front and center.
Of course Java is for portability, serverlets, and Android applications. If you know Java, you can pick up C# and vice versa. I've converted simple applications C# to Java and simple Java to C# by pasting the Java code into visual studio as-is (or the C# code into Netbeans as-is) and started doing find and replace for most of the obvious stuff. Hit compile and see what error came up, ok need to replace "string" with "String", Console.Write with System.Out.Print. Replace a TryParse with a parse and a Try/Catch.
In the end they start to look more and more alike. If your IDE is a fairly helpful kind, it will auto-fix silly things like capitalization along the way.
Heck I love how easy it is to decompile C# and Java so I can see how other people do stuff when it's a closed source application.
Carbon Dioxide suffocation is pretty bad. It's basically the only form of suffocation your body is designed to violently react to.
When killing rodents industrially for reptile feed, nitrogen suffocation is generally considered humane because they just fall asleep.
Think about having a watching party for a new release combined with party/barbecue or something. Maybe you could get your friends to pitch in and watch it on a 100" projection screen. The cost quickly becomes a non-issue.
Tektronix/Xerox already did the fixed nozzle printers in the 1990s with the Phaser series, however they sprayed pigmented wax instead of ink. The heads were about $1000 to replace but the printers were several times that in cost.
I unlocked and started my Aunt's Dodge Neon once using my Mom's key from her Jeep. I did it just to see if it could be done. I put the key in and jiggled it a bit and it worked.
There are two kinds of country in this world. Those that use the metric system and those who have put men on the moon.
Scientists have missed every prediction on global warming since then whole craze started.
I worked with someone from Bangladesh and he said "guys from India/Pakistan/Bangladesh are all mamma's boys who are served by their moms. They live in the house until they get married. Mom cooks and cleans for them. When you separate them from their mother, they become useless until they can figure out how to live on their own, which is why so many just get married as soon as they can." Those were his words.
OMG Gumbermints! Help us!
Daleks run on wheels, but they have a weakness, stairs. (Well except until they learned to levitate) Wheels need a flat surface whereas walking legs do not.
Looks like his detractors are fare more triggered than his supporters.
Wasn't that already tried in the 1930s and 1940s?
Comey said that Brennan takes his orders directly from Obama. Lest us not forget, the CIA was caught spying on their own senate oversight committee.
Just have it do a pop-up every 5 minutes telling you the phone has been recalled.
So lets say the Dr. finds something wrong with pregnant woman that requires treatment, but the treatment has to be completed before the baby is born because the stress of pregnancy along with her ailment might kill her. This might be just what they needed. Put the baby in a suspended state until the treatment has finished. Perhaps this could also be used in a situation where they baby might die as a result of its own body processing the treatment. If it could be suspended, it may survive.
Do you replace cancer with something else? Nope.
When your doctor removes cancer from your body, do you ask him what he is going to replace it with?
We had something similar happen at a previous employer. They took exchange down for 2 or 3 minutes while they did some sort of cascade delete and all traces of the e-mail were gone from the entire company.
The Ugly Indian The speaker makes the point of India can't expect to consider itself a world class country until it cleans itself up. He goes into the culture of "someone else will deal with it" so he organizes cleanup events that target the worst areas so that people see how nice an area can become and then start to take pride in keeping that way.
It's just taking a knee for civil rights.
His theory was cheapo amazon or chinese usb c cables.
It looks like it's twitching almost like a wink, when you say that.
People who primarily program in C are probably not writing the same kinds of programs that people who program in PHP, Java or C# are making. C people are writing for performance, compactness, an embedded system or for an OS. PHP people are probably mostly web services type people. C# makes it very easy to put together something to stick in front of someone's face. For example I recently put together a GUI front end in C# that makes calls to a REST based API on a web based management tool, because it was hosted off site, slow and required a lot of navigation to get what you wanted. The clicking, and wait 10 to 15 seconds then click again was replaced by a series of combo boxes in a windows form so that you could select what you wanted to do, type in a parameter that gets input validated before the web call is made and hit submit. Things that were on separate web pages were all front and center. Of course Java is for portability, serverlets, and Android applications. If you know Java, you can pick up C# and vice versa. I've converted simple applications C# to Java and simple Java to C# by pasting the Java code into visual studio as-is (or the C# code into Netbeans as-is) and started doing find and replace for most of the obvious stuff. Hit compile and see what error came up, ok need to replace "string" with "String", Console.Write with System.Out.Print. Replace a TryParse with a parse and a Try/Catch. In the end they start to look more and more alike. If your IDE is a fairly helpful kind, it will auto-fix silly things like capitalization along the way. Heck I love how easy it is to decompile C# and Java so I can see how other people do stuff when it's a closed source application.
The last we need is the ICC trying to enforce some kind of decency laws on the internet. (I mean beyond the blatantly illegal, like kiddie pr0n.)
I feel the exact same way about Hillary.
It's not conflicting with THEIR interests.
Carbon Dioxide suffocation is pretty bad. It's basically the only form of suffocation your body is designed to violently react to. When killing rodents industrially for reptile feed, nitrogen suffocation is generally considered humane because they just fall asleep.