Messages - RedPillow [ switch to compact view ]

Pages: [1] 2 3 4 5 6 ... 28next
1
Hello there!

Oh I remember the donationcoder forums. I got in here via Cortex Command somehow. (I think this guy named Nahuel, who was Cortex Command's anti-piracy / anti-crack guy with this weird polar bear fetish (Might even have him added on Facebook), lead me here) (Edit: scancode was his nick!)

I was in ... maybe 9nth grade then, so somewhere between 14 and 16 years old. I am now 21 years old, however.

I was kind of a beginner with programming back then, but I knew decent amount of stuff still, so not a complete beginner. I think I even tried solving some of the programming puzzles found somewhere on this site and I remember doing some C++ puzzle that was related to banking (never got that one done).

Well I've continued and gotten a lot better since then. I've never wanted to do anything else than computer stuff / programming and to this day I still do not.
I will graduate with my B.Eng. degree of Software Engineering in 2 months and I will be continuing with a master's degree of software engineering after summer.
I work whilst studying in an engineering / consulting company with around 1200 emplyees. I am a system's developer / analyst and I make around 20% more than the average just graduated fella.

Recently, I've been getting into wines, cheese and coffee made from fresh ground coffee beans. I haven't gotten to actually try the coffee yet as I don't have a bean grinder yet, but I am obtaining this cool antique bean grinder from my grandma at the end of this month. Wine is costing me a lot of money, as I tend to drink quite lot of it whilst programming. I am thinking about switching to cheaper ones when I am alone.

I am looking to buy a new jacket, but I have absolutely no taste. This and this are the candidates so far.

As for what exactly I do with computers as of now; I have gotten into web stuff mostly, so Node.js, express, socket.io, HTML 5, JavaScript, jQuery, Transit, Redis, AppFrameWork, Phonegap, grunt, gulp, PHP and so on are the main things I am working with on a daily basis. I do a decent amount of C# and C++ as well, especially if I want to make games or something with proper OOP. I use SFML.NET for all my desktop games.

Pixi.js and some other WebGL frameworks are also something I make games with, when I feel like I am ready to get annoyed by JavaScript, although JavaScript is one of my favorite languages.

There has been a lot of talk around the internet about the new Raspberry PI, Unity going free and Unreal Engine going free. I am honestly not too amused. Sure that stuff is great and all and Raspberry PI is amazing feat of hardware technology, but all of those just kind of dodge my interests. I always liked making games from absolute nothing because it was challenging and I'd learn a lot. I also LOVED implementing all the required algorithms by mysel, be that a simple projection or a path tracer or something more difficult. These tools take everything I love about making games away from me as they have all the "good stuff" already built in. Besides, 3D games are boring and damn near impossible to be made by a single person with the models and all.

As for the Raspberry PI, I don't do a lot of electronics. I am 95% software guy, so that does not really interest me that much.

Hmm what else, what else... Oh I make gamehacks as a small hobby from time to time. Nothing too serious; some packet forging, datamining, memory editing and tiny dll-injections. Apparently there isn't even that much work involved with, say, making a godmode or a teleportation hack for Final Fantasy XIV, Archeage or Guild Wars 2. BeEF, Nessus and Metasploit are even more interesting to toy with.

Unfortunately I've moved mostly to Reddit and Stackoverflow when it comes to online coding communities. Thanks for the email though mouser, I will try and drop by more in the future!

2
Developer's Corner / [CSS] Problem with div height
« on: June 15, 2011, 01:05 AM »
I got this picture here: http://imageshack.us/photo/my-images/17/probmb.png/

What I need to do is to make that blue bordered div stretch in height so it fills the cyan bordered area, depending how long the red bordered area is.

So if there's lots of text in the red bordered area, the cyan-area will get a lot longer and therefore the blue area must stretch so it reaches the bottom of the wide area.

Lol do you get me  :huh:

The blue bordered area should be kind of 'anchored' into the bottom of the big white area so it stretches.

3
Developer's Corner / [JS] How to make this loop?
« on: March 30, 2011, 08:29 AM »
Code: Javascript [Select]
  1. $(document).ready(function(){
  2.  
  3.    var modTime = 0;
  4. setInterval(function(){
  5.   $.post("ChatClient.php", {"file":"chat.cht", "time":modTime}, function(rst) {
  6.     if (rst.time != modTime) {
  7.       modTime = rst.time;
  8.                 window.location.reload();
  9.         else {
  10.                        
  11.         }
  12.     }
  13.   });
  14. }, 1000);
  15. });

So that is my code, and I need to make it do the whole check again on the else-statemen.
This is supposed to check a file modification time and if it's changed - it should reload the page and if it's not changed, it should just keep checking infinitely again until it is.
It works nice, if I remove the else-statement but then it refreshes every seconds - no matter if the file is modified or not.

I tried this by myself:

Code: Javascript [Select]
  1. $(document).ready(function(){
  2. loopIt();
  3. function loopIt() {
  4.    var modTime = 0;
  5. setInterval(function(){
  6.   $.post("ChatClient.php", {"file":"chat.cht", "time":modTime}, function(rst) {
  7.     if (rst.time != modTime) {
  8.       modTime = rst.time;
  9.                 window.location.reload();
  10.         else {
  11.                 loopIt();      
  12.         }
  13.     }
  14.   });
  15. }, 1000);
  16. }
  17. });

4
The <|/p> and <|p> tags somehow come from joining these two together:

$Firstpart[$rand] . $SecondPart[$rand];

5
Still weird tho ... I can print ie. CHESSBOARD as much as I want and it always puts <|/p><|p> after the word.  :huh:

Pages: [1] 2 3 4 5 6 ... 28next
Go to full version