Kawaiipixel Welcome to Kawaiipixel! On this site you`ll find a blog written by me [Bernadet], my crazy sister [Alinda] and my mental twin [Lauren]. If you can handle the crazyness for longer than 3 second I also advise you to take a look at my Digital Art page, where I keep all the 3d figures I`ve made!
|
 By Bernadet
The title of this blog post is unrelated, but it makes me lol because of the new kids gnome video so I`m using it anyway ^_^
So…I saw a ‘you make bunny cry’ t-shirt in the cheeseburger store and I WANT IT!. How could I possibly resist a you made bunny cry t-shirt??? Unfortunately, I don`t dare buying a shirt without trying it on first, it probably won`t fit anyway.
Also, my date was a success…yayness <3
I should be making homework now since I`m in class but I can`t really bring myself to it. That`s probably my main problem…if I wouldn`t procrastinate all the time I wouldn`t end up being to stressed because I`ve got so little time to finish stuff. Curse me!
I want to sleep now… really bad! I went to bed early yesterday but I slept awful *sulks* *sulks some more* *snores* ZZZZZZzzzzZZZZZZzzzzzz…..
 By Bernadet
Today I went to school four hours early, all motivated to finish my homework for this week. I, as always, ended being distracted and just staring at my text book. They wanted me to make a program which would simulate a FIFO and LRU algorithm. Well, anyone who knows me knows I despise maths so the moment I read the word algorithm I pretty much gave up.
Hours later, I suddenly saw the light and figured out how to do the FIFO thing (or at least…it looks like it`s working ), but since it was 10 pm when I figured it out it was too late to fix the LRU. So I still haven`t finished my homework *sigh* But at least I`m getting there!
Early this evening I completely crashed in the kitchen when thinking about how awful I`ve been doing at school lately (well, really I haven`t but as I said before… combination of fear to fail and perfectionism makes me messed up) and I sulked for quite a while but then my dad and cat came to give me a hug and tell me that I rocked, and that they wouldn`t mind the slightest bit if I had to retake some classes. I love them <3<3<3
I tried to do some more art too, but I miserably failed.
Ah well, you`ll see more of me soon *hugs*
-Bernadet
P.s. I`m going on a date tomorrow *squeals*
 By Bernadet
I`m seriously considering to join the leaving-members-bandwagon and leave lotrplaza, since some seriously questionable decisions seem to be made there lately. Members who work hard (which doesn`t include me anymore ) get ignored and members who doesn`t seem significant in any way get promoted. It`s weird, and I haven`t met a single member who didn`t think something weird was going on behind the scenes there. Ah well, since we can`t watch behind the scenes we`ll never know
School`s still killing me by the way! Because of my awful combination of perfectionism and the fear to fail I get stressed whenever something doesn`t go according to plan….and things haven`t been going according to plan lately. I really need a hug and some happiness in my life now!
kthnxbye
 By Bernadet
We have this business interview at school next week for which we need to dress formal. Now I do ofcourse have formal clothes but I couldn`t resist this opportunity to go shopping with my parents and receive new clothes. Unfortunately, it took a lot longer than expected because of my horrible body type.
Seriously, my hips-to-waist ratio is insane, my hips are way too big for my waist. Whenever something fits on my hips it`s about 3 sizes too big on my waist, and when something fits on my waist it`s about 3 sizes too small on my hips. It makes me pout, I wish I was normal and pretty *goes emo*
But after a long search I found a skirt which fit my hips and was only slightly too big on my waist (I usually wear skirts which close at the waist and are loose from this point on to avoid the issue all-together but that`s not a good business look) and a cute blouse. So I`m a happy bunny now.

I also made some new art stuff. A baby which is too creepy to show so I won`t but you can see it in on the digital art page (for now, until it freaks me out too much), a girl and some cutesie animals. Here are the girls and the animals:
 By Bernadet
Hey everyone!
It really sucks but Kawaiipixel has been hacked a day ago. They didn`t change anything but they tried to attack other sites through this domain. If anything malicious was done to you through this domain, I do apologize. They had changed my password but my host was able to resend it to me and I quickly changed my password. I hope no more trouble will be caused, especially since my host told me my domain will be suspended if it happens again.
I also had to immediately delete my subdomains, since I was attacked from one of them. So I`m so so so so terribly sorry hostees that your sites were deleted. Most of you weren`t around anymore but I know how awful it is to lose your site, but we couldn`t risk to let the site open to any more attacks.
*hugs*
 By Bernadet
