Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror

Comment Re:The Web Before SEO Pollution (Score 0) 171

Well at the time the web was still mainly non commercial, scientists and universities, and both had a free web access on specialized network lines so it was fast, so all the home pages which were a big part of the web of the time didn't cost anything, and were hosted on the universities web servers mainly.

There is also another big difference : there was no copyright lawsuit, so there were lots of fan sites for star wars, star trek and so on, and no DMCA take down to be afraid of (there was no video neither, but we didn't even think about that at the time !). A free web. And led by the n-etiquette, totally forgotten today apparently, implicit respect for everyone and read the "famous" manual !

Comment I do... ! (Score 0) 148

I agree aac is slightly better, but I wasn't in the mood to convert everything to aac, I never bothered with finding new tools for aac, it's much easier to rip a cd to ogg or mp3, I usually use ogg because it's more efficient than mp3 at the same bitrate. Still quite a lot of ogg files today, even if the majority is probably in mp3, I don't like flac, I find it's just a waste of space, go to mp3 @320 kbs in this case, nobody can hear a difference at 320 kbs, and at least it compresses something compared to flac !

Comment About subroutine signatures... (Score 1) 74

With these signatures, you could assume that there was finally a way to simplify the passing of a parameter by reference (to be able to modify a variable passed as parameter). Well it's not even supported ! You can still use these old references of course, but nothing to simplify the over abundance of $ there !
Well they are between 10 and 20 years late on a feature like this already, even in perl6 (raku) they support this like that :
sub inc(Int $x is rw) {
    $x++;
}

and it's normal, it's one of the 1st things you can think about once you have real signatures for subs ! What a shame... It's like they are afraid to add some serious new functionalities, and meanwhile time passes... !

Comment By the way this number is not so big... ! (Score 1) 316

I was almost sure I would find something able to decompose it, simply in perl5 : Math::Prime::Util there https://metacpan.org/pod/Math:...
with it :
time perl prime.pl 2737631357921793461914298938174501291
1238179781035456451*2211012810782926841
perl prime.pl 2737631357921793461914298938174501291 0,06s user 0,00s system 99% cpu 0,058 total :)

Slashdot Top Deals

The trouble with being punctual is that nobody's there to appreciate it. -- Franklin P. Jones

Working...