know me the secrets of programming?
1
Name:
Anonymous
2016-06-05 9:30
No comment.
2
Name:
Anonymous
2016-06-05 9:42
I know how to swap two numbers without using a third one.a := a + b b := a - b a := a - b
3
Name:
Anonymous
2016-06-05 9:45
>>2 I know better:
a^=b^=a^=b;
4
Name:
Anonymous
2016-06-05 9:50
I know how to replace division by a multiplication and a bitwise shift.
5
Name:
Anonymous
2016-06-05 9:55
I know how to reverse string in place.void strrev(char *p) { char *q = p; while(q && *q) ++q; for(--q; p < q; ++p, --q) *p = *p ^ *q, *q = *p ^ *q, *p = *p ^ *q; }
6
Name:
Cudder
!cXCudderUE
2016-06-05 19:35
>>2 b = b - a;
a = 2*a + b;
7
Name:
Anonymous
2016-06-05 19:39
>>6 This isn't swapping, your b doesn't hold a, and your a holds (a + b) instead of b.
8
Name:
Cudder
!cXCudderUE
2016-06-05 20:06
9
Name:
Anonymous
2016-06-05 23:35
>>6,8 Fuck off, you sub-nigger.
10
Name:
Anonymous
2016-06-05 23:40
>>6 Good job, IHBT
a = 10 b = 7
b = 7 - 10
b = -3
a = 20 + -3
a = 17
11
Name:
Anonymous
2016-06-05 23:49
>>9,10 have taken your pills today? YHBT
12
Name:
Anonymous
2016-06-06 1:04
13
Name:
Anonymous
2016-06-06 1:17
>>12 You should be ashamed of getting trolled by Cudder.
14
Name:
Anonymous
2016-06-06 12:27
>>1 The greatest secret in programming:
Bloat adds are a layer of memory that can be corrupted but will not affect the program, and the inefficient code - lower speed preserves the CPU from threats of electromigration/overheating damage.
15
Name:
Anonymous
2016-06-15 4:11
>>2 What programming language is this?
16
Name:
Anonymous
2016-06-15 11:01
17
Name:
Anonymous
2016-06-16 7:15
Check em
18
Name:
Anonymous
2016-06-16 8:51
>>14 lower speed preserves the CPU from threats of electromigration/overheating damage. It's the opposite actually. Lower speed = more CPU cycles burned = more power consumption.
19
Name:
Anonymous
2016-06-16 13:34
>>18 How do different clock speeds change the number of cycles for an opcode?
20
Name:
Anonymous
2016-06-17 18:10
I know how to reconstruct call stack without frame pointer.
21
Name:
Anonymous
2016-06-17 18:34
What programming language is this?
22
Name:
Anonymous
2016-06-18 0:26
Newer Posts