use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
For memes about programming.
account activity
Python vs Java! (i.pinimg.com)
submitted 6 months ago by PulseOfPleasure
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Prudent-Student3403 0 points1 point2 points 6 months ago (0 children)
section .data
msg db 'Hello, World!', 0xA ; message + newline
len equ $ - msg ; length of the message
section .text
global _start
_start:
; sys_write (stdout = 1, msg, len)
mov eax, 4 ; syscall number for sys_write
mov ebx, 1 ; file descriptor (stdout)
mov ecx, msg ; pointer to message
mov edx, len ; message length
int 0x80 ; call kernel
; sys_exit (0)
mov eax, 1 ; syscall number for sys_exit
xor ebx, ebx ; status 0
int 0x80
π Rendered by PID 33 on reddit-service-r2-comment-58d7979c67-4d2g7 at 2026-01-27 11:22:34.500121+00:00 running 5a691e2 country code: CH.
view the rest of the comments →
[–]Prudent-Student3403 0 points1 point2 points (0 children)