I can NEVER show this to my parents
I'D BE SO FUCKED IF THEY KNEW I ENJOY THIS
(i just enjoy the song and that teto sings it, not what it's about)

Jar Jar Binks Fan Club
todays bird
Doug Jones

blake kathryn
Interview Vampire Daily
ojovivo

romaβ

PR's Tumblrdome

#extradirty
Sweet Seals For You, Always
Mike Driver
Misplaced Lens Cap

titsay

Kiana Khansmith
π©΅ avery cochrane π©΅
Show & Tell
d e v o n
"I'm Dorothy Gale from Kansas"
The Stonewall Inn
Cosimo Galluzzi
seen from Sweden

seen from Laos
seen from Chile

seen from United Kingdom
seen from Bangladesh
seen from United States
seen from United States
seen from Argentina

seen from Bangladesh

seen from Bangladesh
seen from Bangladesh
seen from TΓΌrkiye
seen from Paraguay
seen from United States
seen from Thailand
seen from Bulgaria
seen from United States

seen from Malaysia
seen from Poland
seen from Spain
@ikxi
I can NEVER show this to my parents
I'D BE SO FUCKED IF THEY KNEW I ENJOY THIS
(i just enjoy the song and that teto sings it, not what it's about)

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch β’ No registration required β’ HD streaming
I could refactor the whole codebase at work, to make it make a bit more sense kon
And no one would notice.
*Because no one besides me works on this kon*
And no one who works here and has worked on the codebase remembers anything about it kon
My brain's felt so nice recently kon
Maybe the Vitamin D is actually doing something
Or I've just met some cool people
Or showering more often somehow does sth to me kon
I just know I'm more happy kon
Kon kon
I'm in a big kon kon mood kon
Ever since reading that one ao3 smut fic, my brain's been so whimsical kon
I came for the "plot" and stayed for the plot and now my brain just feels nice kon
*ive been sending this gif to a new friend i made today all day kon*
This popped into my head unprompted
Ohh sweet summer child What will you do When your leaves become brown The rain becomes colder They days become shorter And you wither away

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch β’ No registration required β’ HD streaming
...my terminal
Pokkessembly
Just having the Intel Developer Manual for CPUs casually open on your computer is funny.
So many CPU instruction, so many pages
Pokkepanic
WHY THE ***** WOULD IT DO THAT WHY WOULD A PRINT STATEMENT NOT BEING IN THE PROGRAM CAUSE IT TO CRASH????????????????
int get_token_amount(char *file_buffer, char *delimiters, int size) { char *internal_file_buffer; memcpy(internal_file_buffer, file_buffer, size + 1); char *save_prt; char *token = strtok_r(internal_file_buffer, delimiters, &save_prt); int token_count = 1; while (1) { printf("%s\n", token); token = strtok_r(NULL, delimiters, &save_prt); if (token == NULL || token == "\0") break; token_count++; } return token_count; }
THAT PRINTF NOT BEING THERE CAUSES A CRASH IN THE MEMCPY FUNCTION HOW IT COMES BEFORE THE PRINT STATEMENT HOW ARE THOSE TWO RELATED GCC WHAT DID YOU DO
Pokkenizer
Finally finished my tokenizer in C and now I'm able to tokenize ANY text (as long as the delimiters are " \n\t\0") BUT BESIDES THAT, ALL
It's really funny, cause as a test file I use the source code, so the code is tokenizing itself kon so anytime I write something it just becomes more and more tokens
Next step is adding a way to split every more tokens like ()[]{}+-;."*/= but then have those token still be inside the file kon maybe I could do it by splitting each char, though then I'll have a problem with null-terminators, but ohh well, I will probably think of a solution
And it's all written *without* AI :3
#include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <string.h> int get_token_amount(char *file_buffer, char *delimiters, int size) { char *internal_file_buffer; memcpy(internal_file_buffer, file_buffer, size + 1); char *save_prt; char *token = strtok_r(internal_file_buffer, delimiters, &save_prt); int token_count = 1; while (1) { printf(token); token = strtok_r(NULL, delimiters, &save_prt); if (token == NULL || token == "\0") break; token_count++; } return token_count; } void get_tokens(char *file_buffer, char *delimiters, char *token_buffer) { char *save_prt; char *token = strtok_r(file_buffer, delimiters, &save_prt); int string_position = (int)strlen(token) +1; for (int i = 0; i < string_position; i++) { token_buffer[i] = token[i]; } while (1) { printf(token); token = strtok_r(NULL, delimiters, &save_prt); if (token == NULL || token == "\0") break; int token_length = (int)strlen(token) + 1; for (int i = 0; i < token_length; i++) { token_buffer[i + string_position] = token[i]; } string_position += token_length; } } int main(int argc, const char * argv[]) { FILE *fptr = fopen(argv[1], "r"); if (fptr == NULL) return 1; fseek(fptr, 0, SEEK_END); long size = ftell(fptr); fseek(fptr, 0, SEEK_SET); char *file_buffer = malloc(size + 1); fread(file_buffer, size, 1, fptr); fclose(fptr); char *delimiters = " \n\t"; int token_count = get_token_amount(file_buffer, delimiters, size); char *token_buffer = malloc(size + 1 + token_count); get_tokens(file_buffer, delimiters, token_buffer); free(token_buffer); free(file_buffer); return 0; }
POKKE

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch β’ No registration required β’ HD streaming
Teeth brushing thought
judt before midnight, washing myself to get ready for bed, I think of a way to write a tokenizer in assembly. previously tried it and failed, but now i got a grasp on how I'd do it
WHY DO THESE THINGS ENTER MY BRAIN BEFORE I WANNA SLEEP
so like, i just read a string with the read syscall and then have the length in RAX, no need to make a convoluted get length function (though i could just make a for-loop that goes until an end-of-file signal, but i already have the length) and then i read and compare the ascii characters to stuff. if it's a number i continue reading and adding the numbers to a buffer until i encounter not a number and then it's probably an operator, so i save the number and then it's length in an array, i somehow gotta figure out how to make that array and then a way to signify its element, then i wouldn't have to save the size of the element, would be wasted memory. next i read the operator and store it also and then maybe there is a variable name which i then also store. basic tokenizer, and then i need to either build an AST or if it's just math, I can't do Shunting-Yard with reverse Polish notation
WYH AM I THINKING OF THIS JUST BEFORE SLEEP
Pokke
I love Pokke
Pokke is great
What?
How does this website work?