[ / / / / / / / / / / / / / ] [ dir / random / 93 / biohzrd / hkacade / hkpnd / tct / utd / uy / yebalnia ]

/tripfriend/ - tripfriend

tripfriend
Name
Email
Subject
REC
STOP
Comment *
File
Password (Randomized for file and post deletion; you may also set your own.)
Archive
* = required field[▶Show post options & limits]
Confused? See the FAQ.
Flag
Embed
(replaces files and can be used instead)
Oekaki
Show oekaki applet
(replaces files and can be used instead)
Options
dicesidesmodifier

Allowed file types:jpg, jpeg, gif, png, webp,webm, mp4, mov, swf
Max filesize is16 MB.
Max image dimensions are15000 x15000.
You may upload5 per post.


File: 1e39bf0b8579223⋯.jpg (4.46 MB,2560x1600,8:5,1.jpg)

 No.54244 [Last50 Posts]

it's been a long time since I've made a new thread~!

happy December, everyone~!

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54245

>>54242

yeah, I don't need to save any data, only take the data given to me, run calculations, then display via labels

>>54243

okay, it isn't until sunday, after all.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54246

File: 5439efbed71331b⋯.png (1.09 MB,1400x1400,1:1,1.png)

>>54242

he posted an image

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54247

Here is what I think would make Poppy's code work.

If you need to make all of the subprocedures work together, you need to define the variables which they are meant to use in a place which is visible to all of the procedures.


/* ========================================================================== */
/* */
/* Filename.c */
/* (c) 2001 Author */
/* */
/* Description */
/* */
/* ========================================================================== */

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Smoothie_Queen_Calculator___Final_Project
{

public partial class Form1 : Form
{

decimal subtotal;
decimal extras;
decimal discount;
decimal tax;
decimal total;
decimal[,] smoothieListDecimal = {{ 5.99M, 6.99M, 7.99M, 8.99M },
{ 6.99M, 7.99M, 8.99M, 9.99M }};
int quantityval;
float quantity;

public Form1()
{
InitializeComponent();
total = 0m;
}

private void calculatebtn_Click(object sender, EventArgs e)
{
string customername = customernametxt.Text;

if (customername.Length == 0)
{
MessageBox.Show("Please enter the customer name");
return;
}
bool tempval = Single.TryParse(quantitytxt.Text, out quantity);
if (!tempval)
{
MessageBox.Show("Please enter a numeric quantity");
return;
}

CalculateSubTotal();
CalculateExtras();
CalculateDiscount();
AddTax();
Finalize();
}

private void CalculateSubTotal()
{
if (sizecb.SelectedIndex != -1 && stylecb.SelectedIndex != -1)
{
subtotal = smoothieListDecimal[stylecb.SelectedIndex, sizecb.SelectedIndex];
}
else
{
MessageBox.Show("Please select size and style.");
return;
}
subtotal = subtotal * quantityval;
total += subtotal;
}

private void CalculateExtras()
{
if (echinaceacb.Checked)
{
extras += 0.75m;
}
if (beepollencb.Checked)
{
extras += 0.75m;
}
if (energyboostercb.Checked)
{
extras += 0.75m;
}
extras = extras * quantityval;
total += extras;
}

private void CalculateDiscount()
{
decimal discount = 0m;
decimal total = 0;
if (couponrb.Checked)
{
discount = total* 0.1m;
}
else if(preferredrb.Checked)
{
discount = total* 0.15m;
}
total -= discount;
}

private void AddTax()
{
tax = total* 0.08m;
total += tax;
}
private void Finalize()
{
subtotallbl.Text = subtotal.ToString("C");
extraslbl.Text = extras.ToString("C");
discountlbl.Text = discount.ToString("C");
salestaxlbl.Text = tax.ToString("C");
amountduelbl = total.ToString("C");
}

private void exitbtn_Click(object sender, EventArgs e)
{
this.Close();
}

private void clearbtn_Click(object sender, EventArgs e)
{
}

private void aboutbtn_Click(object sender, EventArgs e)
{
}

private void exitToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Close();
}
}
}

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54248

oh, I had them in a void, I'm silly, I was just doing it in notepad so I didn't notice, whoopsss

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54249

>>54246

I know.

>>54245

>yeah, I don't need to save any data, only take the data given to me, run calculations, then display via labels

I guess you are right, at least the assignment doesn't seem to mention that you should be able to click it multiple times and get the sum for all of the suborders.

>>54248

It happens ^.^

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54250

>>54249

>I guess you are right

In which case, you should indeed put

total = 0m; 

back at the beginning of private void calculatebtn_Click(object sender, EventArgs e)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54251

File: 6d42620b7fc3439⋯.jpg (203.5 KB,800x600,4:3,1.jpg)

>>54249

i-if you know, why'd you ask?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54252

>>54251

I was asking you how you make the code coloured on 8chan, like you did in >>54210

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54253

File: eccd5bd77d4958d⋯.png (8.57 KB,445x234,445:234,3561321.png)

>>54247

it doesn't like this for some reason

also it is doing something, but it still isn't displaying the error box if a style and size isn't picked, and it isn't doing any of the math

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54254

>>54250

I don't really think three people need to be editing the same code


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Smoothie_Queen_Calculator___Final_Project
{
public partial class Form1 : Form
{
string customername = customernametxt.Text;
int quantityval;
decimal subtotal;
decimal extras;
decimal discount;
decimal tax;
decimal total;
decimal[,] smoothieListDecimal = {{ 5.99M, 6.99M, 7.99M, 8.99M },
{ 6.99M, 7.99M, 8.99M, 9.99M }};
public Form1()
{
InitializeComponent();
}
private void calculatebtn_Click(object sender, EventArgs e)
{
if (customername.Length == 0)
{
MessageBox.Show("Please enter the customer name.");
return;
}
bool tempval = Int32.TryParse(quantity.Text, out quantityval);
if (!tempval)
{
MessageBox.Show("Please enter a numeric quantity.");
return;
}

if(quantityval == 0)
{
MessageBox.Show("Quantity must not be zero.");
return;
}
total = 0m;
CalculateSubTotal();
CalculateExtras();
CalculateDiscount();
AddTax();
Finalize();
}

private void CalculateSubTotal();
{
if (sizecb.SelectedIndex != -1 && stylecb.SelectedIndex != -1)
{
subtotal = smoothieListDecimal[stylecb.SelectedIndex, sizecb.SelectedIndex];
}
else
{
MessageBox.Show("Please select size and style.");
return;
}
subtotal = subtotal * quantityval;
total += subtotal;
}
private void CalculateExtras();
{
extras = 0m;
if(echinaceacb.Checked)
{
extras += 0.75m;
}
if(beepollencb.Checked)
{
extras += 0.75m;
}
if(energyboostercb.Checked)
{
extras += 0.75m;
}
extras = extras * quantityval;
total += extras;
}
private void CalculateDiscount();
{
discount = 0m;
if(discountCoupon.Checked)
{
discount = total * 0.1m;
}
else if(discountPreferred.Checked)
{
discount = total * 0.15m;
}
total -= discount;
}
private void AddTax();
{
tax = total * 0.08m;
total += tax;
}
private void Finalize();
{
subtotallbl.Text = subtotal.ToString("C");
extraslbl.Text = extras.ToString("C");
discountlbl.Text = discount.ToString("C");
salestaxlbl.Text = tax.ToString("C");
amountduelbl = total.ToString("C");
}
}
}

does this work?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54255

>>54253

you forgot to put '.Text' after "amountduelbl"

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54256

>>54253

Huh, that is weird.

If you compile it, does it give you any error message?

Oh never mind Poppy got it X3

>>54254

I was just trying to sum up all the changes I was suggesting into one post.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54257

>>54256

no changes are necessary

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54258

it's just getting confusing with three different versions of the same code, is what I meant, s-sorry

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54259

>>54255

thank you

>>54256

>>54258

okay, so we'll just all work with poppy's code

>>54254

it doesn't like when you put ";" at the end of the voids

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54260

>>54259

oh sorry, those don't go there, editing without colors or formatting is bullying me

once you remove those, does it give any errors?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54261

>>54257

Yes they were, the definition of variables in the right place were necessary!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54262

>>54254

dont put ; when defining functions, only when calling them

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54263

>>54260

yeah a few, i can't copy paste your code due to the buttons, so I am trying to get it as close as possible

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54264

>>54263

>i can't copy paste your code due to the buttons

Those have different names, yeah? So if you just find&replace them with the right names, you should be fine, yes?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54265

what I am working with now

the errors all come up, but still no math being displayed

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;

namespace Smoothie_Queen_Calculator___Final_Project

{

public partial class Form1 : Form

{

string customername = customernametxt.Text;

int quantityval;

decimal subtotal;

decimal extras;

decimal discount;

decimal tax;

decimal total;

decimal[,] smoothieListDecimal = {{ 5.99M, 6.99M, 7.99M, 8.99M },

{ 6.99M, 7.99M, 8.99M, 9.99M }};

public Form1()

{

InitializeComponent();

}

private void calculatebtn_Click(object sender, EventArgs e)

{

if (customername.Length == 0)

{

MessageBox.Show("Please enter the customer name");

return;

}

bool tempval = Single.TryParse(quantitytxt.Text, out quantity);

if (!tempval)

{

MessageBox.Show("Please enter a numeric quantity");

return;

}

total = 0m;

CalculateSubTotal();

CalculateExtras();

CalculateDiscount();

AddTax();

Finalize();

}

private void CalculateSubTotal()

{

if (sizecb.SelectedIndex != -1 && stylecb.SelectedIndex != -1)

{

subtotal = smoothieListDecimal[stylecb.SelectedIndex, sizecb.SelectedIndex];

}

else

{

MessageBox.Show("Please select size and style.");

return;

}

subtotal = subtotal * quantityval;

total += subtotal;

}

private void CalculateExtras()

{

if (echinaceacb.Checked)

{

extras += 0.75m;

}

if (beepollencb.Checked)

{

extras += 0.75m;

}

if (energyboostercb.Checked)

{

extras += 0.75m;

}

extras = extras * quantityval;

total += extras;

}

private void CalculateDiscount()

{

if (couponrb.Checked)

{

discount = total* 0.1m;

}

else if(preferredrb.Checked)

{

discount = total* 0.15m;

}

total -= discount;

}

private void AddTax()

{

tax = total* 0.08m;

total += tax;

}

private void Finalize()

{

subtotallbl.Text = subtotal.ToString("C");

extraslbl.Text = extras.ToString("C");

discountlbl.Text = discount.ToString("C");

salestaxlbl.Text = tax.ToString("C");

amountduelbl = total.ToString("C");

}

private void exitbtn_Click(object sender, EventArgs e)

{

this.Close();

}

private void clearbtn_Click(object sender, EventArgs e)

{

}

private void aboutbtn_Click(object sender, EventArgs e)

{

}

private void exitToolStripMenuItem_Click(object sender, EventArgs e)

{

this.Close();

}

}

}

>>54264

it makes it freak out, tho

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54266

>>54265

which lines the errors at?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54267

>>54265

you forgot .Text again after the one amountlbl

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54268

>>54265

don't call it Finalized, rename it

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54269

File: d023c15ba5d87ff⋯.png (29.11 KB,804x578,402:289,5312.png)

File: 7fba75fe3c25d30⋯.png (28.44 KB,864x627,288:209,564654.png)

>>54266

here and here

>>54267

fixed that

>>54268

okay

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54270

>>54269

out quantityval, not quantity

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54271

>>54269

the line numbers of the errors?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54272

File: e61647fea7729d8⋯.png (37.48 KB,934x723,934:723,1.PNG)

File: 623c9d62bdd4f95⋯.png (30.71 KB,976x741,976:741,2.PNG)

File: 39327d2eeb34815⋯.png (31.91 KB,762x731,762:731,3.PNG)

>>54270

fixed, but now it is giving me an error

>>54271

here are all the lines of code with numbers

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54273

>>54272

change Single.TryParse to Int32.TryParse

change "finished" to "UpdateValues()"

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54274

>>54269

Finalize was the one that was reserved, not Finalized. just call it displayAll or something

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54275

>>54272

do none of these have errors?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54276

>>54272

updatevalues seems like maybe it's used too, just call it something random, like holo anon's "displayAll" or "PushValues" or whatever you want

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54277

>>54276

okay

>>54275

it isn't giving me any

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54278

>>54276

it's not

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54279

>>54272

>fixed, but now it is giving me an error

string customername = customernametxt.Text;

So, is customernametxt your object, or is it copypaste from Poppy?

>>54272

>>54275

Also there might be an error in assigning that value ↑ there instead of in the constructor thing, no? Is it valid to assign a non-static value in the class definition?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54280

>>54279

>non-static value

Or maybe I meant *non-constant.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54281

>>54279

no, it is the name of the textbox

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54282

don't forget to set the discount to 0m at the start of the discount calculation


