Search results

  1. Baljeet

    (UberCMS) Password & Email Changer Fixed!

    There is problem. Even i enter correct details,and click change password. It says: Error! You left something blank! If you think someone knows your password, or it's easy to guess, then it's time to change your password! Current Password *The current password does not...
  2. Baljeet

    [Report]Habbo.la & Habbin.net

    Who Said?, Well, if the owner of the site didn't set it up for purpose (and we know he didn't)... ...his site was for sure infected somehow...!!! Got it..??
  3. Baljeet

    [Report]Habbo.la & Habbin.net

    I found 2 Website malware/virus when I go to thehabbos.org Proof: Habbo.la: Habbin.net:
  4. Baljeet

    [Report] Aero Hotel

    Fixed This issue has been fixed. Can you remove from blacklist now? It was false postive Proof is here: http://forum.avast.com/index.php?topic=82848.0
  5. Baljeet

    Need Habbos Banner

    Anyone please?I really need it.
  6. Baljeet

    Need Habbos Banner

    Its not Huge,It will be good if you can fit all this things in,Hope someone make for my good hotel :)
  7. Baljeet

    Need Habbos Banner

    I need a banner for my top 10 hotel on thehabbos,And here are the details: Size: 500x100 Maximum & Default Hotel Name: Aero Hotel What you wan't it to say: Perfect Hotel For You! Features: R63 // Phoenix // PHP // Wired // Pets // NEW HABBOWOOD FURNI // Rollers // 24/7 // 24/7 Radio // VIP $5...
  8. Baljeet

    My VPS Won't Connect API

    How does after voting it sends the credits for voting?
  9. Baljeet

    My VPS Won't Connect API

    But somehow,MY VPS is not webbrowsing the thehabbos.org site. I Know it worked,thats because i taked someones source of there api,and i puted in. I am sure my vps is blocked it,My PHP Developer told me. He is expert. Because before,When i click enter hotel the client keeps loading (I...
  10. Baljeet

    My VPS Won't Connect API

    Yes,But after this happen,I think it affected and blocked my ip some how of my hotel 205.185.113.57 which I cannot browse the thehabbos.org through my VPS.
  11. Baljeet

    My VPS Won't Connect API

    Today,My server is not connecting with thehabbos.org even browser but from my pc it does. I saw today: Attention: Sorry about any inconvenience(s) that may have been caused this morning. The issue has now been resolved. Is my Hotel is Banned from TheHabbos? Please help. My Hotel is now 7th...
  12. Baljeet

    Read an Integer from the User

    Read an Integer from the User, Part 1 Obtaining user input can be done in many surprisingly different ways. This code is somewhere in the middle: safer than scanf("%d", &n), but not bulletproof. It is meant to be a simple but relatively safe demonstration. The function mygeti reads user input...
  13. Baljeet

    C++/opengl --part2 : using textures and keyboard input

    Hi all, its me again Important Notes: you will need to read the first part to keep up with this tutorial I'm using the same code in the first part for simplicity I've used easier approaches, though it doesn't mean that it's the best way or the most professional approach. But I'm doing this...
  14. Baljeet

    Code: Managed C++ .NET 2.0: Instant Messanger Server

    This is the code for a Visual Studio Managed C++ .net Instant Messanger Server. I say server because it was meant to receive the messages. The code below is how it receives messages via a loop private: void RunIMServer() { while (!stopped) { TcpClient^ client =...
  15. Baljeet

    function pointer

    Function Pointers are pointers, i.e. variables, which point to the address of a function. Thus they exhibit polymorphism by call by different methods. Function pointers is an exclusive propery of the c language and should be used wisely as functions are always more powerful and fact in execution...
  16. Baljeet

    Difference between c and c++

    1. C does not have any classes or objects. It is procedure and function driven. There is no concept of access through objects and structures are the only place where there is a access through a compacted variable. c++ is object oriented. 2. C structures have a diferent behaviour compared to...
  17. Baljeet

    Implementing a Fuzzy Boolean

    As promise in Getting Fuzzy Part 1, here is an implementation of a Fuzzy Boolean. In the previous tutorial, we looked at what fuzzy logic is. Now we need to write a formal definition of what a fuzzy bool should do so we can create an Fbool class. This is where we have to get very precise...
  18. Baljeet

    Clear screen in windows console using API

    This is mosly useless, I'll admit it, but it's fun :D Perhaps you can learn something from it? It's software (source and exe) for demonstrating how to clear the screen in the Windows console using Win32 API. It contains a few other things too, like some error handling demonstration and a...
  19. Baljeet

    Function Pointers

    C++ Function Pointers Now, as C++ programmers, we love writing messy, unreadable and advanced-looking code that will leave beginners head-scratching for hours. Function pointers happens to be a great tool for achieving maximum confusion and frustration. Did I mention that they are actually...
  20. Baljeet

    C/C++ Hello World Tutorial

    This tutorial I aimed for those who would like to learn to do basic output in c and in c++. This is very easy and for begginers, fun. Let's get down to business: C Version: #include <stdio.h> int main() { printf("Hello World"); system("PAUSE"); return 0; }...
Top