Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:Choose a CMS you like (Score 1) 302

- No security issues (other than bad Javascript or the web server itself): there's nothing to hack, and if someone were to hack the web server itself, restoring the site is as easy as re-uploading the files (all of which can be maintained in version control like git).

For something like Jekyll, this also applies to the input. I use it for a couple of sites and, in both cases, the sources are Markdown files (easy to edit with your favourite text editor) stored in a git repo. When I'm working on updates, I run 'jekyll serve' locally and get a copy of the site on the loopback. When I want to push them, I can do jekyll build and then rsync the results to the web server (or do something more clever if I'm less lazy and want atomic updates). The entire change history of the site is stored in revision control and the revision control system contains everything necessary to recreate the site at any point in its history.

I've yet to see a CMS that allows trivial rollback to earlier versions of the site or which makes it easy to store the content in such a way that a compromised web server can't damage it.

Comment Re:HTML = programming (Score 1) 302

I'm not sure I agree with your first premise. There are fairly trivial combinators that you can write in lambda calculus that are conditional flow control (i.e. reduce to either the left or right lambda expression based on a value). The implementation of ifTrue in Smalltalk (loosely) follows this model.

More mundanely, the statement is obviously false because a language constructed with the basic arithmetic operators and unconditional branches is also turing complete.

Only if the unconditional branch is a computed branch. Otherwise how would you implement a program that either terminates or does not terminate based on user input? The example that comes to mind is the x86 MOV instruction which, with a single unconditional backwards branch is Turing complete, but this relies on several other aspects of the surroundings that allow you to implement a conditional branch (or, at least, a select, which is morally equivalent).

The simplest Turing-complete instruction set is a subtract-and-branch-if-not-negative instruction, but this is a conditional branch.

I agree that conditional flow control is slightly too broad a requirement, as it depends on an imperative model. Conditional execution depending on input data might be a better way of phrasing it.

Comment Re:They already have (Score 1) 667

I imagine that the major financial companies make this part of their economic modeling. Most of them do publish weather-related and climate-related advisories regarding commodity and company price trends, etc. How detailed do they get? The wouldn't tell and I am the wrong kind of scientist to ask. Can we make a government or public one? Yes, the level of detail is the big question.

Comment Re:They already have (Score 1) 667

Oh, do I have to qualify that for you, like the hottest outside of a period of Milankovitch Forcing? Gee, maybe the Earth's orbit changed, like back then, and we just didn't notice.

Let's take a look at one of the references you cited:

A section of a draft IPCC report, looking at short-term trends, says temperatures are likely to be 0.4 to 1.0 degree Celsius (0.7-1.8F) warmer from 2016-35 than in the two decades to 2005. Rain and snow may increase in areas that already have high precipitation and decline in areas with scarcity, it says.

It sounds like we have reason to be alarmed.

Comment Re:They already have (Score 1) 667

Well, I am trying to get through to you. You wrote that the hiatus was widely acknowledged by scientists! It's like talking with someone who believes in god - they have no facts, and no facts will convince them, and they create their own "science" which is nothing of the sort to bolster their viewpoint. So, I tried another another argument. But let's go back to the first. Nobody credible believes in a hiatus.

Comment Re:They already have (Score 1) 667

Calling names isn't going to advance your argument.

Orbital models only have two variables when there are two bodies. In reality we are always dealing with an n-body problem. Regarding atmospheric models, we have weather, which is too chaotic to forecast, and climate, which should not be.

We could sit back 100 years and see what is happening then, so that we have lots of good data points, but potentially at the cost of widespread famine, death, etc.

We have excellent reasons to stop releasing sequestered carbon even if we ignore global warming.

Comment Re:Yeah! (Score 1) 514

If they can pull more people out of poverty, what the U.S. does won't matter to China and India because their domestic markets will be larger than the United States. Currently they have even worse social inequity than we do, and the poor performance of their own markets forces their own people to look elsewhere for work.

Comment Re:Yeah! (Score 1) 514

Yes, I'm also a solid Democrat. But this has been a long time coming and IMO it's even in line with Obama's recent agenda on the Middle Class! The problem with the guest worker programs is that they devalue the local workers by diluting the market for them. The effect is to create a sort of "disposable worker" from our own citizens.

Now, of course jobs can be sent overseas too, but if the alternatives are to have foreign workers work at home, or in the U.S., neither choice is a win for our own citizens.

It continues to seem silly to have such a thrust on STEM education in the U.S. when the job market for STEM workers consistently goes to overseas hires, whether they are here or in their home nations. We need to work on the job-export issue as well.

Comment Re:The BORG! (Score 1) 266

The serial rather than episode format was a brave choice for a hour long prime time show at the time

You mean it was brave of them to say 'this format is working well for Babylon 5, I wonder if it will work if we do it with a series with a lot more brand recognition and a much bigger budget?'

Comment Re:A question for all the"deniers". (Score 2) 497

Because we have had colder temperatures with more CO2 in the past

This is true, but those times also had significantly higher ice concentrations. Paint a big chunk of the ground (and sea area) white and you'll see the

the earth is primarily a self regulating eco-system leading to stability

If you can say this with a straight face, then you have no idea of the history of the climate.

Slashdot Top Deals

We warn the reader in advance that the proof presented here depends on a clever but highly unmotivated trick. -- Howard Anton, "Elementary Linear Algebra"

Working...