private void CalculateDiscount()
{
discount = 0m;
if(couponrb.Checked)

it won't error but it might cause issues later if we forget

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54283

>>54279

it's logically wrong; you want the value of the text at the time the buy button is clicked

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54284

>>54279

>>54283

thanks for pointing that out


private void calculatebtn_Click(object sender, EventArgs e)
{
string customername = customernametxt.Text;

silly dumb poppy

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54285

File: 14972e1e3fc46b6⋯.png (28.68 KB,858x645,286:215,514321.png)

>>54282

will this work?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54286

>>54281

Okays. Then do what anon and Poppy say and move that assignment into the clickey subprocedure.

>>54283

>>54284

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54287

>>54285

put it at the start of the CalculateDiscount void, I don't know how visual C# works but we're adding to the value and never removing from it otherwise, so it won't go to 0 if there's no coupon, if there was one before, possibly

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54288

>>54284


string customerName;
private void calc.(...) {
customerName = customernametxt.Text;
...
}

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54289

>>54286

>>54287

holy shit

it fucking works guys

you were right tho mouse

it does stack, and it thinks the extras, are more then they are, but it fucking works

woooooooo

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54290

File: 31c11d832dc2c72⋯.png (64.45 KB,1606x553,1606:553,432132.png)

there is also something off about the discount, but it fucking works

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54291

>>54289

Yay, progress!

>it does stack

What stacks? o:

Post your current code please.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54292

File: 5a74cc47010e3f8⋯.jpg (309.07 KB,750x1019,750:1019,53829193_p0.jpg)

>>54289

when you test, you test the error cases also

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54293

>>54289

yay~! I'm glad that you won't have to pay someone monster-anon, that wouldn't be good at all

>>54290

would you be able to post the entire code again?

also, add this to the last function, updatevalues or whatever you called it


subtotallbl.Text = subtotal.ToString("C");
extraslbl.Text = extras.ToString("C");
discountlbl.Text = discount.ToString("C");
salestaxlbl.Text = tax.ToString("C");
amountduelbl.Text = total.ToString("C");
subtotal = 0m;
extras = 0m;
discount = 0m;
tax = 0m;
total = 0m;

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54294

File: 9a9c3147db2f9d8⋯.gif (2.43 MB,1279x720,1279:720,shudder giphy.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54295

>>54291

>>54293

sure thing

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;

namespace Smoothie_Queen_Calculator___Final_Project

{

public partial class Form1 : Form

{

int quantityval;

decimal subtotal;

decimal extras;

decimal discount = 0M;

decimal tax;

decimal total;

decimal[,] smoothieListDecimal = {{ 5.99M, 6.99M, 7.99M, 8.99M },

{ 6.99M, 7.99M, 8.99M, 9.99M }};

public Form1()

{

InitializeComponent();

}

private void calculatebtn_Click(object sender, EventArgs e)

{

string customername = customernametxt.Text;

if (customername.Length == 0)

{

MessageBox.Show("Please enter the customer name");

return;

}

bool tempval = Int32.TryParse(quantitytxt.Text, out quantityval);

if (!tempval)

{

MessageBox.Show("Please enter a numeric quantity");

return;

}

total = 0m;

CalculateSubTotal();

CalculateExtras();

CalculateDiscount();

AddTax();

displayAll();

}

private void CalculateSubTotal()

{

if (sizecb.SelectedIndex != -1 && stylecb.SelectedIndex != -1)

{

subtotal = smoothieListDecimal[stylecb.SelectedIndex, sizecb.SelectedIndex];

}

else

{

MessageBox.Show("Please select size and style.");

return;

}

subtotal = subtotal * quantityval;

total += subtotal;

}

private void CalculateExtras()

{

if (echinaceacb.Checked)

{

extras += 0.75m;

}

if (beepollencb.Checked)

{

extras += 0.75m;

}

if (energyboostercb.Checked)

{

extras += 0.75m;

}

extras = extras * quantityval;

total += extras;

}

private void CalculateDiscount()

{

if (couponrb.Checked)

{

discount = total * 0.1m;

}

else if (preferredrb.Checked)

{

discount = total * 0.15m;

}

total -= discount;

}

private void AddTax()

{

tax = total * 0.08m;

total += tax;

}

private void displayAll()

{

subtotallbl.Text = subtotal.ToString("C");

extraslbl.Text = extras.ToString("C");

discountlbl.Text = discount.ToString("C");

salestaxlbl.Text = tax.ToString("C");

amountduelbl.Text = total.ToString("C");

}

private void exitbtn_Click(object sender, EventArgs e)

{

this.Close();

}

private void clearbtn_Click(object sender, EventArgs e)

{

}

private void aboutbtn_Click(object sender, EventArgs e)

{

}

private void exitToolStripMenuItem_Click(object sender, EventArgs e)

{

this.Close();

}

}

}

>>54292

?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54296

>>54295

you type bad numbers and see if you get an error

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54297

>>54296

oh, yeah

tested and passed

just need the math now

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54298

>>54293

those are reassigned each time you click the button

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54299

>>54298

are you sure? he said they were stacking

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54300

>>54297

I think you didn't check for the quantity to be greater than 0.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54301

>>54293

>>54298

Some of these get recalculated so in theory it shouldn't matter? But! discount definitely needs to get set to zero at some point, otherwise the user may use a discount once, and then tit will remain set for later purchases.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54302

>>54298

not all of them are, I mean, and he can just move them all to the end since that seems cleaner, right?

>>54300

he removed that when I added it, he's a big bully

>>54301

>>54287

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54303

File: 43685413b38bb3d⋯.webm (50.75 KB,640x360,16:9,Dragoon - yessirthankyous….webm)

>>54302

Hehe, I missed that one xwx

You were correct and Monsterboy should have listened! Bad boy!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54304

File: c00332b84cb7b50⋯.png (21.99 KB,826x458,413:229,14dfad.png)

>>54300

this is the sample he gave me, he didn't even account for that, so I am not too worried

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54305

>>54299

oh, that. I would have keet them local to their individual funs


private void CalculateExtras() {
decimal extras = 0m;
...

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54306

>>54297

Also don't forget to implement the Clear button ^.^''

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54307

>>54306

it's okay, he can do that after because the actual values used to calculate shouldn't be cleared with the clear button, but before that, just in case someone calculates more than one time before clearing

I'm sure he won't forget~

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54308

>>54307

>just in case someone calculates more than one time before clearing

Well, if they get recalculated with clicking the button anyways, then it doesn't matter, yeah.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54309

File: 1eed1589ca41b17⋯.png (134.26 KB,1442x464,721:232,53212.png)

you know I think this sample was really well thought out

the extras are only counted once I think

>>54306

oh, yea

I think I got that

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54310

>>54309

can we see your code once more please~?

would you like it to calculate the extras one time, or many?

it seems like an oversight on their part, but it's up to you, really

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54311

>>54309

>the extras are only counted once I think

Well, in the sample they are, but that feels wrong, no? You order them for each smoothie, not just one yeah? And so you should pay for all of it.

I think you could keep it the way you have it now, and add a comment inside the relevant part of the code that you did that on purpose and that if it was meant to do what the sample picture shows, you would just remove the part where you multiply the extras by the quantity, yes?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54312

File: 83b0faa3e57f8ea⋯.jpg (30.05 KB,400x455,80:91,1.jpg)

I'm happy for you monster-anon, good job getting it all working~

I'm sorry that I'm not so good but at least I was able to help, I had fun!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54313

File: ccf0fdf91ea2d1e⋯.png (246.32 KB,512x512,1:1,50041767_p0.png)

remember to read McConnell's book, it's popular and easy to find

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54314

sorry, my mother had to order pizza

>>54310

ummm, here you are again if you want

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;

namespace Smoothie_Queen_Calculator___Final_Project

{

public partial class Form1 : Form

{

int quantityval;

decimal subtotal;

decimal extras = 0M;

decimal discount = 0M;

decimal tax;

decimal total;

decimal[,] smoothieListDecimal = {{ 5.99M, 6.99M, 7.99M, 8.99M },

{ 6.99M, 7.99M, 8.99M, 9.99M }};

public Form1()

{

InitializeComponent();

}

private void calculatebtn_Click(object sender, EventArgs e)

{

string customername = customernametxt.Text;

if (customername.Length == 0)

{

MessageBox.Show("Please enter the customer name");

return;

}

bool tempval = Int32.TryParse(quantitytxt.Text, out quantityval);

if (!tempval)

{

MessageBox.Show("Please enter a numeric quantity");

return;

}

total = 0m;

CalculateSubTotal();

CalculateExtras();

CalculateDiscount();

AddTax();

displayAll();

}

private void CalculateSubTotal()

{

if (sizecb.SelectedIndex != -1 && stylecb.SelectedIndex != -1)

{

subtotal = smoothieListDecimal[stylecb.SelectedIndex, sizecb.SelectedIndex];

}

else

{

MessageBox.Show("Please select size and style.");

return;

}

subtotal = subtotal * quantityval;

total += subtotal;

}

private void CalculateExtras()

{

if (echinaceacb.Checked)

{

extras += 0.75m;

}

if (beepollencb.Checked)

{

extras += 0.75m;

}

if (energyboostercb.Checked)

{

extras += 0.75m;

}

extras = extras * quantityval;

total += extras;

}

private void CalculateDiscount()

{

if (couponrb.Checked)

{

discount = total * 0.1m;

}

else if (preferredrb.Checked)

{

discount = total * 0.15m;

}

total -= discount;

}

private void AddTax()

{

tax = total * 0.08m;

total += tax;

}

private void displayAll()

{

subtotallbl.Text = subtotal.ToString("C");

extraslbl.Text = extras.ToString("C");

discountlbl.Text = discount.ToString("C");

salestaxlbl.Text = tax.ToString("C");

amountduelbl.Text = total.ToString("C");

}

private void exitbtn_Click(object sender, EventArgs e)

{

this.Close();

}

private void clearbtn_Click(object sender, EventArgs e)

{

}

private void aboutbtn_Click(object sender, EventArgs e)

{

}

private void exitToolStripMenuItem_Click(object sender, EventArgs e)

{

this.Close();

}

}

}

idk

>>54311

>but that feels wrong,

yea, I don't know what I want to do about that

>>54312

~

thank you very much poppy, and you too mouse, and the 'holo" anon as well

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54315

File: 17fae670e080f7d⋯.jpg (744.96 KB,816x2000,51:125,1.jpg)

>>54313

thank you for helping me help him, neat holo anon~

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54316

File: cba54929911e113⋯.jpg (196.13 KB,653x764,653:764,1.jpg)

>>54314

no problem~ it wouldn't be good if you had to pay someone, and I think you would have done that instead of learning, so that wouldn't be very good, I think

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54317

>>54316

nah, I wouldn't learned anything tbh

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54318

File: 62591e6d12f0588⋯.jpg (194.12 KB,500x743,500:743,shy original.jpg)

>>54313

>>54314

I'm sure it must be a mistake on their part, it wouldn't make sens to charge for the extras only once.


private void clearbtn_Click(object sender, EventArgs e)
{
subtotallbl.Text = "0";
extraslbl.Text = "0";
discountlbl.Text = "0";
salestaxlbl.Text = "0";
amountduelbl.Text = "0";
//tick off the extras
//set no discount
//any other stuff?
}

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54319

>>54318

>//any other stuff?

Oh, of course, clear the namefield, clear the quantity, clear / set to default the size and style! And bring focus to the customer name, as per >>53827

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54320


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Smoothie_Queen_Calculator___Final_Project
{
public partial class Form1 : Form
{
int quantity;
decimal total;
decimal[,] smoothieListDecimal = {{ 5.99M, 6.99M, 7.99M, 8.99M },
{ 6.99M, 7.99M, 8.99M, 9.99M }};
public Form1()
{
InitializeComponent();
}
private void calculatebtn_Click(object sender, EventArgs e)
{
string customername = customernametxt.Text;
if (customername.Length == 0)
{
MessageBox.Show("Please enter the customer name");
return;
}
if (Int32.TryParse(quantitytxt.Text, out quantity))
{
MessageBox.Show("Please enter a numeric quantity");
}
else
{
quantity = 0;
}
CalculateSubTotal();
CalculateExtras();
total = total * quantity;
CalculateDiscount();
AddTax();
displayAll();
}
private void CalculateSubTotal()
{
if (sizecb.SelectedIndex != -1 && stylecb.SelectedIndex != -1)
{
total = smoothieListDecimal[stylecb.SelectedIndex, sizecb.SelectedIndex];
}
else
{
MessageBox.Show("Please select size and style.");
total = 0m;
}
}
private void CalculateExtras()
{
decimal extras = 0m;
if (echinaceacb.Checked)
{
extras += 0.75m;
}
if (beepollencb.Checked)
{
extras += 0.75m;
}
if (energyboostercb.Checked)
{
extras += 0.75m;
}
total += extras;
}
private void CalculateDiscount()
{
decimal discount = 0m;
if (couponrb.Checked)
{
discount = total * 0.1m;
}
else if (preferredrb.Checked)
{
discount = total * 0.15m;
}
total -= discount;
}
private void AddTax()
{
total += total * 0.08m;
}
private void displayAll()
{
subtotallbl.Text = subtotal.ToString("C");
extraslbl.Text = extras.ToString("C");
discountlbl.Text = discount.ToString("C");
salestaxlbl.Text = tax.ToString("C");
amountduelbl.Text = total.ToString("C");
}
private void exitbtn_Click(object sender, EventArgs e)
{
this.Close();
}
private void clearbtn_Click(object sender, EventArgs e)
{
}
private void aboutbtn_Click(object sender, EventArgs e)
{
}
private void exitToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Close();
}
}
}

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54321

>>54320

wat is this

>>54318

I think you mean

private void clearbtn_Click(object sender, EventArgs e)

{

subtotallbl.Text = "$0.00";

extraslbl.Text = "$0.00";

discountlbl.Text = "$0.00";

salestaxlbl.Text = "$0.00";

amountduelbl.Text = "$0.00";

//tick off the extras

//set no discount

//any other stuff?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54322

>>54320

oh fug


if (! Int32.TryParse(quantitytxt.Text, out quantity))
{
MessageBox.Show("Please enter a numeric quantity");
quantity = 0;
}

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54323

>>54321

oh nevermind, I am just going to go with poppy's, the way they did just seems wrong

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54324

>>54320


if (Int32.TryParse(quantitytxt.Text, out quantity))
{
MessageBox.Show("Please enter a numeric quantity");
}
else
{
quantity = 0;
}

Why is there the else quantity = 0; ?

>>54322

Ah, was a mistake eh?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54325

>>54321

clarification, optimization; let me put it with the correction


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Smoothie_Queen_Calculator___Final_Project
{
public partial class Form1 : Form
{
int quantity;
decimal total;
decimal[,] smoothieListDecimal = {{ 5.99M, 6.99M, 7.99M, 8.99M },
{ 6.99M, 7.99M, 8.99M, 9.99M }};
public Form1()
{
InitializeComponent();
}
private void calculatebtn_Click(object sender, EventArgs e)
{
string customername = customernametxt.Text;
if (customername.Length == 0)
{
MessageBox.Show("Please enter the customer name");
return;
}
if (! Int32.TryParse(quantitytxt.Text, out quantity))
{
MessageBox.Show("Please enter a numeric quantity");
quantity = 0;
}
CalculateSubTotal();
CalculateExtras();
total = total * quantity;
CalculateDiscount();
AddTax();
displayAll();
}
private void CalculateSubTotal()
{
if (sizecb.SelectedIndex != -1 && stylecb.SelectedIndex != -1)
{
total = smoothieListDecimal[stylecb.SelectedIndex, sizecb.SelectedIndex];
}
else
{
MessageBox.Show("Please select size and style.");
total = 0m;
}
}
private void CalculateExtras()
{
decimal extras = 0m;
if (echinaceacb.Checked)
{
extras += 0.75m;
}
if (beepollencb.Checked)
{
extras += 0.75m;
}
if (energyboostercb.Checked)
{
extras += 0.75m;
}
total += extras;
}
private void CalculateDiscount()
{
decimal discount = 0m;
if (couponrb.Checked)
{
discount = total * 0.1m;
}
else if (preferredrb.Checked)
{
discount = total * 0.15m;
}
total -= discount;
}
private void AddTax()
{
total += total * 0.08m;
}
private void displayAll()
{
subtotallbl.Text = subtotal.ToString("C");
extraslbl.Text = extras.ToString("C");
discountlbl.Text = discount.ToString("C");
salestaxlbl.Text = tax.ToString("C");
amountduelbl.Text = total.ToString("C");
}
private void exitbtn_Click(object sender, EventArgs e)
{
this.Close();
}
private void clearbtn_Click(object sender, EventArgs e)
{
}
private void aboutbtn_Click(object sender, EventArgs e)
{
}
private void exitToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Close();
}
}
}

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54326

>>54321

Aha, yeah probably!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54327

>>54324

>Why is there the else quantity = 0; ?

Oh, I see now this wasn't the only thing wrong, it was reverse wasn't it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54328

in clearbutton click, you can set the values to zero, and then run UpdateValues();

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54329

and then blank the name field and the radio buttons and such

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54330

>>54321

>>54325

the Extras stack for some reason

>>54329

I was just planning setting everything back to the way it was

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54331

>>54330

They are supposed to stack, no? If you have one ticked, 0.75$, if two, 1.50$ etc.

Oh wait, you don't set them to zero in the procedure (like Holoposter does).

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54332

>>54325

the way you're defining the tax and the discount and stuff inside of the functions, how will displayAll see it?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54333

>>54331

like I did from the start, this is why so many different code edits is confusing

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54334

>>54331

one click of the cal button is just going to be one order

two clicks have nothing to do with each other

pls tell me how to fix

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54335

File: 967cc899542d679⋯.jpg (3.65 MB,3000x4000,3:4,36178994_p0.jpg)

>>54330

I forgot, this is c#. the original was better although I think setting the total to 0 in case of error is better than ignoring it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54336

>>54334

I told you how to fix


private void UpdateValues()
{
subtotallbl.Text = subtotal.ToString("C");
extraslbl.Text = extras.ToString("C");
discountlbl.Text = discount.ToString("C");
salestaxlbl.Text = tax.ToString("C");
amountduelbl.Text = total.ToString("C");
subtotal = 0m;
extras = 0m;
discount = 0m;
tax = 0m;
total = 0m;
}

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54337

>>54332

that was the point, I forgot you want displayed

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54338

okay, now it isn't for some reason

this shit man

>>54336

yeah, I went back up, thank you lots~

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54339

>>54337

o-oh, oki, sorry, that's the first mistake I've seen you make, so I thought it was me being silly~

>>54338

no problem! let me know if there's any other issues please

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54340

>>54333

Fair enough!

>>54334

>one click of the cal button is just going to be one order

>two clicks have nothing to do with each other

I realize.

For the record, not to bully Poppy, but I think it would be better to set extras to 0 with every call of CalculateExtras(), at the beginning of the procedure x:

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54341

File: b058b805ba871f8⋯.jpg (23.96 KB,247x226,247:226,hey guys.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54342

>>54340

like I said, all the edits make it confusing, I had the stuff being set to zero at the start of each part originally, but I changed it, you can set them to zero when defining them and then set them to 0 again at the end of the operation

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54343

>>54340

I am just going to upload the one that doesn't account for multiple smoothie extras, then e-mail a one that does, and ask him about it

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54344

the only thing that wasn't set to zero at the start was tax, because tax is set, not added to

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54345

>>54340

Now that you meantion it, extras is never initialized explicitly. Good thing c# does it to 0, but this wouldn't work in other languages.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54346

File: 3cdab0a263c70f6⋯.jpg (176.48 KB,1280x687,1280:687,tumblr_o07zzcMq1t1v3v71xo2….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54347

>>54346

hello~ how are you today? happy that it's the weekend now?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54348

>>54343

by the original, i mean your version, just with setting numbers to 0 in case of error

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54349

File: b54c7eea56192d4⋯.jpg (19.46 KB,194x229,194:229,how many questions is too ….jpg)

>>54343

I would do it the other way around… though! If they use an automated thing to check for inputs and outpu- no wait, they can't be doing that with the GUI can they?

Well, idk, but sending the email should cover your bases.

>>54345

>>54344

Woop, something to fix!

>>54346

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54350

>>54349

what do you mean? what's not fixed?

tax isn't added to, it's set.

the other thing isn't an issue.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54351

File: 9a933c4db95d9b9⋯.jpg (22.92 KB,500x556,125:139,e9f72c81621ac12f5400ae1ba6….jpg)

>>54347

I'm fine.

Not very enthusiastic about the weekend, no.

>>54349

What are you tagging me for?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54352

>>54349

wait, yes it is initialized

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54353

File: 097c0768c2de005⋯.png (11.39 KB,844x336,211:84,1313212.png)

shit, does anyone know the right phrase to uncheck uncheck check boxes and radio button

>>54348

I am fine with it as is, don't want to fucking something up

>>54349

because it isn't in the sample he gave me, but I guess I can do that

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54354

>>54353

you didn't keep my changes I hope

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54355

File: fbc9d4fd091a389⋯.jpg (22.75 KB,192x228,16:19,i don't know 02.jpg)

>>54350

Woops, a mistake. Just the extras.

>>54350

>>54352

Oh never mind then!

>>54351

Guess I'm trying my luck.

>>54353

Either way should be fine.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54356

>>54353

nevermind

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54357

>>54354

nah, I have 6 back-ups at all times

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54358

File: b72f18a823fb1b9⋯.jpg (43.14 KB,640x360,16:9,c6d904539b885e8620957d8f78….jpg)

>>54355

Luck at what, I wonder.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54359

File: bb7c37bd5ff4758⋯.jpg (18.76 KB,237x222,79:74,i'm lost.jpg)

>>54358

Luck at how far your common courtesy extends.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54360

>>54356

>nevermind

Does that mean you solved it?

Can you post the clearbutton now?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54361

>>54360

umm, no, I thought I had it, but doesn't seem like it want to work

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54362

File: 995b2442c411841⋯.png (57.86 KB,277x182,277:182,0f2bb6ad-6d5f-4d47-af68-7f….png)

>>54359

I see.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54363

>>54361

button.Checked = false; no?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54364

File: 9708be5b719b304⋯.jpg (22.21 KB,195x225,13:15,i've heard a few rumors.jpg)

>>54362

Have you had a hard day?

>>54363

Suspiciously simple.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54365

>>54363

>>54361

Googling makes it seem like Holo is right though. At least for the checkboxes it should work?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54366

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54367

File: 2f185b45daa001a⋯.jpg (52.75 KB,229x358,229:358,Elias.Appearance.Past02.jpg)

>>54364

I was just paid 600USD to go to school, wear a uniform, and do pushups; I have nothing to complain about.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54368

File: a7ba123fe23332d⋯.png (15.12 KB,555x509,555:509,clear.png)

>>54365

oh, was putting in the wrong name

here is the button

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54369

>>54368

almost forgot

customernametxt.Text = "";

-_-

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54370

>>54366

That settles that then.

>>54367

Not excited about the weekend though, mmm?

>>54368

Do the comboboxes / dropdowns work properly if you clear them with the button?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54371

File: f5d158f29c39628⋯.jpg (79.47 KB,1191x670,1191:670,the_ancient_magus__bride_a….jpg)

>>54370

Why would I be?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54372

>>54370

>>54370

yeah, seems too

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54373

>>54370

>>54372

it's just syntactic sugar, you're actually calling a function and that takes care of everything

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54374

>>54371

I just thought you would, after a long week. Sorry.

>>54372

Good.

>>54373

Ooooh, I see. What's the wording. The = operator is overloaded for that variable? Is that a thing?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54375

>>54374

Syntactic sugar. = is not an operator.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54376

File: e21579c829aa08a⋯.png (9.34 KB,471x313,471:313,about.png)

>>54374

hey, do you know how to open a form with a button. I thought I did, but now I don't

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54377

>>54375

I was thinking of something else. It is an operator. It's even overloadable in c++ but who would do that.

>>54376

uh

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54378

File: a214c84c6ef5f67⋯.jpg (22.05 KB,188x216,47:54,it's funny.jpg)

>>54375

Is it not?

>>54376

I don't know either. What about that Click.calculatebtn, that's reverse, isn't it?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54379

>>54378

that is just the drop down menuStrip

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54380

File: 05f0a7a5278b726⋯.gif (1.94 MB,540x304,135:76,odbkfi97Vy1tqsu3ro1_540.gif)

>>54374

There's nothing to really look forward to about the weekend, so

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54381

>>54377

>but who would do that

I thought it was nifty?

>>54379

I am reasonably certain the dropdown menu should be possible to make in the GUI. But you wanted the form to appear when you click on About, yeah?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54382

File: 1f153d8fc4962ae⋯.jpg (18.82 KB,185x218,185:218,anchovies.jpg)

>>54380

A mark of someone who has no one to try their luck on.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54383

>>54381

Idk, I was just starting on it, when I found I couldn't get the about button to work

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54384

File: 230fd4daa63116c⋯.jpg (297.34 KB,1280x720,16:9,the_ancient_magus__bride_o….jpg)

>>54382

Aren't you still single?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54385

>>54381

it makes the syntax even more complicated

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54386

File: 1a2b392c4313e3b⋯.jpg (209.04 KB,556x800,139:200,1.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54387

File: 8e2c05fde041310⋯.jpg (13.66 KB,194x229,194:229,dotdotdot.jpg)

>>54383

Ahh, I see.

So you designed the about form in the gui and now want it to pop up on click?

>>54384

I am. Want to try your luck?

>>54385

But it allows you to

1) make things more convenient for you, and

2) when making a library for someone else, you can take measures and make it more dumbproof by doing whatever checks you need to make sure he does not assign stuff wrong. You can throw errors / exceptions and suchlike, yeah?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54388

File: b52afe491812b8f⋯.jpg (128.66 KB,1280x720,16:9,Mahoutsukai-no-Yome-01-24.jpg)

>>54387

Never would have guessed.

No thanks.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54389

>>54387

yeah, I just added another form, and want it to pop up when the aboutbtn is clicked

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54390

>>54387

= is for shallow copies. That is all it should do.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54391

File: c539c0d95a18213⋯.jpg (28.91 KB,183x220,183:220,it's inevitable.jpg)

>>54388

I wasn't making you?

>>54389

Hmm. Idk why what you wrote doesn't work. I guess you could try putting

AboutForm About;

among the variables

and then into the constructor

public Form1()

{

InitializeComponent();

About = new AboutForm();

}

But I don't see why that would help.

>>54390

Umm, o-okay.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54392

File: a85a2b5e9efb7f9⋯.png (487.73 KB,679x960,679:960,2ae6bfac5d10516827efdbc255….png)

>>54391

found out it, do you know how to make menuStrip click things?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54393

File: fc7405e03e62fd5⋯.png (1.25 MB,1920x1080,16:9,1.png)

>>54391

w-what? did it seem like he thought you were making him?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54394

>>54392

You mean the dropdown menu? Like when in applications you have, say, File, View, Properties, and so on? Again, I think that part should be doable via the gui.

>>54393

I don't see where the question came from, that's all.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54395

File: 19c09b905fecc26⋯.png (10.99 KB,348x397,348:397,132132.png)

>>54394

nah, I just need these two to click the same buttons

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54396

File: c421546a212d6eb⋯.gif (899.44 KB,500x281,500:281,sleep 1433900409_tumblr_mj….gif)

>>54395

Couldn't you just put something like

calculatebtn_Click(sender, e)

or maybe

this.calculatebtn_Click(sender, e)

into the <menuitem>_Click

Anyway. I am going to bed. Wish me good night, /tripfriends/.

Good night, /tripfriends/

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54397

>>54396

good night mouse

sleep well

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54398

File: b3d6fb25a3a3086⋯.jpg (1.88 MB,1600x1137,1600:1137,1.jpg)

>>54396

good night

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54399

File: 6e2b1e3e0b3621a⋯.jpg (36.61 KB,723x350,723:350,1502017316879.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54400

File: 2ce617fc27bd1e1⋯.gif (984.16 KB,500x291,500:291,1449670665811-0.gif)

good night

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54401

>>54400

sleep well monster anon

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54402

File: 103ec8fd72bf79e⋯.jpg (32.34 KB,509x509,1:1,253613_04odeyzagh365uvxwt2….jpg)

Rude awakenings because someone is torching shit suck.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54403

File: 94a1cf9155fff51⋯.swf (1.79 MB,kagura umbrella.swf)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54404

File: c600b601180a88e⋯.jpg (40.78 KB,474x359,474:359,d3b4c8ecc40fb71aeb43b35fba….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54405

File: 928191873100089⋯.jpg (296.04 KB,600x1118,300:559,53480197_p3.jpg)

>>54391

a deep copy, not a shallow one

also reminder c++ is not confluent

http://blog.reverberate.org/2013/08/parsing-c-is-literally-undecidable.html

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54406

File: a33e4d2cc8bb09c⋯.gif (285.64 KB,255x144,85:48,1424977672506.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54407

File: 8bc788b265c315a⋯.jpg (352.28 KB,800x600,4:3,835809_p0.jpg)

>>54405

confluent if it finishes, but not decidable

>>54406

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54408

File: 60831d9739811a1⋯.png (265.21 KB,540x540,1:1,1377235913696.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54409

File: b38977eb9ea31cd⋯.jpg (1.03 MB,1920x1080,16:9,1.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54410

File: fcdb6446d29158c⋯.jpg (115.01 KB,1195x917,1195:917,61275119_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54411

File: d37cb57e80ed6ea⋯.jpg (9.27 KB,243x207,27:23,1449436559690.jpg)

>>54409

hello poppy, it is good to have you back

>>54410

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54412

File: e3500e8f6fb5450⋯.jpg (257.93 KB,1600x1142,800:571,1.jpg)

>>54411

h-hello, really? thank you

did you have some of your cereal this morning?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54413

>>54412

I mean from moving.

I had carrots

how is your day going?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54414

File: 0da13d393061e88⋯.jpg (492.62 KB,725x1000,29:40,1.jpg)

>>54413

I had really bad dreams, but I think it's going okay

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54415

>>54414

I have been watching youtube and drawing, as I don't have to worry about school anymore

have darkest dungeon, so that is going to be fun

do you have anything you want to get done today?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54416

File: bead54f3fb9a8fa⋯.jpg (387.96 KB,732x623,732:623,1.jpg)

>>54415

I'm not sure, I've been feeling really weird recently

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54417

>>54416

are the bad dreams part of it?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54418

File: fcab291e64da16b⋯.jpg (831.77 KB,2000x1698,1000:849,1.jpg)

>>54417

no, m-maybe a cause of the bad dreams, but not the other way around, I think

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54419

>>54418

do you have an idea what it is?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54420

File: 8aee47bb8b5768f⋯.png (548.19 KB,800x1200,2:3,1.png)

>>54419

probably just moving, I really don't like moving

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54421

File: 4ead7342559e126⋯.gif (2.12 MB,208x200,26:25,1421059882202.gif)

>>54420

must suck having to deal with every year then, and to take so long in doing it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54422

File: 32a4edfd1cd7844⋯.jpg (Spoiler Image,100.58 KB,673x1000,673:1000,1502749496088.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54423

File: 29d6bc5757f95bb⋯.png (Spoiler Image,807.57 KB,1280x720,16:9,29d6bc5757f95bb3418944a518….png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54424

>>54405

I don't remember what those are and am too tipsy to be reading it.

I am pretty much positive I don't know what confluent and decidable means (in the context of programming).

>>54422

Lewd.

>>54421

Hello. So are you finished with the program?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54425

>>54424

yea, submitted, and done

:D

hello mouse, how is your day going?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54426

>>54425

Good to hear ^.^

Did you figure out the About form (I think you did), and making the menu options do what clicking the button does?

Oh it's been alright. Had family visits the whole afternoon, now they are gone. Am pretty tipsy.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54427

>>54426

yep, all done, just like the simple

I might be visiting family as well today

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54428

File: 9ddbc8beab181e6⋯.jpg (Spoiler Image,187.73 KB,1003x1417,1003:1417,9ddbc8beab181e67f46ae8cecb….jpg)

>>54427

Good job! And without cheating ^.^

Good luck with it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54429

>>54428

well, poppy did most of the work

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54430

File: ca3515016dae2e6⋯.png (349.57 KB,814x678,407:339,(you) ca3515016dae2e692f4d….png)

>>54429

That is fair to admit, yeah.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54431

File: 7725237deb4d98c⋯.mp4 (Spoiler Image,3.65 MB,720x720,1:1,7725237deb4d98c75f1cd62eb2….mp4)

>>54430

very far

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54432

>>54431

fair*

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54433

File: b5c3ee57a3a7848⋯.png (599.65 KB,674x876,337:438,62314805_p0.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54434

File: ec9b3a60cfc4cb5⋯.mp4 (472.12 KB,424x212,2:1,1424224090856.mp4)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54435

File: 4281309700205a2⋯.jpg (101.73 KB,518x518,1:1,amused intrigued 428130970….jpg)

>>54431

Well it is done so there!

>>54433

Hello hello.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54436

File: 75d8cb7d43890a1⋯.jpg (717.01 KB,1200x975,16:13,1391905708531.jpg)

>>54435

I know, I have stressed about it for awhile

did you enjoy your family visit?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54437

File: 36d64e1c3c8b6bd⋯.jpg (227.69 KB,780x984,65:82,55053207_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54438

File: 9a5e0b408f4189e⋯.jpg (501.71 KB,700x1036,25:37,6a948606f1f70c9d20f39eacd2….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54439

File: a7cdccc2c342545⋯.jpg (582.32 KB,1489x2105,1489:2105,__anchovy_girls_und_panzer….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54440

File: 81cf07fa8a830e0⋯.gif (801.94 KB,640x360,16:9,comfy Pa5uOpb.gif)

>>54436

Yeah.

Oh yeah, wasn't bad. I only hid in my room for maybe an hour or 90 minutes, which isn't too bad when you consider people have been here from like 12 till 7pm.

You had fun relaxing?

>>54437

>>54439

So what's up Holo?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54441

File: 69700f6af309feb⋯.jpg (98.66 KB,657x757,657:757,3f47b79462b5f9feda87b59458….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54442

File: 8da2b88e4d13785⋯.png (272.8 KB,800x800,1:1,9e92a266dbff5dbfecc510ee3d….png)

>>54440

>I only hid in my room for maybe an hour or 90 minutes

you don't live alone, do you?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54443

File: 20c79a8937b9cb7⋯.jpg (75.92 KB,640x640,1:1,comfy 9856d2ef787d87e11625….jpg)

>>54442

No, with parents.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54444

File: 72b05e42107879f⋯.jpg (2.38 MB,1505x2125,301:425,61966689_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54445

>>54444

So what's up, quadsholo?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54446

File: 9077ab9870fc2c5⋯.png (457.61 KB,414x776,207:388,4321.png)

>>54443

okay, otherwise, that would have very odd

>>54444

nice 4s

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54447

File: d9e12b2bdf02aea⋯.jpg (327.85 KB,1254x1771,114:161,62322785_p0.jpg)

>>54445

I misremembered this

yosefk.com/c++fqa/ctors.html#fqa-10.19

and thought it showed the grammar is not confluent

>>54446

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54448

File: 8e460787117a9ec⋯.png (136.31 KB,545x542,545:542,hot dog.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54449

File: c9fc7774fe1a013⋯.jpg (583.3 KB,707x1000,707:1000,62033506_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54450

File: fce46a3b766f7ed⋯.jpg (322.76 KB,747x1000,747:1000,6f68593320c20417d3a52d4864….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54451

File: 6e54815eb4165dc⋯.png (1.41 MB,1036x1450,518:725,__ichinose_shiki_idolmaste….png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54452

File: 966fd07c1d23aad⋯.gif (2.92 MB,512x288,16:9,1fec849900fb51e865c1e558ca….gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54453

File: 5bd98d8add1129f⋯.jpg (531.76 KB,700x1053,700:1053,62485199_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54454

File: 0b2f8352bce4269⋯.jpg (320.62 KB,1435x2062,1435:2062,28488acab22b86ad80d567e1e7….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54455

File: 492d3fa8942f25d⋯.jpg (2.7 MB,1761x2140,1761:2140,62085025_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54456

File: 81cf07fa8a830e0⋯.gif (801.94 KB,640x360,16:9,comfy Pa5uOpb.gif)

>>54446

Well yeah of course.

>>54447

I take it you are okay.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54457

File: 5e54070bfe3ea1b⋯.gif (1.65 MB,900x972,25:27,4c15dd8bb5188b56ac56f0e9a3….gif)

I have to go do something

>>54455

>>54456

be back in a bit

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54458

File: 4d5593548e6bf5e⋯.jpg (3.42 MB,2669x3340,2669:3340,38088642_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54459

File: 9e8a30a631556ef⋯.jpg (38.32 KB,500x333,500:333,comfy DBE.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54460

File: fcb636eefd81e71⋯.png (747.1 KB,640x900,32:45,60492388_p0.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54461

File: 276447fe37baf7c⋯.jpg (71.83 KB,1000x922,500:461,276447fe37baf7ce14da5b3edd….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54462

File: b856b2cf581aa5b⋯.jpg (1.17 MB,4071x2670,1357:890,come with me wallhaven-292….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54463

File: 98f81ee2ddfc962⋯.jpg (1 MB,1414x1000,707:500,60797448_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54464

File: 69efc0c6bca904e⋯.jpg (131.06 KB,661x1700,661:1700,04_63022631_p6.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54465

File: 246f5cd3d2477de⋯.gif (752.98 KB,500x329,500:329,aheagao A41F.gif)

>>54464 nice pic, hehe

>>54463

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54466

File: 9466337a1b535bc⋯.jpg (516.37 KB,589x800,589:800,1497928393767.jpg)

>>54465

didn't I say I wasn't to be lewd with your anymore?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54467

File: 3097ae98c928922⋯.gif (686.49 KB,500x281,500:281,boop tumblr_n5elpppNkU1txw….gif)

>>54466

Then don't be.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54468

File: 3e62a0f935704cb⋯.png (2.09 MB,2200x2500,22:25,28724515_p0.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54469

File: 55ab4a3c21df6d4⋯.jpg (170.92 KB,622x2200,311:1100,1431779017123.jpg)

>>54467

I will then

>>54468

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54470

File: 31c55d1cecb49ce⋯.jpg (34.35 KB,336x476,12:17,(you) 31c55d1cecb49ce445f3….jpg)

>>54469

So will I…. not to mention I will be playing a game anyways.

>>54468

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54471

File: 09007d073d32151⋯.jpg (45.19 KB,800x506,400:253,09007d073d32151c6bc307605d….jpg)

>>54470

I also have a game to play

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54472

File: b2eb3b37c5748fb⋯.jpg (736.72 KB,1295x1812,1295:1812,1.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54473

File: e262c402ac865c0⋯.jpg (678 KB,807x1014,269:338,1498273719650.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54474

:🌀

🎩

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54475

File: cba54929911e113⋯.jpg (196.13 KB,653x764,653:764,1.jpg)

>>54474

nice thing~ what's that? a hat and something else?

>>54473

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54476

>>54475

yeah, I was in a laundromat, and playing around on my phone

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54477

File: 9010cff438e48e4⋯.png (562.42 KB,800x1130,80:113,1466406791581.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54478

File: 012153d4ed86566⋯.jpg (375.93 KB,700x988,175:247,1.jpg)

>>54476

I see, no washing stuff in your new house? wawa

>>54477

hello, are you going to become a eurosleeper now?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54479

>>54478

It's 3am, I probably should

I don't know though.

How are you?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54480

On phone again

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54481

>>54480

Boop, hello.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54482

File: c421546a212d6eb⋯.gif (899.44 KB,500x281,500:281,sleep 1433900409_tumblr_mj….gif)

>>54481

>>54480

Just booping you to say good night, really.

Good night Monsterboy ^.^

>>54478

And good night to you as well, Poppy-chan~

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54483

>>54482

Good night mouse

Rest well

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54484

File: 8e7ff63e510354e⋯.jpg (279.79 KB,600x468,50:39,1.jpg)

>>54479

I'm okay, just spending some time doing stuff so time passes nicely

>>54482

good night, see you next time

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54485

File: a3b7e8442a9d881⋯.jpg (82.44 KB,476x475,476:475,madotsuki_christmas.jpg)

I hope I die

I'm sorry maddex

Have a Christmas mado

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54486

File: 47e1de8d1e1b6c2⋯.png (568.27 KB,540x632,135:158,1510860507187.png)

I'm sorry I used you as an outlet for my affection for noun. I'm sorry I let it ruin our friendship I'm sorry I tormented you. Idk you probably don't give a shit but I hope the best for you. You're smarter than me you'll go farther than me. I'm sorry I was so horrible I really do think I loved you and I'm sorry I can't control myself. I'm sorry

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54487

File: 86aa16afe88ac62⋯.jpg (59.44 KB,548x598,274:299,1.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54488

File: 3e6480606c7701f⋯.jpg (642.84 KB,1920x1080,16:9,the_ancient_magus__bride_o….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54489

File: c6765ffc656d095⋯.gif (1.32 MB,480x360,4:3,1456506205699-0.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54490

File: 4668e16a886b31a⋯.png (554.33 KB,500x705,100:141,anipu.png)

"if you dont got no sauce then you lost, but you can also get lost in the sauce" - Chef Boiardi

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54491

>>54490

so how you doing, mad?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54492

File: 9023213e7354ebd⋯.jpg (275.01 KB,1627x768,1627:768,chess1.jpg)

File: 46decf8f2a40d3b⋯.jpg (156.53 KB,1248x1002,208:167,chess2.jpg)

File: 4156cdbc5153161⋯.jpg (165.58 KB,1624x499,1624:499,chess3.jpg)

File: 6605a4b9d1c1770⋯.jpg (175.29 KB,1312x953,1312:953,chess4.jpg)

File: 27be0e2c9951a2c⋯.jpg (145.84 KB,1328x747,16:9,chess5.jpg)

>>54491

doing p damn great.

my chess set came in today and it surpassed my expectations

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54493

>>54492

why did you get that?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54494

File: 3227337c283a7ba⋯.jpg (86.41 KB,1920x1080,16:9,ksanta2.jpg)

>>54493

Cause I play Chess. duh

It was only $30 with 2 day delivery. It looks nice af and its nice to use.

I've never got in to Chess big time, but I plan to get involved in the community more.

Buying my own set gives me a social outlet, or so I hope.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54495

File: ad5f45a70cccacd⋯.png (464.17 KB,600x1724,150:431,0cc9b8772a145eaa4730592125….png)

>>54494

well, i hope that works out

anyway, are you any good at it?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54496

File: 1f4c888117e9030⋯.jpg (88.38 KB,1200x675,16:9,C-H1jawUMAAIHSs.jpg)

>>54495

Im decent at best rn. But Im rusty as well as I never had much experience to begin with

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54497

>>54496

you can always test yourself against a computer

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54498

File: dd1d4384e68812d⋯.jpg (74.96 KB,1280x720,16:9,jinrui_wa_suitai_shimashit….jpg)

>>54497

>test yourself against a computer

those bots are designed to analyze every possible move you can make and counterplay it

they're not natural to play against and they are a personal taboo to me

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54499

File: 7b8e3ea838a002d⋯.jpg (26.71 KB,500x407,500:407,1ab1d4151c4065fe0c029e5001….jpg)

>>54498

they are the best players, so if you can beat them, you'll be the best player

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54500

File: 103ec8fd72bf79e⋯.jpg (32.34 KB,509x509,1:1,hitlerswaifu.jpg)

>>54499

no they're not

cause they arent a player to begin with

and they play the game systematically. give it time and you can beat the bot's ass 100-0

a person has personal flair to their playstyles. its not as easy to study something so arbitrary

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54501

>>54500

a computer beat the best chess player in the world

anyway

good night, I hope you find many friendships with your plan

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54502

File: ff29d03c8d11f7d⋯.jpg (74.95 KB,640x1136,40:71,52416130_p0.jpg)

I stole a credit card. I'm going to buy a bunch of shit do a bunch of drugs and jump off a bridge i love you maddex I'm sorry idk why sinced I robotripped I can't stop thinking of you I hate this idc I just wanted to talk to you I really hope the best for you

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54503

File: 75310b42b521677⋯.jpg (61.29 KB,454x432,227:216,d7e69e1da1873ad8d8b281c5d7….jpg)

>>54502

>druggie jumping off a bridge

Could it be?

Is this the day my memes finally come true?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54504

File: 4ce9c4d0e70c318⋯.jpeg (14.68 KB,540x405,4:3,received_325278941282766.jpeg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54505

File: 6688c9d22da401f⋯.gif (1018.56 KB,540x304,135:76,88ecc0de2a96187468597785ee….gif)

>>54502

Don't forget to do a flip.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54506

File: 6e88577a0a74b1a⋯.jpg (45.94 KB,500x280,25:14,f83374ca4f770f6e80496cf65c….jpg)

>>54502

Stop bluffing and do it faggot, don't foget to record it tho.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54507

File: 98ad41e662b51af⋯.jpeg (141.6 KB,850x550,17:11,5c730e8d8a5293c29f49ee00e….jpeg)

>>54505

I think I recall your character, as in your persona here

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54508

File: 905a14db3cd7bed⋯.png (203.3 KB,526x293,526:293,BtmMgyVIIAENkVl.png)

man Im two much for these niggas, and three much for these hoes

I got the world in my hands and I keep my hands closed

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54509

File: 91c55806edccbf9⋯.jpg (109.36 KB,1200x848,75:53,DJAeMjGUEAAYXlr.jpg)

now get off my dick I aint fuckin wit ya

watch me shoot to the bank IM A MONEY PISTOL

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54510

File: e3d236aa54c8c16⋯.jpg (41.34 KB,736x624,46:39,0d732cba4effdd018378ac20fe….jpg)

>>54507

I'm not trying to hide it; I've merely found a new flavor of the week to post with.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54511

File: 8ff2a2c6a4bf18d⋯.jpg (36.29 KB,600x338,300:169,8ff2a2c6a4bf18df796d00a0b1….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54512

File: 1fa2210990ceb23⋯.png (218 KB,529x325,529:325,1fa2210990ceb2341b60866402….png)

morning

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54513

File: ca3515016dae2e6⋯.png (349.57 KB,814x678,407:339,(you) ca3515016dae2e692f4d….png)

>>54512

Morgen.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54514

File: 98ef9307d5c48b9⋯.jpg (42.92 KB,640x429,640:429,1454636057331.jpg)

>>54513

your day going well?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54515

File: 0e1c63fe43900d5⋯.jpg (53.69 KB,528x324,44:27,wine anime-review-campione….jpg)

>>54514

Mhmm. Drinking early in the afternoon.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54516

>>54515

is the wine good?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54517

>>54502

Send us the 4x4 you get in page 12 of your local newspaper when you wake up

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54518

File: 81ca33ff2d851f1⋯.png (94.32 KB,1043x569,1043:569,84ba579fca[1].png)

>>54516

Pretty good, yeah. Although we opened it yesterday. I covered the bottle with a food wrap so I don't think it went stale too much, only thing is we kept it in the fridge so it is way too cold, for now.

How are you doing today?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54519

>>54518

just woke up, my hand feels odd.

because I got a new bed, I don't move around as much, so the blood in my hand doesn't have to change very much

making my hand feel numb and cold

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54520

File: 08f24b1e5e34f13⋯.png (1.31 MB,1278x1374,213:229,breast big and small 14717….png)

>>54519

Oh. All the best to your hand.

Hmm. I need to walk the hound now. Be back in 20-30. See you soon Monsterbee.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54521

>>54520

see (you) then

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54522

>>54521

Yuss. Almost perfectly in the middle. Hello hello.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54523

File: f96740b9db15631⋯.gif (413.36 KB,320x240,4:3,1419946602139.gif)

>>54522

did you have fun with your dogo

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54524

File: da646409123e1de⋯.jpg (202.57 KB,1400x1050,4:3,flower 104d81a2-d953-405d-….jpg)

>>54523

Eh, it was a doggo alright. What are you up to?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54525

File: 7120797344c33cb⋯.gif (3.6 MB,420x380,21:19,1421758459009.gif)

>>54524

drawing, going to play a game

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54526

File: ca0b92dd597165a⋯.jpg (17.06 KB,236x314,118:157,flower 9387398f6f87a719ac3….jpg)

>>54525

Ahhh, oki.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54527

File: fbd8b979eee6218⋯.png (2.86 MB,2400x1350,16:9,1.png)

good morning everyone, having a nice first weekend of december~?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54528

>>54527

morning poppy

>>54526

so, you have any plans for today, beside drinking

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54529

>>54528

Reading, yeah.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54530

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54531

>>54529

did your school go well?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54532

>>54531

It still is. Reasonably so. Just reading a piece of literature now, that's not really anything I need to take notes on, so it's fairly fun.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54533

File: a64d440cab99f4e⋯.gif (1.83 MB,303x227,303:227,59748990af310b18901ad3338a….gif)

>>54532

well that is good

I remember they had you reading something that made no sense

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54534

>>54533

Hmm. Finished it now. Wonder what more there is to read.

I guess you mean "The origin of the family, private property, and the state"

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54535

>>54534

yeah, that just sounds useless and convoluted

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54536

File: 3f73563dfe0d817⋯.webm (3.71 MB,640x360,16:9,John Shook - naturalism v….webm)

>>54535

I took like 15 days to read it, even though it was only about 110 pages long. It is strange though, it wasn't uninteresting, really. It did contain a good amount of historical observations. It was a reasonably good introduction into how societies used to organise themselves before what we know today.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54537

>>54536

>It was a reasonably good introduction into how societies used to organise themselves

Well, I said that as if I knew a lot about the topic and was able to tell what is and what is not a good introduction to that topic. Which I do not. So…. take with a grain of salt, I suppose.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54538

>>54536

>>54537

well, you know more about it then I do

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54539

>>54538

Who knows. It's interesting to look at things that you take almost completely for granted and see how foreign they are or were in other cultures.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54540

>>54539

I have never really been a big fan of that kind of thing.

biology > economics > culture

culture is at the end of all of this, imo

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54541

>>54540

I think it might only be at the end for you because you are so deeply immersed into it.

I'm not saying the study of culture is science, mind you.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54542

File: 692064ccd9f2e7c⋯.gif (1.9 MB,350x371,50:53,8b14ca656ffa11c05e53e9c18c….gif)

>>54541

>because you are so deeply immersed into it

umm… I am pretty sure I am much as a layman as you are, mouse

>I'm not saying the study of culture is science, mind you.

so are your finals coming up? mine are.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54543

File: 628f1cdb6ee3a08⋯.jpg (192.38 KB,850x959,850:959,1.jpg)

>>54542

are you confident?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54544

>>54542

>umm… I am pretty sure I am much as a layman

I meant culture itself, not the study of culture.

Hmm. I only know about the date of one class's finals, and that is 5th January.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54545

>>54543

I am going to cheat, yea

the only one I might not pass is Principles of Macroeconomics, and that isn't because I did poorly on in of the tests, it is because he does post the discussions to the course calendar, so I don't know what I missed

>>54544

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54546

>>54545

Mmmm?

Also, nice numbers.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54547

>>54546

I advocated euthanizing terminally ill people passed a certain age as way to cut cost, so they wouldn't be such a burden on a economy, so I don't think the professor likes me

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54548

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54549

>>54548

anyway, I'll be around, have a good day mousei~

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54550

File: a0c96b5271d783b⋯.png (Spoiler Image,2.69 MB,1920x1358,960:679,9eCjlAm.png)

>>54549

Thank you, you too ^.^

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54551

File: 0a4a25a998f02ac⋯.jpg (59.59 KB,800x1633,800:1633,image.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54552

File: 3227737ceaf9452⋯.jpg (641.38 KB,1182x1200,197:200,66120400_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54553

File: e72642d16cb2db8⋯.jpg (49.31 KB,530x942,265:471,50a4c8e223608271e1b5ae65c9….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54554

File: 1900fed919b5168⋯.jpg (635.34 KB,1296x956,324:239,696311_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54555

File: fcd8baee243f1f9⋯.png (603.78 KB,1072x1500,268:375,fcd8baee243f1f909f6cac2cfa….png)

>>54554

Hey hey. How are you doing, sir?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54556

File: c69f89c6b4110b4⋯.jpg (Spoiler Image,1 MB,800x1200,2:3,56936721_p0.jpg)

File: bbca3c1337ce410⋯.jpg (Spoiler Image,967.63 KB,800x1200,2:3,56936721_p1.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54557

File: b794588cb1b393e⋯.jpg (Spoiler Image,338.52 KB,1058x2046,529:1023,b794588cb1b393ec4b0c38d08b….jpg)

>>54556

"I am crying, but wet, Mouse."

Okay!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54558

File: dc6f1c73f687d59⋯.jpg (367.42 KB,1800x2400,3:4,65769220_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54559

File: 97614b79d60e182⋯.jpg (Spoiler Image,455.83 KB,595x842,595:842,97614b79d60e1824d013a87cf7….jpg)

>>54558

Weew.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54560

File: 1b82e5f87ffd910⋯.jpg (160.69 KB,400x550,8:11,1266046_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54561

File: ebe9f11b0fbabfb⋯.png (Spoiler Image,645.82 KB,1000x1000,1:1,ebe9f11b0fbabfb1470f646273….png)

>>54560

That RJ is oddly smutty even though there is no nudity.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54562

File: 49fe0ccc2cb4016⋯.jpg (739.67 KB,1200x957,400:319,__kuraue_hinata_and_yukimu….jpg)

>>54561

she's from the Umaru anime

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54563

File: dc88c17fbdbf8a5⋯.jpg (1.83 MB,1446x2046,241:341,1508020427825.jpg)

>>54562

Oh? Looks like Ryuujou to me :thinking:

I guess you now better. You are the bigger weeb between the two of us after all.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54564

File: cc9030cd22f7cb6⋯.png (147.52 KB,700x700,1:1,65906488_p0.png)

>>54563

I looked it up.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54565

File: ebd1847f42fd787⋯.jpg (79.22 KB,706x1000,353:500,06d51328cd5cca6b1f108a6025….jpg)

>>54564

Still a bigger weeb than me.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54566

File: 1970ed482fd9185⋯.png (1.14 MB,1000x1414,500:707,65243871_p0.png)

>>54565

uh uh

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54567

File: 187afca2bac4a32⋯.png (950.21 KB,595x966,85:138,1.png)

>>54563

you're always thinking silly things

>>54565

w-waw, bullied

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54568

File: 2918bd5f09770b0⋯.jpg (785.19 KB,1000x1558,500:779,2918bd5f09770b01fa79581859….jpg)

>>54566

Ya-huh.

>>54567

Thinking or :thinking: ?

Me? How?!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54569

File: 9ee5c388741402d⋯.jpg (124.71 KB,450x630,5:7,7841687_p0.jpg)

>>54567

Hello Poppy

>>54568

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54570

File: 24b2a1cdb08f688⋯.jpg (53.94 KB,400x498,200:249,bunny original.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54571

File: 12a251c331655a0⋯.png (177.24 KB,377x389,377:389,lh.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54572

YouTube embed. Click thumbnail to play.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54573

File: e3031855366c387⋯.png (57.67 KB,450x330,15:11,Adeleine_happy.png)

mouse say's i broke it but he is just being mean

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54574

File: 40f67ac014930fa⋯.jpg (270.62 KB,700x987,100:141,__ebina_nana_himouto_umaru….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54575

File: 03cab08642543e9⋯.jpg (413.55 KB,660x1020,11:17,2369988.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54576

File: be68d9bba3c813b⋯.png (137.3 KB,244x259,244:259,tk.png)

>>54575

searching adeleine on google image's is not a good idea

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54577

File: 2645f8e7c551f44⋯.jpg (128.88 KB,644x1000,161:250,2582984.jpg)

>>54576

Is that right?

You haven't been here for a while.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54578

File: 8f9358f6feb9b6e⋯.png (828.76 KB,845x1091,845:1091,40093890_p0.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54579

File: da7d701712fd6f2⋯.png (60.82 KB,186x195,62:65,kz.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54580

File: 07eb872d6391957⋯.jpg (132.23 KB,685x1000,137:200,1015670.jpg)

>>54578

>>54579

Well is it?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54581

File: a2fe828b2ba90b8⋯.jpg (942.58 KB,1504x1504,1:1,1580948_0RyomaMikado0_nuev….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54582

File: ebf6844f2131b13⋯.png (844.8 KB,1045x939,1045:939,vm.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54583

File: 39fe9528e60df0c⋯.png (840.64 KB,1045x939,1045:939,vn.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54584

File: 290881325e7439c⋯.jpg (101.63 KB,857x1200,857:1200,1350509.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54585

File: 59b68c4853aaec0⋯.png (114.74 KB,540x697,540:697,tumblr_oxa9g358kn1txotruo1….png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54586

File: 48f1e4d5a7d6f21⋯.png (229.54 KB,453x454,453:454,ol.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54587

File: b68860bf60776c1⋯.jpg (114.08 KB,714x1000,357:500,1849708.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54588

File: df6e900b1630758⋯.png (169.9 KB,538x448,269:224,writing_poetry_by_supershe….png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54589

File: 6490651fa7d4a4a⋯.jpg (398.78 KB,1000x1630,100:163,1771852.jpg)

>>54588

Rock, you are a rock.

What's the next verse?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54590

File: dc01c5c15f720ec⋯.png (490.23 KB,2376x1656,33:23,maud_pie_by_thecheeseburge….png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54591

File: bc1532569e8edbd⋯.jpg (89.18 KB,548x1000,137:250,644439.jpg)

>>54590

I didn't expect there to actually be another verse.

Holo anon.

You are Holo anon.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54592

File: 12f724b199b61f4⋯.jpg (1.02 MB,2300x1725,4:3,62261414_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54593

File: 79bc3282f38146e⋯.jpg (291.01 KB,1000x1385,200:277,650692.jpg)

>>54592

Cheeky and a nerd,

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54594

File: d9fba09a89b084c⋯.jpg (751.31 KB,960x1050,32:35,63078762_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54595

File: c2ff0d842f8abc9⋯.jpg (141.7 KB,900x1100,9:11,650698.jpg)

>>54594

Just like the neat bird.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54596

File: 6204d81236cc98f⋯.png (3.08 MB,1357x1920,1357:1920,45737187_p0.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54597

File: eae5cec8432e1db⋯.jpg (275.91 KB,900x1080,5:6,650763.jpg)

>>54596

Shouldn't have called you anon, I mean, what the hell rhymes with it?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54598

File: eade9d0dcc3b0e3⋯.png (2.43 MB,1229x1068,1229:1068,49840418_p0.png)

>>54597

kurenai, impefectly

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54599

File: 5a00e10385ffb8a⋯.jpg (251.21 KB,813x1200,271:400,651601.jpg)

>>54598

I was looking for a more accurate rhyme

>crimson

though I must admit I didn't come up with anything better than that.

Holo, you are Holo.

Cheeky and a nerd,

just like the neat bird.

Hashtag YOLO.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54600

File: cab3baa6504e207⋯.png (1.16 MB,1600x1131,1600:1131,62173867_p0.png)

>>54599

it sucks

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54601

File: 7c9c49de1e62c60⋯.jpg (107.42 KB,500x765,100:153,651514.jpg)

>>54600

It's in the ballpark of the original Maud poem.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54602

File: cb6326875740549⋯.jpg (791.97 KB,880x1200,11:15,65771078_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54603

File: 4129008724b7a27⋯.webm (7.79 MB,426x240,71:40,road rage 1.webm)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54604

File: a9e24328b44cad6⋯.jpg (45.15 KB,600x876,50:73,651551.jpg)

>>54602

You write one now.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54605

File: 58f5c8bd66d1794⋯.webm (7.81 MB,426x240,71:40,road rage 2.webm)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54606

File: 9806f61bb83c6d1⋯.jpg (1.61 MB,1920x1080,16:9,64877913_p0.jpg)

>>54604

The plane is coming down

You face disaster

There's no feather in your crown

Your prize is lost to the big guy master

>>54605

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54607

File: e5ff10306997e4f⋯.webm (5.41 MB,426x240,71:40,road rage.webm)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54608

File: c10ae5dae692194⋯.png (2.09 MB,1555x2175,311:435,1857279.png)

>>54605

Wew.

>>54606

Not bad, although I meant:

write one about you.

A stanza for a penny, or a cent,

what harm could that do?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54609

File: b8371d05f5088cc⋯.jpg (424.95 KB,1000x625,8:5,50801934_p1.jpg)

>>54607

looks like someone compiled people screaming at me

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54610

File: 481b6cd1a3be658⋯.jpg (42.65 KB,432x585,48:65,1455363385049.jpg)

>>54609

Don't drive like an idiot then!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54611

File: 08d65b0910520ff⋯.jpg (171.88 KB,1000x810,100:81,1428740099274-3.jpg)

>>54608

nah

>>54610

No, I'll make one from my point of view and counter the video by showing off my driving skills.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54612

File: 3229c2a1dfaef16⋯.jpg (398.92 KB,2048x1536,4:3,I like er eyes.jpg)

>>54611

Eurobeat starts playing in the background

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54613

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54614

File: 95d8389d6a94c9f⋯.png (255.18 KB,630x773,630:773,sleep 1470774331310.png)

>>54611

Good night, anon.

And good night all ye tripfriends.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54615

File: 14bd2b87f6c2241⋯.jpg (1.23 MB,1600x1067,1600:1067,36916883_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54616

File: 5dae960a26f3362⋯.png (629.3 KB,817x768,817:768,eD7Z_M1y0ZS4HuGvMExcL62Bk0….png)

>>54614

Sleep tight 3

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54617

File: 43851806881c8bf⋯.jpg (1.62 MB,2000x1437,2000:1437,6166315_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54618

File: b695330703ef217⋯.webm (4.86 MB,704x396,16:9,Boku no Pico - OVA01 - My….webm)

>>54617

I'm gonna do a sleep now too, good night Anon

Good Night /tripfriend/

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54619

>>54614

Good night, mouse

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54620

>>54619

good night, wired

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54621

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54622

File: 01681f6eeb4f9ee⋯.webm (70.36 KB,640x360,16:9,Dragoon - back.webm)

>>54621

Beep boop.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54623

File: 8a458b1055d4447⋯.png (4.53 MB,1684x2449,1684:2449,65935689_p0.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54624

File: ddead49524da500⋯.gif (6.67 MB,480x270,16:9,54541.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54625

File: f7d80ab6eb538c3⋯.jpg (44.18 KB,640x480,4:3,tea 63c757c0bf4e2cd0c41f23….jpg)

>>54623

Holo, the bold and the beautiful. How's it going, good ser?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54626

File: 3870bae85e28c3a⋯.gif (292.24 KB,500x283,500:283,tea 2 giphy.gif)

>>54624

Aha, how are you?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54627

File: fae0f84bcce578f⋯.jpg (625.16 KB,1190x1122,35:33,1.jpg)

good morning again everyone~

having some of your cereal this morning monster-anon?

>>54623

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54628

File: 7a0d9b910fdd5f6⋯.jpg (211.53 KB,700x600,7:6,1.jpg)

>>54627

whoops, I forgot my name and flag, no one will ever be able to tell who I am without that!!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54629

>>54626

don't know if I should draw, or play the game

found a furry comic with minimal authropmorphization after I got done with today's homework

who is your day going

>>54627

hello, poppy

I ate a sandwich

doing well I trust?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54630

File: 3339d34bbb4f5c4⋯.webm (64.82 KB,640x360,16:9,Dragoon - who are you.webm)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54631

File: 64b5a5440daaab4⋯.gif (458.26 KB,500x281,500:281,tea 6bd327105645efdc778373….gif)

>>54628

Oh, it was Poppy-chan, who could have known?!

Hello hello.

>>54629

Toss a coin and if it lands and you don't feel like doing that thing, that means you wanna do the other one more.

Ah, is it fun?

Been fairly tiring. Oh well, I am home now.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54632

File: de76e2f3d05f49e⋯.jpg (132.53 KB,1000x1000,1:1,1.jpg)

>>54629

yay, that's good. are you feeling any different through the day with breakfast in the morning?

y-you'll probably say no

>>54630

s-see?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54633

>>54631

good idea

Idk, I don't know how to feel about a zedra not kicking you to death if you tried to fuck it

>>54632

I ate two steaks, and lobster last night, so I don't know if it was that or the sandwich, but I havn't felt the need to eat anything today

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54634

File: 98108d9f490f2c2⋯.jpg (189.42 KB,576x832,9:13,1.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54635

YouTube embed. Click thumbnail to play.
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54636

File: a0cbaaed9f8a00b⋯.gif (490.25 KB,250x273,250:273,1448967236533-2.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54637

File: ad5e618c7b49ded⋯.gif (1.56 MB,500x267,500:267,tea 1_mp2GugeInaHa-qSuhyHN….gif)

>>54632

I do now, phew!

>>54633

Ah, well, then just don't feel about it at all.

>>54636

Looks like 8chan is bullying you today.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54638

File: 08ca772fa14a47d⋯.jpg (661.73 KB,848x1200,53:75,1.jpg)

>>54637

w-what do you now?

>>54635

>>54636

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54639

File: 0f5025ebcbf4210⋯.png (161.75 KB,650x650,1:1,64891555_p0.png)

>>54638

Hello Miku

>>54637

>>54636

Hello Yui

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54640

File: 0075465389054e8⋯.gif (660.66 KB,500x281,500:281,076178333ddd418b938e3cb6da….gif)

>>54637

I wasn't looking for it, it no reason to feel bad

I was looking for something else, and came across it, also found one in the style in lion king movie

work wasn't a bully for you today was it?

>>54638

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54641

File: 510225ab821ccca⋯.jpg (126.3 KB,900x721,900:721,93be94a443b11f8034f8d28d73….jpg)

>>54639

don't know how you are.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54642

File: cf367c39fea7644⋯.jpg (342.79 KB,1280x720,16:9,1.jpg)

>>54639

helloo~

how are you?

de geso

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54643

File: 3e7d0289bb01ec9⋯.png (342.74 KB,720x720,1:1,1459352038485-3.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54644

File: 3ea3d2cbacc1c2c⋯.png (378.74 KB,469x649,469:649,af463cd99c313559d4c0b0ffcc….png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54645

File: d68b085796aa222⋯.jpg (103.79 KB,1600x1000,8:5,tea 221928-anime-and-manga….jpg)

>>54638

I do see, that's what you asked, remember?

>>54639

Yin and yang, so presumably all is in balance! Not terrible, not great either, somewhere in a grey area.

>>54640

I'm not suggesting you were. If you were Holo anon, I might, but you're not so I am not.

Oh, a bit of a bully to be quite honest. The new guy didn't show up so I had to stand in for him, and whatnot.

Ah, be back in 20-30, got a dog to walk.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54646

File: 502e53e577aa8bc⋯.jpg (1.35 MB,1500x983,1500:983,1.jpg)

>>54645

I-I think maybe you misunderstood what I was asking see about, silly mouse~

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54647

>>54645

>>54645

see you, then

It came up heads, so I'll be playing the game, so sorry If i don't back to you in timely fashion

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54648

File: 26b7d3859fdecb6⋯.jpg (44.42 KB,600x450,4:3,IMG_6678.JPG)

>>54642

I'm fine desu. How are you?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54649

File: 4b3ddc9cabd88b4⋯.jpg (22.05 KB,500x352,125:88,drinking CRo2jgHUwAANs2C.jpg)

>>54646

Well, you either meant "See, someone didn't recognise me without my trip, exactly what I said!"

or "I activated my name and flag, I am Poppy-chan! See?"

Either of those work for me!

>>54647

I am seen again, hello.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54650

File: 12d0ccb84413b01⋯.gif (2.7 MB,509x286,509:286,f924bba2f7e56a8ab5c8f3eaa0….gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54651

File: b42377c7697c33f⋯.png (165.96 KB,371x460,371:460,hello 11498-823210753.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54652

File: 156a65c499d2aa7⋯.mp4 (515.52 KB,720x720,1:1,156a65c499d2aa79d182dca37d….mp4)

>>54651

what kind of doggo do you have anyway

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54653

File: 10455d0cc94250b⋯.jpg (1.15 MB,2816x2112,4:3,P1010638.JPG)

File: a356e75ecca4c1d⋯.jpg (633.93 KB,1536x2048,3:4,P2010014r.jpg)

>>54652

An old one.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54654

File: b55490ba475b78d⋯.gif (929.99 KB,299x298,299:298,341dfbf03aef4217ee3c24ec05….gif)

>>54653

a cute

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54655

File: 847d438c1c8a7d4⋯.gif (295.11 KB,500x379,500:379,expectations tumblr_m6fjhm….gif)

>>54654

But old, poor feller. The second pic is from two or three years ago.

>>54648

>>54654

What up you guys?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54656

>>54655

looking for something to draw

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54657

>>54656

Hmmm. Well you just got two pics of a nice dog, hehe.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54658

>>54657

I guess you're right

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54659

>>54658

If you're comfortable doing it anyway.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54660

>>54659

of course I am

what are you up too, mouse

it must be 7 or 8 where you are

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54661

File: 8f3db52e7216caf⋯.gif (1.64 MB,500x283,500:283,food tumblr_nx51cz55Hq1uxv….gif)

>>54660

Aha, oki.

Hmm, drank a smoothie and exercised, shitposting atm but I'm going to get something to eat and do some reading too.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54662

File: 5f02701c6f08d83⋯.mp4 (3.2 MB,406x720,203:360,1442168634437.mp4)

>>54661

I am watching ed edd n eddy while drawing your dog

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54663

File: ece82958f0477cb⋯.gif (1.51 MB,491x750,491:750,head pats 1470855828075.gif)

>>54662

Aha, I wish you luck! And have fun. Poor fat catto.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54664

>>54653

kyute doggo :3

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54665

>>54664

how is your day going?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54666

File: 89dbee90d2980c6⋯.jpeg (103.97 KB,680x691,680:691,629c68573322e87abcda8ba74….jpeg)

>>54665

Lazily. It's almost about to end.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54667

>>54666

sweet dreams then

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54668

File: afc270568a7dd2e⋯.png (725.64 KB,500x499,500:499,RAPEBOT.png)

>>54667

>>54667

Not sleeping yet baka. Kinda bored tho.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54669

File: cd64b07ce832342⋯.gif (59.35 KB,900x300,3:1,is_it_really_what_you_want.gif)

>>54668

u said it was coming to an end tho

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54670

File: 214cd118a205845⋯.jpg (40.32 KB,640x360,16:9,ribary (3).jpg)

>>54669

>Almost

Implying it is the later part of my evening.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54671

File: 0a124e1cda5c860⋯.jpg (62.85 KB,640x640,1:1,0a124e1cda5c860e248bf02866….jpg)

>>54670

I was just saying for when the time comes

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54672

File: 9fee311f3a96e77⋯.png (290.49 KB,910x640,91:64,d452b51e35b2e14e0a86662074….png)

>>54671

Fucking thots

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54673

File: 13824af1c3fcf01⋯.png (324.82 KB,862x654,431:327,13824af1c3fcf01544bd2882d8….png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54674

File: 98d1e468bc87e19⋯.jpg (223.59 KB,1490x2048,745:1024,__shibuya_rin_idolmaster_a….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54675

File: 4e67a03b64f05bc⋯.png (282.57 KB,720x435,48:29,not a 3DPD.png)

>>54674

have a you

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54676

File: a35f58ad2fe990d⋯.png (578.21 KB,1702x2471,1702:2471,a35f58ad2fe990d05fa10c39c5….png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54678

File: fb28d33f34207ee⋯.jpg (511.95 KB,500x699,500:699,26818992_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54679

File: 200dda52ed3c543⋯.gif (276.47 KB,480x270,16:9,running 200dda52ed3c5433ae….gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54680

File: e5132389b8b146e⋯.png (271.23 KB,443x587,443:587,Me_irl_sleep.png)

nite nite

tight tight

~

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54681

File: c922d4ae29013b3⋯.jpg (290.36 KB,1000x1400,5:7,1203729_p0.jpg)

>>54679

>>54680

good night

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54682

File: e35d8810c0b1f9a⋯.jpg (46.15 KB,1280x720,16:9,blush.jpg)

>>54681

>>54675

Could I also collect a good night? I will be going in like 10 minutes.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54683

File: 91f52e48a01d7fd⋯.jpg (158.11 KB,858x1200,143:200,kawaiikana.jpg)

>>54682

gud nighto

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54684

>>54682

good night, mouse

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54685

>>54683

Night night Maddie.

>>54684

Night night Monsterbee ^.^ Hope you had fun with drawing.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54686

File: d87268c170fec81⋯.jpg (59.84 KB,213x458,213:458,20171204_061341.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54687

>>54686

look like you're only be able to talk to people over the weekend

good night, /tripfriend/

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54688

File: f8af17ee3450e28⋯.jpg (53.13 KB,450x177,150:59,20171204_061447.jpg)

>>54687

Perhaps.

Sleep well.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54689

File: 44191ca2750650d⋯.png (171.98 KB,582x365,582:365,1491165125789.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54690

File: ade923f7501b6db⋯.jpg (189.7 KB,790x772,395:386,food tAG_114206.jpg)

>>54689

Heya Monsterbee.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54691

File: 3db1f3641cd8b33⋯.gif (1.11 MB,500x401,500:401,1418145729904.gif)

>>54690

hey, mouse

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54692

>>54691

I need to walk the hound before I fall asleep, rip.

See you in a few, Monsterbee.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54693

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54694

File: 52a8eae512a2119⋯.webm (741.75 KB,640x360,16:9,Eliphas - back.webm)

>>54693

How are you doing?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54695

>>54694

stole some dlc

how was your day

did the dude show up on time today?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54696

File: 8eed6990364db90⋯.webm (128.12 KB,640x360,16:9,enthusiastic response.webm)

>>54695

Ehe. What dlc?

Kinda tiring.

Yeah he did. In fact he came an hour earlier by accident.

What you up to?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54697

File: d37f51753a86e67⋯.gif (385.33 KB,500x275,20:11,1423480969840.gif)

>>54696

The Crimson Court and The Shieldbreaker

poor thing, you going to bed due to it?

still playing darkest dungeon

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54698

>>54697

Ahh, I see I see. Oh, darkest dungeon, I only heard of it, but when I looked it up, I realize I have seen the character illustrations before. Those are pretty nice.

Nah, not too soon anyway, thank you for the concern though ^^

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54699

File: 64c74c3e2171214⋯.gif (1.11 MB,540x540,1:1,64c74c3e2171214a2f5db38cb9….gif)

>>54698

okay, then what are you planning to do today?

trying out another recipe?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54700

File: 57c6661bee788e3⋯.png (217.34 KB,600x600,1:1,bunny 31028000_p0_master12….png)

>>54699

Just more attempts to study, depending on how much disciplined I can muster. I don't like my chances…

What recipe?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54701

>>54700

the one with the pineapple you showed me a youtube video about

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54702

YouTube embed. Click thumbnail to play.

>>54701

Waaaait, this one? I showed you this?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54703

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54704

>>54703

it didn't turn out as good as you thought it would

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54705

File: 5c4cfd0d627c816⋯.gif (2.2 MB,700x393,700:393,brush 1468210517653.gif)

>>54703

Aha, rats, I didn't even remember I did. Silly old me.

>>54704

Yeah, well that part I remember X3

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54706

YouTube embed. Click thumbnail to play.
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54707

File: 076ca0f6d43457d⋯.jpg (475.37 KB,1280x939,1280:939,wine romantic 076ca0f6d434….jpg)

>>54706

Heheh.

I wonder if Holo anon is lurking.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54708

>>54707

he replies to your posts just to say hello, I am going with no

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54709

File: cb234f6287b4b8a⋯.jpg (80.07 KB,1263x1083,421:361,kurosuto11026040.jpg)

>>54708

Perhaps.

Also I forgot / missed your question.

>>54699

>okay, then what are you planning to do today?

In about 4.5 hours, I think.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54710

>>54709

well, I be around

have a nice day, mousei

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54711

File: b71c3a57a20fb6b⋯.jpg (188.52 KB,1920x1080,16:9,1st name terms vYi5TXT.jpg)

>>54697

>still playing darkest dungeon

And damn, that game does look cool!

>>54710

Okay. You have fun, Monsterbabe.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54712

File: 8f1dc6d7285522e⋯.jpg (259.9 KB,464x784,29:49,1377119495898.jpg)

>>54711

>And damn, that game does look cool!

unforgiving as fuck tho, but you can always edit the files to make a little easier :3

you too

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54713

File: f58938a045e9285⋯.png (114.98 KB,500x595,100:119,coffee love 05ce3db646e3a0….png)

>>54712

Cheating! X3

Thank yous.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54714

your dog is hard to draw

too much fuff

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54715

File: 4bc4d79df895b14⋯.gif (1018.41 KB,500x281,500:281,sky grab 69cfb86c37e6baa6b….gif)

>>54714

Aha, I suppose. He does have curly hair, which I imagine is harder than smooth-haired dogs are.

I need to go to bed now.

Good night, Monsterbee. Sweet dreams.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54716

>>54715

good night mouse

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54717

File: bbff97831ab6231⋯.jpg (98.91 KB,519x203,519:203,20171204_190317.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54718

>>54717

goodnight once more

poor old dog

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54719

File: 1a5d86cf72bf117⋯.jpg (55.75 KB,179x415,179:415,20171204_185927.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54720

File: c90d854bcbbd5c9⋯.png (86.41 KB,342x422,171:211,1.png)

>>54719

does he think you're old dog?

h-hello

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54721

File: 69d40686e532fe5⋯.jpg (37.02 KB,260x248,65:62,20171204_185100.jpg)

>>54720

That appears to be the case, yes.

Good morning.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54722

File: 0137e3f0b844238⋯.jpg (116.59 KB,1024x678,512:339,DDamqQbUMAANsc4.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54723

File: fe1d2ba4d8c5016⋯.png (580.82 KB,600x726,100:121,44044438_p0.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54724

>>54720

so he isn't the old dog

then who is he?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54725

>>54724

Zamarok

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54726

File: fe2070efc620f58⋯.jpg (103.75 KB,302x392,151:196,20171204_190656.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54727

>>54725

>Zamarok

okay

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54728

File: 4ad0e3b4d8bad57⋯.gif (828.88 KB,150x250,3:5,1443510487093.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54729

>>54728

okay, adding it to the list

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54730

File: 1eb8e55fc17d6fe⋯.webm (231.59 KB,494x360,247:180,back.webm)

>>54724

Hello Monsterboy.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54731

>>54730

hello mousei~

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54732

File: 3b7cdc98566f73b⋯.webm (3.91 MB,480x360,4:3,Grand Theft Auto 2 - Them….webm)

>>54731

How's it going?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54733

File: 39b31d8629a138f⋯.jpg (497.47 KB,970x1021,970:1021,5a3ee7f31d6d9443619239e98b….jpg)

>>54732

oh you know

wake up, wish I hadn't, wish I died in my sleep, take little brother to school

try to finish drawing of your dog, didn't turn out good

watch youtube (invader zim), post on 8chan, came here, waited for you.

the life, I guess.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54734

>>54732

how is your day going?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54735

>>54733

Oh dear. The usual, I see.

Aha, if you don't want to show, I won't mind, but if you do, I won't laugh! Or if I do, I won't say it so you won't know! I'm not a bully though so I most likely won't.

>>54734

Aha, stupid day at work, but that's behind me now. Overtime and no time to have lunch, I hate these days (t-that's what kept me from replying earlier…eating and making coffee). I will be playing some game later tonight, in three hours or so, so that will be good.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54736

File: adbebf1302ddb61⋯.jpg (795.16 KB,2560x1440,16:9,5321.jpg)

>>54735

I don't mind showing it, through the other one away already

well, at least you have something to ease the bullying of work

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54737

>>54736

I threw away the other one*

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54738

File: 821138f31a338c5⋯.webm (4.02 MB,320x240,4:3,Dueling Banjos - Delivera….webm)

>>54736

Aha, that's not bad though It's not great but there is resemblance.

Aye. That and being here. No studying today, looks like, but when I come back tired and struggle to stay awake, reading yields little results anyway.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54739

File: 2e0dec98da20a03⋯.jpg (2.2 MB,2338x1653,2338:1653,c8d6d217f714fde29bc86047fd….jpg)

>>54738

>>54738

>struggle to stay awake

have you been staying awake to long, or have the days been too hard

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54740

File: 25b5b83bffe3db5⋯.webm (2.64 MB,320x180,16:9,Half The Man by Methodic ….webm)

>>54739

A combination of both to be honest. I'm a dingbat and stay up too long.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54741

File: 33893030edec818⋯.jpg (26.93 KB,375x375,1:1,6XH4e2Vh_400x400.jpg)

>>54740

>I'm a dingbat and stay up too long

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54742

File: d226694120f92b3⋯.png (588.92 KB,720x1266,120:211,1511167603511.png)

>>54740

well, I hope you gain of good sleep tonight

I am going back to my game, so I'll be around.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54743

>>54741

Not sure what's supposed to be so black about the word dingbat.

>>54742

Thank you, hopefully.

Okiii, you have fun.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54744

>>54743

nah, the face. I keep this pic cause its someone that tried to shit talk me and its funny af

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54745

File: 3579acb25ac1a85⋯.jpg (228.79 KB,600x768,25:32,coffee 82b505323e0906ca855….jpg)

>>54744

>and its funny af

Is that right? >w>

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54746

>>54745

ye I mean like how are you entitled to talk shit if your face was smeared in it

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54747

File: 38b67be35b45c42⋯.jpg (930.72 KB,1280x828,320:207,Konachan.com - 204991 bare….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54748

File: a7ea661430f8ea3⋯.png (597.38 KB,1280x720,16:9,abuse a7e.png)

>>54746

Naw man.

>>54747

Aha, cute ^.^

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54749

File: fb2a940dff2fff3⋯.png (447.73 KB,960x720,4:3,01fe4c136f6736412a9869fdf0….png)

>>54748

Hello~

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54750

File: b42377c7697c33f⋯.png (165.96 KB,371x460,371:460,hello 11498-823210753.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54751

File: c046b026c272047⋯.gif (447.58 KB,320x180,16:9,1.gif)

good morning~ it's still morning for me, so I'm in time~!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54752

>>54751

Hello poppy

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54753

File: 7af08e8741ff6f2⋯.jpg (116.5 KB,550x550,1:1,heart 1447201711998-1.jpg)

>>54751

Hellu. Nice gif ^^

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54754

File: 3c9e912fdd95fd2⋯.gif (874.18 KB,500x281,500:281,1.gif)

>>54752

hello monster anon~!

>>54753

hi, thank you~ it's an old poppy-use gif

>>54752

>>54736

y-you did a good job, but the way you do eyes scares me a little

m-maybe you should practise on making them less intense, if that's not your intention?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54755

File: 133821db66957ba⋯.gif (298.06 KB,500x192,125:48,coffee eye giphy.gif)

>>54754

Aha, I see I see! Must be really old, I don't remember seeing it!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54756

>>54754

umm no

the dog was looking the person talking the picture

don't know why the eyes would look fearful

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54757

>>54756

they don't seem fearful to me, they seem very intense

I think you need to reduce the amount of shading under or around the eyes

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54758

File: b55d07ab71eebfb⋯.jpg (86.52 KB,1280x720,16:9,1.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54759

File: 5aa125149b39c33⋯.png (115.63 KB,404x404,1:1,5aa125149b39c33eeb903d9f4b….png)

>>54757

hmm, alright

I found a gesture youtube thing

:D

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54760

>>54759

>>54758

Good night Monsterboy, and good night Poppy-chan ^.^

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54761

>>54760

good night, mouse

sweet dreams

I hope you wake up well rested this time

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54762

good night

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54763

File: 2e7c22dba09a339⋯.png (1.24 MB,1920x1080,16:9,sui.png)

no one is ever here anymore

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54764

File: d399fa6e258e580⋯.png (927.61 KB,1920x1080,16:9,1.png)

>>54763

I-I think it's still the same, really

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54765

>>54763

you're not here over the weekends then

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54766

File: cb10f98075e40cd⋯.png (1.25 MB,1253x705,1253:705,mzem70nhs6sz.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54767

>>54765

Hello Monster.

>>54766

Beating a dead loli?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54768

File: ab83d8a4e1cf339⋯.jpg (170.11 KB,640x800,4:5,e0b917dccb6579b01ceec700bd….jpg)

>>54767

hello mouse

how is your day going?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54769

File: 581ebf18456f011⋯.jpg (27.98 KB,397x400,397:400,amazed face.jpg)

>>54768

Ahh,pretty okay. Still am a bit tired. I ordered a pizza though, and will make me a coffee now.

How has your day been?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54770

File: 15c1ba6834aa819⋯.png (235.89 KB,900x700,9:7,fa4e966861cfa24793ce2f3405….png)

>>54769

my brother started riding this bus again, even tho we live 5 mins away from school, and they will be picking him up a hour early, and dropping him off an hour later.

and that is good for me, because I get 2 hours of not dealing with him, but stupid for the school

other then that, drawing or working up the gumption anyway

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54771

>>54770

Oh, I see.

Fingers crossed!

Woo, pizza arrived!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54772

>>54771

what kind of pizza?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54773

File: 0f53e9154c6e74d⋯.jpg (74.3 KB,720x960,3:4,caught 1419453680525.jpg)

>>54772

mozzarella, spinach, chicken, garlic and cheese

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54774

File: 0d3a43e859f6bbf⋯.jpg (389.3 KB,498x700,249:350,0d3a43e859f6bbf163eb611e96….jpg)

>>54773

well, I hope you enjoy it

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54775

File: a9b81e686e65a92⋯.gif (1.37 MB,480x270,16:9,type type type type giphy.gif)

>>54774

Thank you. I was fairly hungry too, so it's good it came so soon.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54776

File: 1242dd5454764a2⋯.mp4 (1.55 MB,480x360,4:3,1242dd5454764a2b0891f168ec….mp4)

>>54775

is the pizza places you have there good

most here are mediocre at best

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54777

File: f2535e7754f228f⋯.gif (1.6 MB,500x375,4:3,oh noes f2535e7754f228f428….gif)

>>54776

I don't really know, I don't have means of comparing with other countries, ehe. I am guessing the same as yours.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54778

good morning!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54779

File: ac7b38697079133⋯.jpg (16.16 KB,300x225,4:3,coffee 50b290_b52b06532c1c….jpg)

>>54778

Morning good.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54780

File: 25062f0aa443d45⋯.jpg (265.92 KB,600x887,600:887,1426379470748.jpg)

>>54777

so, do you have plans over the weekend?

>>54778

good morning?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54781

File: df09b4b8886994f⋯.jpg (266.25 KB,1920x1080,16:9,1.jpg)

w-whoops, I forgot my image

>>54780

y-yes

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54782

File: 0b62c0c1975bc3e⋯.gif (540.23 KB,498x278,249:139,0b62c0c1975bc3e8bd08f608aa….gif)

>>54781

give mouse a (you) as well

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54783

File: fbd8b979eee6218⋯.png (2.86 MB,2400x1350,16:9,1.png)

>>54782

I had one at the end just blankly going to him but I erased it!!

>>54779

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54784

File: 514bb6675e91dea⋯.jpg (152.07 KB,1920x1080,16:9,1426219193531.jpg)

>>54783

what you doing today?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54785

File: f076fd5f2c8beba⋯.jpg (1.41 MB,2000x1125,16:9,1.jpg)

>>54784

that's the best question ever

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54786

File: c6af675839f3f0b⋯.gif (13.17 KB,300x300,1:1,368c6238c08fd8ad9c08fb2372….gif)

>>54785

are you saying that sarcastically or as in you do not know what you're doing today?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54787

File: 382f1758b51c79f⋯.jpg (90.06 KB,787x787,1:1,above e354864473e907e595de….jpg)

>>54780

Well, my aunt's bf is celebrating his 70s and we have been invited so looks like that's gonna happen.

You?

>>54783

Whhyyyyyyyyy ;~;

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54788

File: d473be34d81a9e8⋯.jpg (182.76 KB,1000x1200,5:6,1.jpg)

>>54786

y-yeah, I'm not sure

I'm bored of studying for today, so I will just wonder what to do for a while, because I'm a silly.

what will you do today?

>>54787

why did I erase? b-because I thought you'd ask me why I sent a blank!!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54789

>>54787

>>54786

t-the conversational volleyball is on your side!!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54790

>>54787

I might go see family, I might finish up school for this semester.

My aunt got into meth via my cousin (her daughter) and she has been a bad influence on her for a long time now, however cousin might be going to jail due to a DUI and lying to the cops, and she has a history of drugs that the law knows about due to her being irresponsible in getting her children back.

the other cousins aren't bad tho, and my aunt has been taking advantage of one (who isn't 18 yet) for money, and rent.

mother has been going down there, and buying them groceries every other weekend, because aunt stopped doing it, so they are now relegated to walking to a fast food place. Might go down there and see what is going on. The 2 good cousins wanted to move out, and set up with their step dad last time I was down, but they don't know how to adult very well, so it is a slow process.

>>54788

and a cute

trying to force myself to draw, i have this odd block when I am trying to do things. it happens with everything, not just drawing

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54791

>>54789

it takes me a sec to write out things

I kind of want to order pizza now

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54792

>>54790

y-yeah, sometimes practising can be a little difficult, but at least it's on your mind~

>>54791

that's okay, I wasn't trying to rush you, sorry

t-that's not a good breakfast!!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54793

File: 7a9d4ec45f7e05b⋯.png (5.4 KB,875x665,25:19,Oekaki.png)

>>54792

I always have to be beholden to an entity that gives to due dates for me to be motivated, and the entity can't be myself for some reason ;_;

I'll always try to hit the conversational volleyball as fast as I can, or try to end in the game in a polite way after I run out of things to talk about

but it tastes good, and I don't have a car to do get anything with

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54794

File: f8eaa39bb150090⋯.jpg (141.48 KB,1800x980,90:49,1.jpg)

>>54793

nice circle~ what happened to your cereal and sandwich stuff?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54795

File: ec160ca5e9da161⋯.png (6.2 KB,875x665,25:19,Oekaki.png)

>>54794

it is all gone, and I don't have corned beef, so sandwiches are out of the question

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54796

>>54793

and that's good of you to want to end stuff properly~

don't worry, I think I'm like that too, pleasing other people or meeting their goals or deadlines is easier than meeting my own

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54797

File: cba54929911e113⋯.jpg (196.13 KB,653x764,653:764,1.jpg)

>>54795

you don't need beef for sandwiches, silly

just put some vegetables on toasted bread with some condiment that you like

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54798

File: 7fe82ea730b5592⋯.png (7.29 KB,875x665,25:19,Oekaki.png)

>>54796

~

>>54797

I don't cheese I like, and no vegetables here, I don't think we have any lunch meat for that matter

I guess I could eat grapes and maybe a peanut butter and jelly sandwich

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54799

File: c109fcab9823cd6⋯.mp4 (8.82 MB,1280x720,16:9,1.mp4)

>>54798

y-yes, peanut butter and jelly is good

i-it sounds like you don't really ever have anything, what's happening?

d-d-d-does no one there buy any vegetables or cereal or anything?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54800

File: 43d91715887cedf⋯.jpg (693.93 KB,1240x1753,1240:1753,__takao_azur_lane_drawn_by….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54801

File: 7029463c51a2de2⋯.jpg (334.57 KB,1920x1200,8:5,1.jpg)

>>54798

that's a neat thing, what is it becoming?

>>54800

hello

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54802

File: 2bd38d3d181da3e⋯.gif (778.78 KB,540x301,540:301,sweat 2bd.gif)

>>54788

Maybe I would, but why does it matter?!

>>54790

Oh dear. Quite the messy situation.

How old are the cousins then?

>>54800

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54803

File: b43ef4b1024a3ed⋯.png (8.23 KB,875x665,25:19,Oekaki.png)

>>54799

my mother just buys things for my brother to get, and big that will feed people for days, but I am very picky and lazy

>>54801

a head

>>54802

one is 16 the other is going to be 18 soon, i think

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54804

File: 5592292a5f4990d⋯.gif (234.64 KB,540x304,135:76,blinkage 6e2dd901d87732616….gif)

>>54803

Ahh. For some that might be enough, but I am sure there are lots of people who aren't very adult at 18. Or 30.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54805

File: f87109ee10e1499⋯.png (9.08 KB,875x665,25:19,Oekaki.png)

>>54804

what is even worse, it she fucked the almost 18 one out of free school, due to her lying on her taxes

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54806

>>54805

Ffffug, that is harsh :-/

I am falling asleep…. if I don't reply for a long time, probably failed to endure x__x

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54807

>>54806

good night, mouse

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54808

File: 0847f95ad029830⋯.jpg (312.13 KB,1170x796,585:398,DNnOthdUMAAEzIM.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54809

File: eba26c9c7ca72e1⋯.gif (1004.91 KB,245x245,1:1,1413505757487.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54810

File: 96faa12056fc07d⋯.png (Spoiler Image,899.84 KB,868x950,434:475,60987356_p0.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54811

File: 529bf8962e81b8c⋯.gif (963.6 KB,245x170,49:34,529bf8962e81b8c20f1a6b1fca….gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54812

File: 6a8c31ffee07ed8⋯.webm (2.44 MB,320x214,160:107,fanfare hooray celebrate ….webm)

>>54808

>

>>54807

I am not going to sleep!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54813

>>54812

but you are

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54814

File: 9254de1c6f59e06⋯.jpg (459.33 KB,737x1061,737:1061,54702811_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54815

File: d766164cc8ffc7f⋯.png (826.97 KB,791x1095,791:1095,beer d766164cc8ffc7f5d9062….png)

>>54813

No no.

>>54814

Is the second button being unbuttoned canon? I wonder…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54816

File: 852441badd12d5a⋯.jpg (1.31 MB,1200x1200,1:1,58689111_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54817

File: 4bdf5c21545351b⋯.png (815.05 KB,800x798,400:399,4bdf5c21545351b6c313fb01cb….png)

>>54815

yes yes

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54818

File: 9d70643b1d865d7⋯.png (404.46 KB,756x594,14:11,embrace a282bd53e2c82cd6b9….png)

>>54816

Do you know?

>>54817

Nay nay.

Nice animu titties.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54819

File: 7adaceff780a999⋯.png (407.63 KB,672x900,56:75,1476764975268.png)

>>54815

Hotaru's eyes are all wrong.

>>54817

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54820

File: 7d994087a1e7464⋯.gif (203.7 KB,253x253,1:1,forced hug IMG_1668.GIF)

>>54819

Was that the answer to the original question, or just whether you know the answer?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54821

File: e357f58ece8ae81⋯.jpg (346.77 KB,750x1000,3:4,__shidare_hotaru_dagashi_k….jpg)

>>54820

I don't know, I just know her eyes.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54822

File: fa8f65b05385d31⋯.webm (7.57 MB,500x280,25:14,Nazareth - Beggars Day.webm)

>>54821

Her eyes are down there.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54823

File: 0703cce661ce1ef⋯.jpg (2.89 MB,1648x2330,824:1165,54681286_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54824

File: 8959727a04d8e20⋯.gif (139.91 KB,301x120,301:120,1418509540231.gif)

>>54818

sorry, I was ummm. jerking off

yes

I don't want you losing sleep, mouse

>>54819

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54825

File: 9a777d350d9f721⋯.mp4 (11.39 MB,1280x720,16:9,Rainbow Fruit Salad With H….mp4)

>>54823

Well those are all wrong too, aren't they?

>>54824

So you were, mhm!

No!

I am better now. It was partly because of the heat. Just opened the window and I'm better.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54826

File: c3a6f93314c2997⋯.jpg (3.07 MB,1400x2000,7:10,57944897_p0.jpg)

>>54825

they are blue and the circles are represented by changing shades instead of lines

>>54824

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54827

File: 2842503fe42db8b⋯.png (127.99 KB,508x463,508:463,2842503fe42db8b7c20498d010….png)

>>54825

>heat

jeez, your heating system must be on point

>>54826

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54828

File: 8e105047181746d⋯.jpg (88.96 KB,850x551,850:551,2464653.jpg)

>>54826

The resulting impression is much more normal, not like the ones with the lines. Those look vaguely crazy or at least enthusiastic.

>>54827

Well it was cold here when I got back from work so I turned it to maximum and overdid it.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54829

File: 765d93fb3761edd⋯.jpg (484.28 KB,1500x2122,750:1061,55000044_p0.jpg)

>>54828

they're pretty

>>54827

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54830

File: 94ee00ef9036c54⋯.gif (77.46 KB,255x144,85:48,1425443227770.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54831

File: 87bb2be3880bec5⋯.mp4 (4.56 MB,640x360,16:9,Slushies 4 Ways.mp4)

>>54829

Pretty or not, she also looks crazy.

>>54830

Mhm!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54832

File: cf50e7a54686a8c⋯.jpg (70.63 KB,1238x885,1238:885,5a5ad7e2894414368a8d4e3c92….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54833

File: 44e1cc5a2f35e21⋯.jpg (561.3 KB,1225x900,49:36,56115065_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54834

File: d68429627e9b871⋯.gif (311.07 KB,472x472,1:1,forced stroking d68429627e….gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54835

File: c3a81972bb0501a⋯.jpg (539.15 KB,643x900,643:900,hug 1471012195088.jpg)

>>54833

She does too.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54836

File: e423df74f7f61d4⋯.jpg (44.99 KB,960x540,16:9,1419853047565-3.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54837

File: 08bf5cb2907d02f⋯.jpg (288.47 KB,850x1020,5:6,1.jpg)

nicely toasted bread is just the best

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54838

File: dc50533996797e3⋯.png (389.23 KB,700x654,350:327,__shidare_hotaru_dagashi_k….png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54839

File: ec99171b67a00a7⋯.jpg (5.6 MB,4920x2767,4920:2767,5c98e48c4f7ea44cb1ed0d17d4….jpg)

>>54837

and corned beef

>>54838

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54840

File: 55a0471a1ccba53⋯.jpg (748.27 KB,1920x1080,16:9,1.jpg)

>>54838

it's wonderful~!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54841

File: 09101241ce7d4e3⋯.jpg (121.14 KB,800x566,400:283,1.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54842

File: be884e81ac28d2d⋯.jpg (167.02 KB,850x1201,850:1201,2213187.jpg)

>>54836

>>54837

Enjoy! ^.^ Do you have it with something?

>>54838

Well, that one looks just adorable (and maybe a bit confused).

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54843

File: 96a65fc022fee90⋯.jpg (123.93 KB,1115x968,1115:968,4bd856fa4330b51c63f1a0dd9c….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54844

File: 0abaedf28e82404⋯.jpg (391.41 KB,676x1000,169:250,49207321_p0.jpg)

File: 0ae30f497ed6e52⋯.png (187.31 KB,895x893,895:893,anubis ohayou.png)

File: 8e70aced48b6718⋯.png (208.29 KB,895x893,895:893,sea bishop ohayou.png)

File: 804d52234bd3614⋯.png (147.95 KB,600x600,1:1,wo class aircraft carrier ….png)

>>54842

that's an ohayou

>>54843

>>54841

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54845

File: 97cc359b3a228c3⋯.png (97.7 KB,911x706,911:706,97cc359b3a228c308287ee12f2….png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54846

YouTube embed. Click thumbnail to play.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54847

File: 1e0acfe82872fb6⋯.jpg (273.42 KB,600x633,200:211,group hug Fumiho.full.1031….jpg)

>>54843

^^

>>54844

Of course it is! L-like I didn't know that, pah.

>>54846

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54848

File: 3db96cc92bc02d7⋯.png (694.57 KB,1277x714,1277:714,1.PNG)

>>54842

j-just bread! I was trying some new bread

>>54843

sorry monster-anon!

>>54844

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54849

File: 6183c3a4cfe8bb4⋯.gif (1.28 MB,500x281,500:281,6183c3a4cfe8bb49830a08f26f….gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54850

File: 9ee2e9c2b5d7a75⋯.gif (84.72 KB,300x300,1:1,3d6695ba108f87fb7314d7cbc6….gif)

>>54846

hello

>>54847

~

>>54848

I forgive you

corned beef is still the best tho

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54851

File: b48e6ae6a93e6bd⋯.webm (6.99 MB,850x478,425:239,ruse 1470249726861.webm)

>>54848

Ahhh, I see I see. Do you eat butter at all? I don't know about these things.

>>54849

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54852

File: 30740243ca0e16d⋯.gif (935.42 KB,500x505,100:101,1432567020358.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54853

File: a67680b1579d635⋯.png (91.19 KB,700x990,70:99,6ff9a8542b2a2862788c7be83e….png)

>>54851

is that how you get a loli gf?

>>54852

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54854

File: 220dda4d96e1e01⋯.gif (261.43 KB,500x280,25:14,don't say lazy.gif)

>>54851

>>54853

I'm so tired

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54855

File: f8c8489788023a0⋯.jpg (438.53 KB,1600x1272,200:159,1453670931483.jpg)

>>54854

was work a bully on you too

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54856

File: faf26da105fcf03⋯.png (393.7 KB,600x432,25:18,1.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54857

YouTube embed. Click thumbnail to play.

>>54855

Yhea, had to do some extra work again to relief someone so I was working for 5.5 hours in the cold rain and wind.

>>54856

Margarine?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54858

File: 84fa13294683f5f⋯.jpg (880.57 KB,1416x1000,177:125,46146245_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54859

File: 7bad399df93118b⋯.png (406.72 KB,730x1032,365:516,1.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54860

File: 0cd6f61016d31aa⋯.jpg (114.1 KB,510x700,51:70,cuddle 1467896337021.jpg)

>>54850

Nice gif X3

>>54853

Probably.

>>54854

Going to bed early tonight?

>>54856

Ahh, that would have been my guess if I had to guess, but I didn't so it wasn't!

>>54858

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54861

YouTube embed. Click thumbnail to play.

>>54858

Hello, Holo. I'm eating pepernoten/kruidnoten (peppernuts/spicenuts) :3

>>54859

No fats at all to make the bread less try and help condiments is that the right word? stick?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54862

File: fd84cba9bf83fc8⋯.gif (1.9 KB,32x32,1:1,104441_s[1].gif)

>>54860

Most likely

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54863

File: b3d6fb25a3a3086⋯.jpg (1.88 MB,1600x1137,1600:1137,1.jpg)

>>54861

b-bread is dry to you?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54864

YouTube embed. Click thumbnail to play.

>>54863

I cant get a bite of bread trough my throat without lubricant.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54865

File: fad81b87ea0d96b⋯.jpg (259.63 KB,700x1000,7:10,1.jpg)

>>54864

that sounds gross!

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54866

File: dd7dcd79530cda1⋯.png (3.41 MB,929x1280,929:1280,26dba3fa1a0de19e1cc6f376de….png)

>>54857

poor wired

>>54860

a 2D loli gf?

>>54858

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54867

YouTube embed. Click thumbnail to play.

>>54865

What part, the lubricant part or the not getting it trough the throat part?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54868

YouTube embed. Click thumbnail to play.

>>54866

Chillin out too some late night jazz atm.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54869

File: b6dc9b87cc4758a⋯.jpg (29.48 KB,500x375,4:3,cuddle b6dc9b87cc4758ac73e….jpg)

>>54866

Most likely. You must be 2D yourself though, I think.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54870

File: e7c2e7aba7f5508⋯.jpg (566.27 KB,900x1237,900:1237,bb021020074429b5191ea43771….jpg)

>>54868

the weekend busy for you, no?

>>54869

we cuddles now?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54871

File: 2e49140a15ddd08⋯.png (1.68 MB,926x1288,463:644,42307858_p0.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54872

File: 3a4a65db7b19045⋯.gif (326.99 KB,500x273,500:273,451651651651.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54873

YouTube embed. Click thumbnail to play.

>>54870

Saturday I gots a stupid concert where I need to dress up in tiroller outfits and play crappy skii-party songs.

Sunday evening we celebrating Sinterklaas (Dutch santa kinda deal)

>>54871

They're tasty, and where super cheap. They are a traditional Dutch treat during sinterklaas, which ends the 5th of December. So on the 6th of December all sinterklaas treats go on sale.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54874

File: 3d95aaa55f850a3⋯.jpg (46.36 KB,564x423,4:3,cuddle 3d95aaa55f850a38714….jpg)

>>54870

If you want!

>>54871

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54875

File: 453d768129a17cf⋯.png (112.39 KB,540x456,45:38,6facc94747ff154947ebc0a6ae….png)

>>54873

oh, it is December, I keep forgetting

you work a government job, won't the sand niggers feel something if you're forced to do that?

>>54874

only if it is okay with you

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54876

File: 0f7fbf85e6d3586⋯.png (517.05 KB,825x862,825:862,1.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54877

File: 2f84dc425cf5eeb⋯.jpg (273.26 KB,800x600,4:3,cuddles 1470422347241.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54878

YouTube embed. Click thumbnail to play.

>>54875

Not government owned,been privatised like a decade ago. The neighbourhood I deliver is full of young white families tho, so im not scared of mudslimes

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54879

File: 21b9234162d8dd6⋯.jpg (543.03 KB,827x1169,827:1169,57083864_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54880

File: f15a3fc5ded700b⋯.jpg (59.97 KB,641x557,641:557,1.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54881

File: 9ee2ec4ac3e2e95⋯.gif (919.42 KB,250x224,125:112,ears 16 - 1.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54882

File: 2f52372e37b84e7⋯.gif (1.65 MB,500x281,500:281,2f52372e37b84e7ef789f3c5c4….gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54883

File: f0631365f0c6d78⋯.gif (2 MB,400x231,400:231,1423403813547.gif)

>>54877

~

>>54878

the post service in the socialist utopia of Germany is privatized

hmmm… you learn something everyday it seems

at least you don't have to worry about mudslimes killing you for it

>>54879

>>54880

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54884

YouTube embed. Click thumbnail to play.

>>54883

>Germany

The Netherlands*, Tyvm

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54885

>>54884

>Netherlands

any Western European country really

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54886

YouTube embed. Click thumbnail to play.

>>54885

Atleast my country isn't leading the front to creating a united communist states of yurope.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54887

>>54886

Netherlands is definitely not the worst

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54888

File: 1f608a69009ca36⋯.jpg (425.26 KB,1286x1771,1286:1771,61730753_p0.jpg)

check em

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54889

File: 826c5c8c4bce4f1⋯.jpg (61.33 KB,960x720,4:3,826c5c8c4bce4f1015bd6a509f….jpg)

>>54888

nice 8s

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54890

File: 4d4be5597948cbb⋯.jpg (507.68 KB,1300x550,26:11,1.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54891

File: a3f5d0480fe9676⋯.mp4 (1.61 MB,720x720,1:1,friend.mp4)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54892

YouTube embed. Click thumbnail to play.

>>54887

Make the Netherlands great again. back to the 17th century. The Golden Age

https://en.wikipedia.org/wiki/Dutch_Golden_Age

>>54888 (checked)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54893

File: 0ed53f60c10e10e⋯.webm (105.31 KB,1280x720,16:9,petting 0ed53f60c10e10e2c….webm)

>>54883

~

>>54888

Damnation.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54894

File: 71c7bd2539b505c⋯.png (Spoiler Image,614.07 KB,2400x1500,8:5,1947004.png)

>>54879

Also, have a slightly lewd Hotaru.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54895

File: c03864b22b378b8⋯.jpg (393.52 KB,600x800,3:4,60282126_p0.jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54896

YouTube embed. Click thumbnail to play.

Imma go read up on an adventure module I thinks. Gunna be slow to respond if at all

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54897

File: c5c27b90a863233⋯.jpg (41.22 KB,493x575,493:575,amused doubt c5c27b90a8632….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54898

File: e47b9179cacea82⋯.jpg (70.03 KB,576x960,3:5,1423342854753.jpg)

>>54892

you can't go back unless you're willing to sacrifice technological prowess.

and nothing is worth imo

the most you can hope for is gene editing technology, that makes the genetic population within your county super humans, making it not possible not sand niggers or any other economic migrant to compete with your native population as they aren't super.

I propose this plan over automation taking taking care of the sand nigger problem, as it won't take care of female hypergamy, thus your country's population will dwindled to the point of non-existence.

>>54893

~~~*~*

>>54895

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54899

File: 382f1758b51c79f⋯.jpg (90.06 KB,787x787,1:1,above e354864473e907e595de….jpg)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54900

YouTube embed. Click thumbnail to play.

>>54895

>>54898

Just uplaod my brain to a cumputor and let me life forever in the matrix.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54901

>>54899

sorry was picking up brother

>>54900

you can't do that as far as we understand consciousness

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54902

File: 20c79a8937b9cb7⋯.jpg (75.92 KB,640x640,1:1,comfy 9856d2ef787d87e11625….jpg)

>>54901

No worries.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54903

File: 64c6b3eaf7f3ef7⋯.png (262.7 KB,600x450,4:3,64c6b3eaf7f3ef7409cf6561f2….png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54904

File: ca3515016dae2e6⋯.png (349.57 KB,814x678,407:339,(you) ca3515016dae2e692f4d….png)

>>54903

Hah, a funni pic.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54905

File: f01ddd4b1a482c9⋯.gif (2.71 MB,420x236,105:59,1425864145125.gif)

>>54904

just get in my van, okay

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54906

>>54905

wow, rude burb

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54907

File: 16562dc05e65161⋯.png (201.14 KB,490x380,49:38,1467462977327.png)

>>54905

No lewding.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54908

File: 2b1548fc881f498⋯.gif (1.31 MB,281x272,281:272,crowbro.gif)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54909

File: 914d20024c6c4ac⋯.png (465.91 KB,850x1250,17:25,1.png)

>>54908

wow, that one is nice~

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54910

File: ebcf275b0577335⋯.jpg (104.98 KB,960x719,960:719,1448759442379.jpg)

>>54907

who said anything about lewding?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54911

>>54908

Mein neger

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54912

File: 9723b0b424bf781⋯.jpg (54.71 KB,640x480,4:3,an adult's joke 1368452437….jpg)

>>54910

It just seemed fishy to me.

I AM ALSSSSSSSO A RABBIT

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54913

Dice rollRolled 18 (1d20)

>>54910

*Makes a perception check*

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54914

>>54910

>>54913

Ssseemsss, sssussspisssiousss…

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54915

File: 037e791d2a81d16⋯.gif (1.75 MB,250x141,250:141,1466538268185-2.gif)

>>54911

he thinks they are his babies

>>54912

I bet you are

>>54913

>>54914

umm.. okay?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54916

>>54915

>Perception. Your Wisdom (Perception) check lets you spot, hear, or otherwise detect the presence of something. It measures your general awareness of your surroundings and the keenness of your senses. For example, you might try to hear a conversation through a closed door, eavesdrop under an open window, or hear monsters moving stealthily in the forest. Or you might try to spot things that are obscured or easy to miss, whether they are orcs lying in ambush on a road, thugs hiding in the shadows of an alley, or candlelight under a closed secret door.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54917

>>54916

I always cheat in RPGs, so i never lose

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54918

>>54917

Good luck cheating in D&D though, gonna piss of the other people and the GM at the table.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54919

>>54918

I have no irl friends to play with, so no worries there either

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54920

File: e8b21544c11091a⋯.jpg (691.43 KB,1024x768,4:3,1313086893406.jpg)

>>54915

I am fishy?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54921

File: 6a401a95ef5caa1⋯.jpg (89.12 KB,560x814,280:407,1489908286784.jpg)

>>54920

you're warm

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54922

File: 1da783b9b9805d0⋯.png (82.29 KB,900x1200,3:4,a 1512535458008.png)

>>54921

I don't understand where that came from X3

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54923

File: ef2c709b48f411b⋯.jpg (83.74 KB,1000x620,50:31,fc1ab912d52d33c23106a31f94….jpg)

>>54922

I don't understand either

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54924

File: ad65e4a23365582⋯.jpg (145.78 KB,1280x800,8:5,marble and sculptor 143068….jpg)

>>54923

Mmmm. What up?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54925

File: 6cda530220ceafa⋯.jpg (360.19 KB,1000x753,1000:753,1496816033781.jpg)

>>54924

I going thorough my xeno and captions folder, it got me worked up

I am fine now I think

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54926

wewew

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54927

File: 48961e1263b42f3⋯.gif (881.98 KB,500x281,500:281,sleep 000yawnzzzzzzzzzz.gif)

>>54925

Aha, I see.

Well. I should go to bed now. Good night Monsterboy.

And good night/tripfriend/

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54928

>>54927

nite nite~

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54929

File: 42d72adff796592⋯.webm (1.45 MB,640x480,4:3,sleepy deer.webm)

>>54927

good night, mouse

hope you have a good sleep

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.54931

new thread for later

>>54930

>>54930

>>54930

>>54930

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



[Return][Go to top][Catalog][Nerve Center][Random][Post a Reply]
Delete Post [ ]
[]
[ / / / / / / / / / / / / / ] [ dir / random / 93 / biohzrd / hkacade / hkpnd / tct / utd / uy / yebalnia ]