Clipboard.

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

ljfa

New Member
Jul 29, 2019
2,761
-46
0
I hoped you would've got a bit more trust into the community than that.


An answer in Reika's thread
 

ljfa

New Member
Jul 29, 2019
2,761
-46
0
<copygirl> Too bad for you. I don't.
<copygirl> Also why that weird title?
<copygirl> And the pack is called c[OP]ypack
<Skye> Because part of it is "code"
<Skye> copy


another random snippet :3
really you didn't know Mac??
that was this old Mac Skye talked about
 

Gamefury64

New Member
Jul 29, 2019
405
-2
0
e89d2a544d7db42c9970617de806d5d010c6cc50_full.jpg
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
You Might Be A Programmer If:

1. You immediately complain that this should be subscripted as zero.

2. Most people say "Go To Hell," but you tell people to redirect to
/dev/null.

3. By the time you've gotten here in the document, you've run Tidy
or a similar app to check my X/HTML skills.

4. Point 3 annoys you, since this document is obviously plaintext
without html formatting.

5. The statement (0x2b||!0x2b) makes sense to you.

6. You find 5 funny.

7. You note with disgust that it always evaluates to true, since
0x2b != 0.

8. Point 7 disgusts you, because under other languages than C++
(Java, for one), it would throw an exception, runtime error, etc.

9. Both points 7 and 8 disgust you, because (0x2b||!0x2b) isn't
a statement.

10. You wonder why there's so much religious debate. After all,
can't they just type man life?

11. Point 10 disgusts you, because your PDP-10 does not have man pages.

12. When you think of Blowfish, the stuff described on www.blowfish.com
has no relation to what comes to mind.

13. You can write formal grammar statements for C, C++, C#, Java,
Perl, Python, PHP, HTML, any XML schema, Assembly, Obj-C, QBASIC,
XBASIC, Oo_O BASIC, StarMath, and just about anything else I could
throw at you, and yet the question, "Is our children learning?"
raises no red flags.

14. You wonder why point 13 is making a reference to John Kerry.

15. You quit drinking coffee; caffeine I/Vs are easier.

16. Your root@localhost password is the chemical formula for caffeine.

17. You didn't know that there was a war in Iraq: too busy preparing
for the next gcc compiler release.

18. You wrote the GPL.

19. You think a "pipe dream" involves bash scripting.

20. Point 19 disgusts you, since zsh is so much more powerful.

Disclaimer:

This joke was obtained from the FSF's email archives of the GNU
Project. The Free Software Foundation claims no copyrights on
this joke.

Further jokes (by Scott Lawrence) were added later on.

$Date: 2010/11/17 01:55:50 $
 

Gamefury64

New Member
Jul 29, 2019
405
-2
0
You Might Be A Programmer If:

1. You immediately complain that this should be subscripted as zero.

2. Most people say "Go To Hell," but you tell people to redirect to
/dev/null.

3. By the time you've gotten here in the document, you've run Tidy
or a similar app to check my X/HTML skills.

4. Point 3 annoys you, since this document is obviously plaintext
without html formatting.

5. The statement (0x2b||!0x2b) makes sense to you.

6. You find 5 funny.

7. You note with disgust that it always evaluates to true, since
0x2b != 0.

8. Point 7 disgusts you, because under other languages than C++
(Java, for one), it would throw an exception, runtime error, etc.

9. Both points 7 and 8 disgust you, because (0x2b||!0x2b) isn't
a statement.

10. You wonder why there's so much religious debate. After all,
can't they just type man life?

11. Point 10 disgusts you, because your PDP-10 does not have man pages.

12. When you think of Blowfish, the stuff described on www.blowfish.com
has no relation to what comes to mind.

13. You can write formal grammar statements for C, C++, C#, Java,
Perl, Python, PHP, HTML, any XML schema, Assembly, Obj-C, QBASIC,
XBASIC, Oo_O BASIC, StarMath, and just about anything else I could
throw at you, and yet the question, "Is our children learning?"
raises no red flags.

14. You wonder why point 13 is making a reference to John Kerry.

15. You quit drinking coffee; caffeine I/Vs are easier.

16. Your root@localhost password is the chemical formula for caffeine.

17. You didn't know that there was a war in Iraq: too busy preparing
for the next gcc compiler release.

18. You wrote the GPL.

19. You think a "pipe dream" involves bash scripting.

20. Point 19 disgusts you, since zsh is so much more powerful.

Disclaimer:

This joke was obtained from the FSF's email archives of the GNU
Project. The Free Software Foundation claims no copyrights on
this joke.

Further jokes (by Scott Lawrence) were added later on.

$Date: 2010/11/17 01:55:50 $
wot.
 
  • Like
Reactions: xTordX

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
Code:
-- bisect.lua
-- bisection method for solving non-linear equations

delta=1e-6    -- tolerance

function bisect(f,a,b,fa,fb)
local c=(a+b)/2
io.write(n," c=",c," a=",a," b=",b,"\n")
if c==a or c==b or math.abs(a-b)<delta then return c,b-a end
n=n+1
local fc=f(c)
if fa*fc<0 then return bisect(f,a,c,fa,fc) else return bisect(f,c,b,fc,fb) end
end

-- find root of f in the inverval [a,b]. needs f(a)*f(b)<0
function solve(f,a,b)
n=0
local z,e=bisect(f,a,b,f(a),f(b))
io.write(string.format("after %d steps, root is %.17g with error %.1e, f=%.1e\n",n,z,e,f(z)))
end

-- our function
function f(x)
return x*x*x-x-1
end

-- find zero in [1,2]
solve(f,1,2)

because stuff