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
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
 By Bernadet
Ewww, tomorrow I`ve got to go back to school again. I`ve definitely enjoyed my week of freedom and I wish I`d have another week. I managed to miss the kick-off of the current semester so to be honest I don`t have the slightest clue what I`ll be doing. The theme is called database development, so it`ll probably have something to do with databases…probably some PHP and Java thrown in too, since they love doing that. The theme description also says you have to have a high motivation for the theme, which kinda scares me…since me and motivation aren`t usually very good buddies.
But we`ll see, maybe it`s actually loads of fun! I hope so! What kind of scares me too is that I haven`t heard anyone I know yet who will be following the same theme. Most will be taking their internship this semester, which I`ve already done last semester. So I`ll be all alone and will have to find new people to talk with…eep. I hope you won`t get to pick your own groups, as I won`t know anyone which will definitely end up in me being in the leftover group which usually suckkkks. So yeah, fingers crossed that the teacher will be making groups or that I know someone =P
I had to go to work this morning and it kind of sucked. I got out of my bed at 8 am on a sunday to get my butt over there and when I arrived they were like ‘oh…you got the day off today. Didn`t you know?’…No…I did not know…else I wouldn`t be standing here NOW WOULD I??? UGH….
Though I did enjoy my day off =P
 By Bernadet
Hey y`all, I`m sorry for abandoning you for so long! Not that you actually missed me, but I apologize anyway *g*
Today is the very last day of my internship! It`s sooooo awesome I`m nearly freeee! I also managed to discovered that next semester I`ll be taking a different theme than I thought I was taking. I thought I was taking IT service management but I managed to look at the wrong column of the table and I`m actually taking Database development. The IT service management is in my third semester. I`m such a loser *g* This might also mean that I`ll have to get my hands on that book I was missing as soon as possible…but maybe not. I need only three books for database development so I hope that I have those three. I only missed one ^_^
Also, sister managed to win two tickets for holiday on ice. So we`re going there for free now…yaaay. It`s be cold though ><
And sister can make her own skirts! I worship her for it, I`m a disaster when it comes to sewing and she makes gorgeous skirts! I`m working on a bright red polka-dotted skirt with a layer of white tulle underneath though. Once day, it shall be done!
|
|
Recent Comments