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
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*
 By Bernadet
As you all might have noticed….I disappeared. I`m sorry for that, uni has been attempting to kill me several times. But I`m back now! Or at least, I`m trying my hardest to be back *grins*
As you`ve probably seen, I`m messing with the layout of the site. Right now it`s all very basic but I plan on changing stuff once I got some input on colours and all ^_^
I actually considered giving up this domain for a while since I didn`t know what to do with it anymore. But I have a new use! I will be moving to England for 6 months from September and will use this site to keep my family updated while I`m there. I just wish I could change the domain name, since that`s still bothering me. No one knows what it means and it`s like 4 years old by now *grins*
-Bernadet
 By Bernadet
I have a confession to make….I`ve been to New Moon….on the first day….you may slap me now.
To make things a bit better it was the most awful film I have ever seen in my entire life. And I`ve seen some pretty awful movies having a sister who`s amazing at finding awful movies. After reading and loving the book I was part of team Edward, big time. But after this movie I have switched to team Jacob. Every scene with Jacob was awesome (though the moment where he randomly ripped his shirt off to wipe some blood off Bella`s face was questionable) but every scene with the vampires made me cringe in shame. Their eyes were so bright golden that they nearly gave off light and when they ran they did it in slowmotion which made them look like baywatch actors.
The worst thing about it was Edward without a shirt though. God he looks AWFUL without his shirt *shudders* GO JACOB!!!
School has been rather busy lately, which is why I haven`t been able to blog much. Though I must admit part of it is caused by my new addiction to the sims 3 world adventures too. In this new expansion pack you can travel to China, Paris or Egypte and explore tombs by solving simple puzzles. It`s quite amusing ^_^
But yes…school… I`ve been back at school for two weeks now and it`s quite a boring semester so far. It`s about database systems, normalisation etc…and algebra, I don`t like algebra *ugh*
Anyway…here`s some art for you!

 By Alinda
OMG, i havent posted for like thiiiiiiiiiis long! But i`m back, mostly because sissies posts made me LOL so much! I lubs you too schwesterli!
Thanks for the compliment about the skirties, soon i`m making another one, if you`d like to join!
I love love love you digi art! You rule, big time!
Seriously, i have no idea what to say to you, apart from:
I HEART GLEE!
I`m off, and i promise ill try to post more!
XXXXX Alinda
|
|
Recent Comments