Ohai! Just poppin` in here to show you the new drawings I made. This time I tried my two favourite deliciously evil characters. Or..maybe just delicious *insert eyebrow smiley here*
Anywayy…Lucius Malfoy (Harry Potter) and Eric Northman (Southern Vampire Mysteries/True Blood). Yes..I have a serious thing for long blonde hair on guys, I just can`t resist it *g*
Lucius:
Eric:
 By Bernadet
Thaaat`s right, I was supposed to make homework this weekend but instead I decided to waste my time watching Dragonball Z again and drawing stuff! After several hours of watching DBZ and squealing over the cuteness of first-season-Gohan I made a scribble of him:
After my parents got home again and I couldn`t find my earplugs I had to stop watching DBZ as watching it without sound is rather un-entertaining. So instead of making homework, I decided to do useless stuff on lotrplaza.com (where I`m getting awfully close to 10.000 points!) and got inspired to draw the ultimate hottie!
(yeah that`s Legolas!)
It evolved from this:
Into this:
 By Bernadet
This blog item has no other purpose than terrifying Lauren, as she will be switching to doing computer stuff in uni soon…just like me. She is now officially doomed. Here is my latest homework assignment, a multithreaded binary echo server using java (it doesn`t look very fancy because WP doesn`t indent):
MultiEchoServer.java
import java.net.*;
import java.io.*;
public class MultiEchoServer
{
ServerSocket socket;
public MultiEchoServer()
{
//Try to open a socket
try
{
socket = new ServerSocket(1337);
}
//Close the program if it fails
catch(IOException ioe)
{
System.out.println(“Server error, program terminating…”);
System.err.println(“Exception: ” + ioe);
System.exit(1);
}
System.out.println(“Server started and listening…”);
while (true)
{
//Make a connection and start a thread
try
{
Socket client = socket.accept();
Thread t1 = new Thread(new ClientHandler(client));
t1.start();
}
//error handling
catch (IOException ioe)
{
System.err.println(“Exception: ” + ioe);
}
}
}
public static void main (String[] args)
{
//make the server
new MultiEchoServer();
}
}
ClientHandler.java
import java.io.*;
import java.net.*;
//The class echothread is the actual thread, and is pretty much equal to the server class of the non multithreaded project.
class ClientHandler implements Runnable
{
Socket sock;
//initializing the socket
public ClientHandler(Socket s)
{
sock = s;
}
public void run()
{
try
{
//make the input and output stream
InputStream input = sock.getInputStream();
OutputStream output = sock.getOutputStream();
while (true)
{
//execute code while i does not equal -1
do
{
byte b;
while((b = (byte) input.read()) != -1)
{
output.write(b);
}
System.out.println(“system will now be terminated..”);
output.close();
input.close();
sock.close();
}while (true);
}
}
catch (IOException ioe)
{
System.err.println(“Exception: ” + ioe);
}
}
}
MultiEchoClient.java
import java.net.*;
import java.io.*;
public class MultiEchoClient
{
public static void main(String[] args)
{
try
{
//make connection to server socket
Socket socket = new Socket(“127.0.0.1″, 1337);
OutputStream output = socket.getOutputStream();
InputStream input = socket.getInputStream();
//introduction message
System.out.println(“Hallo!”);
//execute code while i does not equal -1
do
{
byte b;
while ((b = (byte) System.in.read()) != -1)
{
output.write(b);
b = (byte) input.read();
String str = “”;
str += (char) b;
System.out.print(str);
}
System.out.println(“system will now be terminated..”);
output.close();
input.close();
socket.close();
}while (true);
}
//Error Handling
catch (IOException ioe)
{
System.err.println(“Exception: ” + ioe);
}
}
}
Want to know what this does? Nothing but echo back to you what you type in the console. That`s right…you need all this code to make a computer say hi back to you after you said hi to him. BE AFRAID LAUREN, BE VERY AFRAID!!!!!
-Bernadet
 By Alinda
So…I dragged Lauren into this mess which we call a blog site. Somehow she agreed. Maybe it`ll help us to actually keep this site active. That is, if she doesn`t demolish the site. There`s really not many boxes you need, to make posts you use the add new post link and to add a page you use the add new page link. If you want to mess with the layout just ask me and I`ll show you how…maybe *grins*
I`m working with java at school now, which sucks a lot. I hate java, but that`s mainly because I`m rather bad at it and it`s boring. I`d much rather learn lolcode, I mean…how awesome is this?:
HAI
CAN HAS STDIO?
VISIBLE "HAI WORLD!"
KTHXBYE
-Bernadet
(Edit: somehow WP messes up and puts my sister as the author,
but it`s really me!)
 By Lauren
*Invades*
*Breaks things*
*DESTROY DESTROY DESTROY*
This thing is confusing. How many boxes of things do you actually need?! But at least Berna let me in… Now she will never get rid of me… *cackle*
|
|
Recent Comments