Recent content by worldwise001

  1. worldwise001

    Using Arch Linux with x10 VPS

    This tutorial is aimed at the more advanced users of Linux who wish to use/install Arch Linux on their VPS. It is basically a compilation of solutions to the different problems I have encountered thus far. This may be updated as I find more issues that need to be resolved. Several assumptions...
  2. worldwise001

    Get "you.co.cc" domain to work with your x10hosting account.

    Please note that as of early July 2011, Google has decided to block the entire co.cc subdomain: http://search.slashdot.org/story/11/07/10/2129219/Google-Blocks-cocc-From-Search-Results Do keep this in mind if you wish for your site to appear on Google.
  3. worldwise001

    Looking for simple and basic twitter plugin

    Hmm... are you sure about that? It worked for me last night when I tested it (I wrote this from scratch).
  4. worldwise001

    How to use Gmail as your SMTP server

    Actually, Gmail SMTP does use port 25 (as this is required of all mailservers on the internet) in addition to port 587. However it may seem that you cannot connect to port 25 at Gmail because most ISPs will block 25 outbound to reduce spam, as there are many other custom SMTP mailservers...
  5. worldwise001

    Reset after an hour

    Easiest and fastest way would be to set up a cron to delete and refresh the backend database every hour.
  6. worldwise001

    new to scrips and need help

    Your account has been suspended. We can't help you more until you get that resolved.
  7. worldwise001

    Looking for simple and basic twitter plugin

    Here's something: <?php $username = 'username'; $password = 'password'; $filename = '/path/to/textfile'; $script_home = '/path/to/script/dir'; $desc = 'file has changed:'; $show_contents = true; // Don't change anything down here function twitter_update($username, $password...
  8. worldwise001

    CGI Programming in C

    I forsee a number of issues here. a) As Misson said, you can't be certain of the version of gcc (minor issue) nor the version of libc (major issue). b) printf prints to stdout by default unless the wrapper somehow pipes that to network stream. c) that is a horrible program to be using...
  9. worldwise001

    Male Vs Female

    Yup, I am here. (I'm Sabriel on IRC).
  10. worldwise001

    How to re-use an RSS feed?

    As far as I know, external access from x10 is not allowed, although I may be wrong.
  11. worldwise001

    SalukiLAN 2009 LAN Party!

    Hello all, The student chapter of ACM at Southern Illinois University-Carbondale will be hosting SalukiLAN on October 3-4, 2009. The main event is the LAN Party with room for up to 120 seats. Additionally, SIUC ACM will be having vendor and information booths open to the general public...
  12. worldwise001

    Virus attack on my computers?

    Yes it's possible for a virus to "migrate" from one computer to another. If the virus is an executable or a dll, it could potentially be run and open a backdoor into your system. I haven't got any information on that specific virus however.
  13. worldwise001

    General Database Concepts

    These links may help you understanding this: http://en.wikipedia.org/wiki/Primary_key http://en.wikipedia.org/wiki/Index_(database) The quick concise version is that the unique flag will force the data in those cells to be unique; primary keys are a subset of unique keys, in that they are...
  14. worldwise001

    [OFF][200 or 200*2] Company Names

    zetwi development inc widevzet - we develop zet for you! wiz-dev-it! Not entirely sure if this is what you are looking for, but eh. I'm Sabriel on IRC btw.
  15. worldwise001

    [java]background image

    Problem resolved. the method was actually g.drawImage(Image img, int x, int y, int anchor); anchor is used for relative placement of text. Weird thing how java decided to implement this in the microedition version as opposed to in the full version. so it should have been g.drawImage(img, 0...
Top