They're bored. They have nothing to do. The government has granted themselves unfettered spying access only to find out that Americans are mostly civilized and hard working.
There are terrorists in America. You can find them on Nazi, white supremacist, and nationalist web forum. You can find them at the NRA. You can find them at gun shows. You can find them a Mar a Logo. This is what we come to expect from the Trump administration. Just another thing you can note right below putting babies in cages.
Javascript on the front end and a good interpreter on the back end. Node, Python, even Ruby is a good choice. For parts of the application that requires high performance you an use Java. I'm starting looking at Go and Rust.
I don't think these cops understand the will of the people. They seem incapable of learning. The only thing that will stop them is dis-empowerment and legal restrictions that lead prosecution in the courts with jail time.
On Friday a fellow engineer asked me what I thought about Crystal lang. Crystal lang is a Ruby like language that compiles down to machine code. Intrigued I took a look. That language is similar to Ruby but it has static typing which has a performance advantage. I wrote some test code. It was fast. The language itself is a little different from Ruby. What makes Ruby, in addition to syntactic sugar, are gems. Crystal's analogue are Shards. I noticed that the style of Shards is more procedural and less object oriented. This is my first impression of the language. It left me wondering what I would lose if I migrated from Ruby to Crystal lang.
I love Ruby. I love the syntax. The performance can be an issue sometimes but there are workarounds. Let's be honest, Python won the war. Python solved many problems with it's built-in types, language simplicity, and good performance. For all Ruby's syntactic sugar Python grew and dominated. There are extremely helpful Python modules that have made entire industries. Performance matters.
When I tested Crystal lang I asked myself if there was an analogue in Python. Quickly I thought of Cython. I never had a reason to use it but I was looking for compiled self contained binaries that I could use on some of my weirder systems where installing dependences is difficult. I work in the docker space so Go seemed like a good choice. With in less that an hour I was producing statically linked binaries. My code was simple so I did not have to tackled the more complicated bits but it was a good first go.
Python in Cython is still Python. Crystal lang is like Ruby with completely different modules. What Cython is doing is different from what Crystal is doing. Cython is taking Python code converting it to C which and running it in an embedded Python interpreter. Crystal is producing machine code without an interpreter which theoretically has performance advantage. The advantages of Crystal may not out weigh the advantages of Python and Cython.
I applaud what the folks at Crystal lang are doing. I may not use Crystal because it doesn't fit what I'm doing but I would love to see them grow and develop. If I need something compiled from a scripting language I would use Cython over Crystal. Win 1 for Python.
When the Uber app was updated on my phone and I read the disclaimer it creeped me out. I don't know if it helps but I downloaded Lyft and I like it. Lyft treats the divers better too.
Don't you think that the cops are just friggen weird. It's just one budget busting whack job idea after another. There is too much policing in this country. Rolling them back hard and fast. Enough of this nonsense.
I am aware that Tor came out off US Naval Research and DARPA but it was a different time back then. I would think that the NSA would have the institutional power to kill or poison Tor. If this is legit then perhaps I've over estimate NSA's clout. At this point I'm only left with distrust.
V.I.N.CENT - "There are three basic types, Mr. Pizer: the Wills, the Won'ts, and the Can'ts. The Wills accomplish everything, the Won'ts oppose everything, and the Can'ts won't try anything."
How about a space mirror? This seems like a better alternative than to blanket the sky with aerosols.
We must stop dumping carbon into the atmosphere. We need a Manhattan project for clean energy and over all efficiency. We will also have to change the way we live and perform operations on the planet. (No one want to hear this.) We could use this crisis as an inspiration for building a better life for all and more hopeful future. (Yeah, I like Star Trek.)
Gene Roddenberry - "In the 24th century there will be no hunger, there will be no greed, and all the children will know how to read."
Give these people and automatic extension. Make there tax date June 15th.
My personal feeling is that The Affordable Healthcare Act didn't go far enough. We need to go to single payer or something else. The current system is not functioning for most Americans and the costs are too high. Americans are in trouble. I have difficultly understanding the why folks oppose reforming the health system. There are a bunch of other systems that need reform too.
COBOL is great and prolific programming language. COBOL programms will be running long after we are dead. I almost wish I saw more COBOL on Linux. Designed by Grace Hopper she made it so average people with limited CS knowledge could get work done. It's about a sexy as Mom's minivan but it brings the groceries home.
Better launch systems and faster engines might help. The less time in microgravity, the less damage.(?) That fact we use chemical rockets to get into space and maneuver seems kind of antique.
systemd doesn't play well with others and it's an architectural abomination. Not to mention that systemd folks have the reputation of not playing well with others. It does things that admins and engineers just don't want their systems to do. Hmmm... I don't like systemd and it does things I do not like... Well F!@#$ that!
If SysV isn't enough we need to start coding something new.
Drones are military weapons and the FBI is a civilian organization. No civilian organization should have access to military style weapons, uniforms, or equipment.
No one on Wall St, except for the willingly deluded, believes that the markets are not rigged. Ever strategy takes into the account how the market is rigged and works to deal with it. You're either a whale (those that rigged the market) or remora (those work to siphon some value from the whales).
The problem for the studio was that it was too good. They were getting upstaged. Fire the studio execs and let good directors do their work.
We need a Creative Commons sci/fi universe that people can create from instead of using some copyrighted story. We need a pallet to paint from.
They're bored. They have nothing to do. The government has granted themselves unfettered spying access only to find out that Americans are mostly civilized and hard working.
There are terrorists in America. You can find them on Nazi, white supremacist, and nationalist web forum. You can find them at the NRA. You can find them at gun shows. You can find them a Mar a Logo. This is what we come to expect from the Trump administration. Just another thing you can note right below putting babies in cages.
Javascript on the front end and a good interpreter on the back end. Node, Python, even Ruby is a good choice. For parts of the application that requires high performance you an use Java. I'm starting looking at Go and Rust.
The web and browsers have gone mad. I like turning off javascript just to have a simple web experience.
I don't think these cops understand the will of the people. They seem incapable of learning. The only thing that will stop them is dis-empowerment and legal restrictions that lead prosecution in the courts with jail time.
How do you use Crystal in infrastructure code? Ansible offers so much.
On Friday a fellow engineer asked me what I thought about Crystal lang. Crystal lang is a Ruby like language that compiles down to machine code. Intrigued I took a look. That language is similar to Ruby but it has static typing which has a performance advantage. I wrote some test code. It was fast. The language itself is a little different from Ruby. What makes Ruby, in addition to syntactic sugar, are gems. Crystal's analogue are Shards. I noticed that the style of Shards is more procedural and less object oriented. This is my first impression of the language. It left me wondering what I would lose if I migrated from Ruby to Crystal lang.
I love Ruby. I love the syntax. The performance can be an issue sometimes but there are workarounds. Let's be honest, Python won the war. Python solved many problems with it's built-in types, language simplicity, and good performance. For all Ruby's syntactic sugar Python grew and dominated. There are extremely helpful Python modules that have made entire industries. Performance matters.
When I tested Crystal lang I asked myself if there was an analogue in Python. Quickly I thought of Cython. I never had a reason to use it but I was looking for compiled self contained binaries that I could use on some of my weirder systems where installing dependences is difficult. I work in the docker space so Go seemed like a good choice. With in less that an hour I was producing statically linked binaries. My code was simple so I did not have to tackled the more complicated bits but it was a good first go.
Python in Cython is still Python. Crystal lang is like Ruby with completely different modules. What Cython is doing is different from what Crystal is doing. Cython is taking Python code converting it to C which and running it in an embedded Python interpreter. Crystal is producing machine code without an interpreter which theoretically has performance advantage. The advantages of Crystal may not out weigh the advantages of Python and Cython.
I applaud what the folks at Crystal lang are doing. I may not use Crystal because it doesn't fit what I'm doing but I would love to see them grow and develop. If I need something compiled from a scripting language I would use Cython over Crystal. Win 1 for Python.
I don't know if crypto currencies have value. I know generating your own power does have value. Go for it.
When the Uber app was updated on my phone and I read the disclaimer it creeped me out. I don't know if it helps but I downloaded Lyft and I like it. Lyft treats the divers better too.
Don't you think that the cops are just friggen weird. It's just one budget busting whack job idea after another. There is too much policing in this country. Rolling them back hard and fast. Enough of this nonsense.
That is all.
... for starters.
Yes, it's not a solution to the problem but it's a start.
I am aware that Tor came out off US Naval Research and DARPA but it was a different time back then. I would think that the NSA would have the institutional power to kill or poison Tor. If this is legit then perhaps I've over estimate NSA's clout. At this point I'm only left with distrust.
Isn't it weird that DARPA would fund Tor and NSA/FBI would resist Tor?
V.I.N.CENT - "There are three basic types, Mr. Pizer: the Wills, the Won'ts, and the Can'ts. The Wills accomplish everything, the Won'ts oppose everything, and the Can'ts won't try anything."
How about a space mirror? This seems like a better alternative than to blanket the sky with aerosols.
We must stop dumping carbon into the atmosphere. We need a Manhattan project for clean energy and over all efficiency. We will also have to change the way we live and perform operations on the planet. (No one want to hear this.) We could use this crisis as an inspiration for building a better life for all and more hopeful future. (Yeah, I like Star Trek.)
Gene Roddenberry - "In the 24th century there will be no hunger, there will be no greed, and all the children will know how to read."
Give these people and automatic extension. Make there tax date June 15th.
My personal feeling is that The Affordable Healthcare Act didn't go far enough. We need to go to single payer or something else. The current system is not functioning for most Americans and the costs are too high. Americans are in trouble. I have difficultly understanding the why folks oppose reforming the health system. There are a bunch of other systems that need reform too.
COBOL is great and prolific programming language. COBOL programms will be running long after we are dead. I almost wish I saw more COBOL on Linux. Designed by Grace Hopper she made it so average people with limited CS knowledge could get work done. It's about a sexy as Mom's minivan but it brings the groceries home.
If they will not prosecute maybe the feds will. Either way this guy can't walk. Prosecute or roll back the law.
Better launch systems and faster engines might help. The less time in microgravity, the less damage.(?) That fact we use chemical rockets to get into space and maneuver seems kind of antique.
systemd doesn't play well with others and it's an architectural abomination. Not to mention that systemd folks have the reputation of not playing well with others. It does things that admins and engineers just don't want their systems to do. Hmmm... I don't like systemd and it does things I do not like... Well F!@#$ that!
If SysV isn't enough we need to start coding something new.
Drones are military weapons and the FBI is a civilian organization. No civilian organization should have access to military style weapons, uniforms, or equipment.
No one on Wall St, except for the willingly deluded, believes that the markets are not rigged. Ever strategy takes into the account how the market is rigged and works to deal with it. You're either a whale (those that rigged the market) or remora (those work to siphon some value from the whales).
I'm an egotistical programmer who can't conceive of anyone position but my own. They should pay me more.
http://en.wikipedia.org/wiki/T...