php fun
1
Name:
Anonymous
2010-02-27 16:04
hello guyse, i just wondered if you had some ideas what i can make in php, wich i will learn alot from, and not being to hardcore. i only some the basic like if,else, sessions and so on :).
If you got some cool ideas or some cool things u made when u was on my niveu i'll like to hear it :)
Thanks :)
2
Name:
Anonymous
2010-02-27 16:38
You should make a site to test your knowledge of English, because you really need it.
3
Name:
Anonymous
2010-02-27 16:45
Make something that passes messages between two sessions.
4
Name:
Anonymous
2010-02-27 16:46
>>2
And upon completing the test, it would display "YOUR GAY" and print ASCII penii in rainbow colours. Yes, I agree.
5
Name:
Anonymous
2010-02-27 17:02
rainbow colored ascii penii
Go with this it should teach you about loops...
You should make in a way that the penii vary in size and form.
6
Name:
Anonymous
2010-02-27 17:03
7
Name:
Anonymous
2010-02-27 20:50
>>6
It will print the ascii penii.
8
Name:
Anonymous
2010-02-28 5:22
Let's talk more about printing ascii penii. I wish they were spinning penii.
9
Name:
Anonymous
2010-02-28 5:33
I wish they were in my anii.
10
Name:
Anonymous
2010-02-28 17:18
import IO
type Penis = String
makePenis :: Integer -> Penis
makePenis len = '8' : shaft len ++ "D"
where shaft 0 = ""
shaft l = '=' : shaft (l - 1)
fibs :: [Integer]
fibs = 0 : 1 : zipWith (+) fibs (tail fibs)
main :: IO ()
main = do mapM_ (\l -> putStrLn (makePenis l)) fibs
11
Name:
Anonymous
2010-02-28 19:53
where shaft = replicate
12
Name:
Anonymous
2010-02-28 20:25
>>11
But I love rewriting library functions!
Yeah, I do need to learn more of them, I end up doing that a lot.
13
Name:
11-san
2010-03-01 4:36
And now I just realised I meant shaft = flip replicate '='. It's not as good now :(
Newer Posts