
Great /prog/ band or GREATEST /prog/ band?
haha
Hmm, Great i'd say (seen 'em 4 times now) - however, not greatest. for that im thinking Camel, Hawkwind, E.L.P, or Van Der Graffe generator. Or king crimson. or anything from the 70's.
Этот тред состоит из: УНЫЛОСТЬ и ФАГГОТОРИЯ.
Not the best, but close enough.
fuck E.L.P. (and all neo-"prog"/regressive rock bands), they suck massive, pretentious balls.
Van Der Graaf Generator or King Crimson are the best
PINEAPPLETHIEF
GENESIS MOTHERFUCKERS !
Didn't anyone of you listen to the "Foxtrot" or "Nursery Cryme" album ???
Fuck Porcupine Tree.
They're popular only on the Internet for a reason.
King Crimson, Yes and Pink Floyd. That's it.
Brodequin. No questions asked. ROOOAAAAARRRRRRGWGRRRROOOOOOOOOOOWWWWWLLLLLLLGWGGWGWLLLLLAAAAAGGHHHHHHH
prog blastbeat
prog downtuned guitars
ROOOAAAAARRRRRRGWGRRRROOOOOOOOOOOWWWWWLLLLLLLGWGGWGWLLLLLAAAAAGGHHHHHHH
LISP
Is yours?
posting in an id thread on a dead board
Posting a dead board in an ID thread
Threading an ID board in a dead post
Just posting.
Not posti—wait what the fuck
LISP
IHBT
wow, this place is slow
it's not that slow
COOL FREE RINGTONES
Этот тред состоит из: УНЫЛОСТЬ и ФАГГОТОРИЯ.
...........
...................__
............./´¯/'...'/´¯¯`·¸
........../'/.../..../......./¨¯\
........('(...´...´.... ¯~/'...')
.........\.................'...../
..........''...\.......... _.·´
............\..............(
BRO FIST
IF YOU DONT POST THIS TO 5 BROS THEN YOU ARENT A BRO
...........
...................__
............./´¯/'...'/´¯¯`·¸
........../'/.../..../......./¨¯\
........('(...´...´.... ¯~/'...')
.........\.................'...../
..........''...\.......... _.·´
............\..............(
FISTING FIST
IF YOU DONT POST THIS TO 5 THREADS THEN YOU ARENT INTO FISTING
But it's in the wrong order!
http://shootout.alioth.debian.org/u32q/benchmark.php?test=all&lang=python3
So not only is Python 3 needlessly incompatible and requires a bunch of annoying code changes, it's also slower and uses more memory. (Unless you happen to do a lot of Mandelbrot set calculations.)
What the fuck, GWEEDO.
>>12
Make that five people, I used to use python but I've switched to C# lately
I tried C#, was a bit too verbose for my tastes. IronPython is pretty zippy, though. And having access to all the CLR goodness was a blast.
However, when all is said and done, I prefer C-compiled programs over bytecode or interpreted. Thus, Genie.
>>15
Was that C# 3.0 or 2.0? They're both quite verbose, but 3.0 less so.
>>15-16
c# is only a tiny bit more verbose than python.
unless of course you ignore the whitespace and not the braces.
>>17
I wouldn't say a tiny bit more:
var f = x => x + 1 is illegal).new int[] { 1,2,3,4 } instead of [1,2,3,4].params keyword instead of splat, lack of str[1:-1], etc. all add up.Most of its verbosity comes from its historical lack of type inference and its lack of higher-kinded polymorphism. The C heritage adds the minority of it, I'd say.
Also, Markdown seems to require that the asterisks used to form lists don't have any whitespace in front of them. How intuitive.
>>18
Well, that's because this isn't Markdown, it's some weirdass hack of Wakabamark with a bunch of extra shit jammed into it.
Try D, it's a lot like C#, only less stupid. I've found it to be a quite comfortable language for mid/high-level programming, and although it's statically typed, it also has some degree of inferencing, which if you combine with templates, you get a lot of the benefits of duck-typing without many of its problems (like runtime errors about wrong types).
import std.stdio;
int main(char[][] args)
{
// more type inferencing for 'n' and 'arg'
// also note use of 'length'
foreach (n, arg; args[1 .. length])
writefln(n,
// inline array declaration>>19
IAWTC. Used to be all over Python, now I'm mostly a D hacker.
(I really, really wish there was a dmd version for PowerPC, though.)
> * You're required to specify types for properties, return types of methods, and types of lambda expressions if assigned to a variable (i.e. var f = x => x + 1 is illegal).
> * The syntax for an array literal is new int[] { 1,2,3,4 } instead of [1,2,3,4].
these two are the same thing. type safety is a good thing.
> * Lots of little things such as params keyword instead of splat, lack of str[1:-1], etc. all add up.
that's just simpler, saner syntax. seriously, "splat"? "[1:-1]"? what is this, perl?
> * C# has no free functions. They're all (possibly static) methods of a class, and classes themselves can't be ‘imported’. The .NET class library is also excessively verbose in places.
>>21
I wasn't necessarily saying that all of those things were bad things (I agree with you on duck typing). But I'd like to address the following cases:
> > * You're required to specify types for properties, return types of methods, and types of lambda expressions if assigned to a variable (i.e. var f = x => x + 1 is illegal).
> > * The syntax for an array literal is new int[] { 1,2,3,4 } instead of [1,2,3,4].
> these two are the same thing. type safety is a good thing.
It's possible to implement both of those in a type-safe manner without the programmer having to hold the compiler's hand. The problem is that C#'s type inference is too limited.
> that's just simpler, saner syntax. seriously, "splat"? "[1:-1]"? what is this, perl?
> Do you think str.Substring(1, str.Length - 2) is any better, especially given that it's not even clear whether the second argument is a length or an absolute position?
if it were an absolute position, the name of the method should be slice, not substring.
the only reason there's any confusion about this is that javascript called their slice method substring.
Because the other thread sucks, maybe this one won't.
>>3
or it could be that IDs in ID threads are always shitty.
Этот тред состоит из: УНЫЛОСТЬ и ФАГГОТОРИЯ.
HAXUS get
>>6
posting the same thing in every thread just makes you look like a faggot.
I think you mean ФАГГОТ.
...
Pickle surprise
/* need to declare this before visit() */
static void order_vertices(struct cfgstruct *cfg, uint startvextex, uint numvertices, uint *vertices, struct stackstruct* order);/** Find and order SCCs with Tarjan's algorithm - recursive.
* See http://www.ics.uci.edu/~eppstein/161/960220.html#sca for more info on Tarjan's
*/
static uint visit(uint p /** Current vertex */, struct stackstruct *L, uint *dfsnum, uint *low, struct cfgstruct *cfg, struct stackstruct* order, uint curnum)
{
L->stack[L->index] = p;
L->index++; low[p] = curnum; dfsnum[p] = curnum; for(uint i = cfg->vertices[p].numexits; i > 0; i--) /* By doing it in reverse order, the reverse postorder will look nice ordered */
{
uint q = cfg->vertices[p].exits[i - 1];[rem]-*- bbcode -*-[/rem]
[define=expert text][b][u][i][o]text[/o][/i][/u][/b][/define]
[define=foldr=tag text][if=text][tag][car]text[/car][foldr=tag][cdr]text[/cdr][/foldr][/tag][/if][/define]
[expert][foldr=spoiler]EXPERT BBCODE METAPROGRAMMER[/foldr][/expert]
THIS BOARD NEEDS BBCODE :(
showPosts = inBase . mapM_ (puts . (" " ++) . show) . M.toList =<< getPostsclearPosts = mapM_ removePost . M.keys =<< getPostsЭтот тред состоит из: УНЫЛОСТЬ и ФАГГОТОРИЯ.
# -*- py -*-
def factorial(n):
if not isinstance(n, (int, long)): raise TypeError("expected %s but got %s" % ((int, long), type(n)))
if n < 0: raise ValueError("%d is less than 0" % n)
if n < 2: return 1
global N
p = r = N = high = 1
h = shift = 0
def floorlog2(n):
a = 0
while n > 1:
n >>= 1
a += 1
return a
log2n = floorlog2(n)
# -*- ruby -*-
def satori
[]
end
$hybt = satori()
def yhbt?
true unless $hybt.join != ("yhbt")
end
def method_missing(abelson,*harold)
$hybt << abelson.to_s[0,1]
satori = satori()
if yhbt?
%w{Gerald Jay Sussman SICP}.each_with_index{|snake, grunnur| satori[grunnur] = snake.length; @gjs = snake.upcase if grunnur == 2}
((satori[0]+satori[3])*(satori[1]+satori[2])*satori[1]).times{puts @gjs}
end
: loeb ( f -- g ) dup [ loeb swap call ] curry fmap ;too bad it doesn't seem to work.
Ah, zell me abouz your mozzer. Was she progressive?
Is it because of your life that you are going through all this?
Zis therapy session is noz abouz me, my dear friend. Please, ztell me how it makes you feel.
Does it bother you that it makes I feel?
I'VE READ SICP
I OWN SICP but I have not read it.
I wrote SICP
I am SICP.
Post deleted by user.
Delete used by poster.
Этот тред состоит из: УНЫЛОСТЬ и ФАГГОТОРИЯ.