- 1
- 2
- 3
- 4
- 5
uint16_t swap_bytes(uint16_t a){
uint16_t tmp = *((uint8_t*)&a+1);
*(((uint8_t*)&tmp)+1) = *((uint8_t*)&a);
return tmp;
}
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+1000
uint16_t swap_bytes(uint16_t a){
uint16_t tmp = *((uint8_t*)&a+1);
*(((uint8_t*)&tmp)+1) = *((uint8_t*)&a);
return tmp;
}
−74
# django
user=User.objects.get(username=request.user.username)
+1001
'used strict'
Уже "попользовался" strict
Оригинал: https://github.com/tischenkoa/portfolio-front-end-javascript/blob/master/24_task_(Ajax_loading_comics)/loadimg.js#L4
+999
++++++++++++++++++++----------+++++++++++++++--+-+++-.
Брейнфак можно обфусцировать! Но зачем?
+973
/* */
int fooBar() {
/* do something */
/* - */ return NULL;
/* + */ return 0ULL;
}
> src/foobar.c:42:3: warning: return makes integer from pointer without a cast
> return NULL;
П О Ч И Н Е Н О
#17766
−227
use strict;
use warnings;
my ($i, $j) = (42, 13);
my $max = [ $i => $j ]->[ $i <= $j ];
print "max: $max\n";
Вот-так вот: http://ideone.com/2Rd3Mr
// Вроди где-то в PBP этот пример даже есть
#13520
+161
/* ... */
alert(event.target.parentElement.parentElement.parentElement.id);
/* ... */
Выход из списка и получение id блока-обертки...
−704
test "$(whoami)" != 'root' && (echo you are using a non-privileged account; exit 1)
Real Programmers
Most programmers will prefer to use the test built-in command, which is equivalent to using square brackets for comparison, like this
http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_07_01.html#sect_07_01_02_03
Вот такие они, real programmers.
Подсказка: Круглые скобки в шелле запускают саб-шелл
−392
test "$(whoami)" != 'root' && (echo you are using a non-privileged account; exit 1)
Real Programmers
Most programmers will prefer to use the test built-in command, which is equivalent to using square brackets for comparison, like this
http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_07_01.html#sect_07_01_02_03
Вот такие они, real programmers.
Подсказка: Круглые скобки в шелле запускают саб-шелл
+142
typedef long char wchar_t;
qnx4.25 /usr/include/stdlib.h:
sizeof(long char) == 2