This media is not supported in your browser
VIEW IN TELEGRAM
omg i found a full video of this meme
π₯°1
Forwarded from Daniel Spears
even though i donβt make that much money in terms of salary I plan on resigning with a golden parachute aka infecting the network with ransomware
π₯°1
Box making in progress
static int mvwcreate_box(WINDOW *win, int y, int x, int height, int width, const chtype chars[6]) {
const chtype * realchars = chars;
if(chars == NULL)
realchars = (const chtype []){ACS_VLINE, ACS_HLINE, ACS_ULCORNER, ACS_URCORNER, ACS_LLCORNER, ACS_LRCORNER};
// Vertical lines
mvwvline(win, y, x, realchars[0], height);
mvwvline(win, y, x + width - 1, realchars[0], height);
// Horizontal lines
mvwhline(win, y, x, realchars[1], width - 1);
mvwhline(win, y + height - 1, x, realchars[1], width) - 1;
// Corners
mvwaddch(win, y, x, realchars[2]);
mvwaddch(win, y, x + width - 1, realchars[3]);
mvwaddch(win, y + height - 1, x, realchars[4]);
mvwaddch(win, y + height - 1, x + width - 1, realchars[5]);
// Yeah I'm not happy about the magic numbers either, but this combo of shit makes the box draw correctly
return 0;
}Forwarded from NickR
Undiagnosed free will
Something terrible is going to happen tonight
π±1