new tool for phishing. perfect.
HN user
dododo
i think you mean DES not DSA.
vitamin A is not water soluble. a significant excess of vitamin A is not fun.
quantum theory is a hypothesis. perhaps it's the best one so far for what the brain is made from. but it's truth is only as demonstrable as this: it's not yet been falsified.
if you want to build a reliable system, one useful thing to do is use equipment from multiple vendors. sure it's inconvenient, but by doing this you can often de-correlate failures. especially if you want to improve someone else's reliability.
e.g., from simple things like hard drives in a raid from different vendors, to n-version programming in safety critical systems (like airplanes).
perhaps you'd like to use -nativecss as the prefix rather than -ios? you'd hope styles would be portable across platforms?
the particular property of the stable distribution, i was thinking of, is "closure under convolution" which is the above marginalisation (i believe?).
infinite divisibility is (yet another) property of gaussians!
i wonder if you are thinking of another monoid property of a gaussian?
suppose we have:
x ~ N(0,1)
y|x ~ N(x, 1)
then we have: y ~ N(0, 2)
i.e., gaussians are closed under marginalization.however, i believe gaussians are not the only distribution with this property either: i think this property corresponds to the stable family of distributions: https://en.wikipedia.org/wiki/Stable_distributions
all exponential family distributions may be written in a form that depends upon a set of fixed dimension sufficient statistics. https://en.wikipedia.org/wiki/Exponential_family these sufficient statistics have the additive form described in this article (this is a consequence of i.i.d. sampling). it is common to exploit this structure when implementing efficient inference in, for example, mixture models.
if you combine this property with a bayesian analysis, and put a conjugate prior on the parameters of an exponential family distribution, then the posterior distribution, and the marginal likelihood depend upon on the data only through these sufficient statistics and everything else is easily computed. in this form, one of the sufficient statistics often has an interpretation as a "pseudo-count"; how many effective samples are encoded in your prior?
exponential family distributions include: poisson, exponential, bernoulli, multinomial, gaussian, negative binomial, etc.
these torrent sites seem to have a business model that makes them money, even a profit. what prevents larger media companies from adopting this proven(?) business model?
the bsd license says: "Redistributions in binary form must reproduce the above copyright notice, .... in the documentation and/or other materials provided with the distribution."
much of open source is redistributed at a cost, "(apparently) without adding value". https://www.gnu.org/philosophy/selling.html
i'm a bit confused: the bsd license allows you to re-sell someone else's source, binaries, images, etc for a profit. you just have to include the copyright notice.
is that what you're sending the dmca notice about? because you couldn't find the necessary copyright notice? (if you didn't download it, how do you know it's not in the about box?)
you can't really account for academic time on a hours-per-week basis. there's too much variety. as others have noted, it's a modal way of working. one week it's this, next month it's this, then maybe there's a paper deadline so you have to crunch down and get on a particular project. maybe it didn't fly so you have to try something else. it also depends where your university is.
being a professor is like running a company but with fewer support staff.
running your lab takes time most weeks, it's almost a constant: whole-lab meetings are easily 2-3hours per week, meeting each individual member of your lab is another hour or so each. then there's the admin for your lab (some of which you delegate). then there's organizing new grants: this involves collaborating with other people which means... yup, more meetings, often over skype or similar. then working out ideas, then writing, re-writing, and re-writing the draft and doing a lot of preliminary work. many grants need a lot of preliminary work to be shown before they get funding.
teaching is a lot more than just lecturing, you forgot: time spent talking to students one-on-one, running labs, designing interesting homeworks and exercises, preparing exams, marking homework and exams (marking easily consumes a week or two per course here). also, "knowing stuff already" doesn't mean you can teach it. it's enough to teach yourself, not others. developing a new course or just keeping and old course up to date and interesting takes an awful lot of time. what content will you include? what exercises? what text books? what's examinable? what's useful? what's the structure? what can students handle? all of these apply to courses old and new, but are faster for older courses, especially ones that do not change much (i.e., not active research areas).
then there's your research. what you do here depends upon the stage of you career. in the very least, you need to read. a lot. in CS-disciplines, this is easily a weekly activity. then you can spend some time thinking. then trying some things out. maybe. then going to conferences, talking to more people. presenting your own work: writing papers, arguing about their acceptance, visiting labs, workshops and conferences to give talks, preparing talks, etc.. believe it or not, you have to advertise and advocate your research, even once it's published and done. how else will people notice? so advertising is another thing you must spend your time on. now multiply all this work by the number of projects you have: potentially one per lab member.
interestingly you miss out one of the most important parts of being an academic--reviewing other people's work for conferences and journals. this takes a lot of time. firstly because reviewing a paper thoroughly takes considerable time, secondly because the discussion afterwards takes considerable time, and thirdly because often you will do this many, many times a year. as you become more senior, you take on a more senior role here: managing reviewers, journal and proceedings, conferences and workshops, etc.
i'm sure this isn't the same everywhere, but this is a small glimpse at academia in the places i'm aware of. it's busy busy busy.
i think you might have misunderstood what i wrote. i didn't say artists make more money from spotify/last.fm. i said they got a higher proportion of what was paid.
either way, it sounds like there are just anecdotes on both sides, so there's no actual information either way.
i think it can be pretty tricky to get real intuition without having the maths around. for example: exactly what assumptions do these methods make about the kinds of noise in the data? this can make a large difference in practice.
interestingly, with spotify and last.fm, artists get a higher proportion of the total money (15.3% and 15.8%, respectively) than they do with amazon/itunes (14.5%). it's surprising to me that it's so low for the artist in these cases.
where is the neuroscience in what you wrote?
it's a matter of how much you put into the type system:
add :: Integer -> Integer -> Integer
add x y = x * y
in any moderately complicated code, you need to test. types only go so far.that doesn't sound like such a great innovation from an environmental point of view. nor a sustainable use of resources.
is it easy to re-use parts from these failed devices?
there is not a normative way to discriminate between those two predictions.
it comes down to what kind of loss you incur for making an incorrect prediction. for mean, it's a squared loss (which penalizes you for being wrong in the tails more heavily) but for a median it's the absolute loss.
the argument being made was that fb is an outlier and (as I read it) the mean didn't reflect it, so the maths was "lazy" as it didn't take that into account. actually the mean does take these outliers into account (since it's corresponding loss function penalizes you harshly for being wrong in the tails) and so is probably not too unreasonable at predicting on outlier companies (certainly better than the median).
if it is a power law in the sense that a few companies return a lot, whilst most return a little, how does that make the mean irrelevant?
the mean of a power law of this form is more skewed by the few companies returning a lot than it is by the majority. assuming that more than 50% of the companies return a little, the median would be irrelevant, but the mean is very sensitive to outliers.
if you're talking about this example:
const uint16 max_pressure = 100;
enum Switch_position {up, down};
``Switch_position'' is not the name of a variable, but an enum type.re: Data.
not sure how they are going to unlock their data as they cut back on y! labs.
i wonder if they are aggregating the results using the mean or the median? with the mean, a single slow router/path can change the reported number completely, whilst with the median does not exhibit this problem as it is a more robust estimator.
here's another "fun" grep locale oddity:
$ echo HI | LANG=en_US.utf8 grep '^[a-z]'
HI
$ echo HI | LANG=C grep '^[a-z]'
$
apparently en_{GB,US}.utf8 orders a-z like aAbBcC..zZ. $ echo ZI | LANG=en_US.utf8 grep '^[a-z]'
$what about fusing more than one lens? isn't the issue with resolution essentially one of variance, so by using a second, independent lens, one should be able to improve resolution by a factor of two or sqrt(two)? (not that it's so simple; registration must be a pain.)
this! the feature set of g+ is bizarre: huddles? hangouts? no use for it. games? no use for it; plenty of alternatives. photos? nothing new; plenty of alternatives. sparks? very low signal to noise ratio, poorly integrated.
circles are nice but limited.
events? where on earth are events? google calendar integration?
is it a social network or a work network? what's the point of g+?
the content of g+ is sparse compared to fb: e.g., friend of friend actions are private on g+, but visible on fb.
for linear programming there are several well known polynomial time algorithms (some interior point methods: ellipsoid, projective, etc)--the problem itself is by no means in EXP or NP.
for worst case complexities it's often just a small region of the problem space that makes the bound large--but enumerating or cutting out those cases is tricky. you just don't see them on average because they are few (c.f., quicksort: O(n^2) worst case, O(n log n) average).
events? this seems like the most obvious thing missing from g+. have i missed it somewhere?
it is hosted by google:
$ host www.wdyl.com
www.wdyl.com is an alias for ghs.google.com.
ghs.google.com is an alias for ghs.l.google.com.
ghs.l.google.com has address 209.85.147.121
$ whois 209.85.147.121
Google Inc. GOOGLE (NET-209-85-128-0-1) 209.85.128.0 -209.85.255.255
and the domain wdyl.com is registered to someone who purports to have an @google.com email address.but ghs.google.com seems to be the host used by google apps:
http://www.google.com/support/a/bin/answer.py?answer=48090#K
and as another answer suggests, the dns hosting is suspect. doesn't seem like google...