Jump to content

vol7ron

Members
  • Posts

    48
  • Joined

  • Last visited

Everything posted by vol7ron

  1. Hey guys, it seems kind of odd that it would be permanently deleted in that short period of time. I travel a lot (sometimes months at a time) and while I think it's great that inactive accounts are being removed to free up space, I am quite upset that I didn't at least receive a notification email. At least then I could try to log in from my phone or something. This is quite upsetting, especially given the hoops I had to jump through to get Perl modules installed and Postgres/CPanel updated. Well, the hoops weren't really as big as just waiting for it to happen (fortunate that it did happen relatively quickly), but still, I feel like I at least partly contributed to that effort, so would have received at least some courteous notification. If my account has been deleted, I might as well just go to some paid service elsewhere. I appreciate all the help, but the server's uptime wasn't ideal, and I don't want to risk things getting deleted again. if it helps the web address was something like: ceedew.heliohost.org
  2. I think my account was suspended on Stevie, but am not sure. I tried to check it the other day but Stevie was down and I just got back from vacation. Any chance I can unlock it? Thanks
  3. What does borealtrek mean? I could see you splitting up the boreal and trek with bolding or colors, but this focuses on the typography. I don't mind what you have, it's clean, nice, and attractive. If you want a logo, you should define what borealtrek means, or focus on the letter 'B' to make an image/text-based logo. borealtrek borealtrek
  4. Congrats Tjeone (months later)
  5. There are other forms of caching that occur too, but one of the more popular ones that isn't listed at the site is through a proxy. You also have local firewalls that have caching mechanisms built in, but there are many places where cached versions occur. I would also add that just because a browser says its cleared its cache does not make it true, especially since there are a lot of bugs that have been opened around that topic alone. Finally, I would not say any browser is better for web design, since you should build for your users and the major browsers right now are IE/FF/Safari/Chrome. Opera, while a nice browser, is used by few when compared to the entire population. Now, if your community which you are trying to reach use primarily Opera, then so be it. From a personal perspective, I try to design for all browsers; however, I use FF as my debugging browser.
  6. I also noticed there being a cache-ing problem when using Chrome. I'm not sure about Opera or other gecko based browsers (I think Mozilla was pretty good about clearing the cache). Even when I empty'd the Chrome cache it still wasn't loading correctly (I mostly noticed this when I set up my page for the first time). Krydos, we might want to contact xaav and ashoat and see if the Postgres/Perl updates are negatively effecting the server. I don't think they are, but I suggested they be updated and I would hate to be the reason why Stevie is a little more temperamental.
  7. @xaav: you are the man; I will give it a shot. perhaps we could work on a project together?
  8. I put this under the site suggestions some time ago, but haven't heard anything about it. I'd like to get Catalyst or MojoLicious installed. They are both popular perl frameworks that make it easy to sessionize and build templates websites. The only alternative I can use is the dated CGI module family.
  9. Just set the background of a <div> and nest the div with other divs that have backgrounds w/ transparencyIf you're going to use xaav's approach you'll need to use absolute positioning (position:absolute).
  10. Ahh good catch So you're exposing what's known only to HH members, to the rest of the internet, regardless of it's commonality with other CPanel/LAMP installs? And now, I see you are adding more information. I was trying to be helpful, but I am sort of taking your denial as a challenge. Am I correct?
  11. You should never reveal this much information. I now know where your script is, what your username is (or shaped like), and what password you're attempting. In addition, you gave me the database type and location. I think this whole thread should be deleted for security.
  12. Byron, please don't take offense to what I said. Yes your script is set up legally, but I think users here will abuse this. Essentially, you're suggesting to set up your own scheduler because of the limit that is imposed. Imagine if I did this: run a script that runs every minute of every day the script parses what time it is and runs certain programs based on what time it is Sure I'd be running one script, which follows heliohosts rules, but it calls multiple other scripts on a schedule, circumventing the rules that cron is trying to restrict. In programming terms, this is called a "wrapper." I think the sole reason of imposing the restrictions is to reduce the impact the scripts are imposing on the server, so if we created our own scheduler, we would be getting around this limitation and hurting the server. As for your post, I was saying that instead of having different scripts for each day of the week, you could just run one script at the same time every day, which runs different functions based on what day/time it is.
  13. Are you stalking my posts? lol. really, these old threads are the most recent threads.
  14. Same, but I can't remember the last time I heard of anyone storing passwords as plain text after the 90s. You shouldn't broadcast what hashing algorithm you use And md5 isn't so secure anymore.
  15. Made with Gimp. Some time ago I saw a decent tutorial, which I've since forgotten. I tweaked/modified it to improve it to my liking.
  16. Ahh see, you took it for fact, when it was intended to be humorous. Though, if the servers are set up right, it could be true. One person would be able to cause a crash, but I have a feeling ashoat would be on the banffensive in those cases.
  17. No need to go elsewhere, I can help you out. Your problem is this line: var c = [t.getHours, t.getMinutes, t.getSeconds]; You're storing the function reference and not the result. You should call the functions (add parentheses): var c = [t.getHours(), t.getMinutes(), t.getSeconds()]; It's "NaN" because you then calculate c[0]-j[0] which translates to "t.getHours"-12 (or some other number), so when you do a calcuation of a non-number string minus a number, it'll result to NaN. if you store the result of t.getHours() in c[0], the calculation would be two numbers (eg 9-8) Note: I didn't do the work for you, I only removed the NaN bug, you'll have to debug your code to get it to work: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="generator" content="HTML Tidy for Linux/x86 (vers 11 February 2007), see www.w3.org" /> <title>Time</title> <script type="text/javascript"> //<![CDATA[ function d() { var j = [ <?php echo idate("H"); ?> , <?php echo idate("i"); ?> , <?php echo idate("s"); ?> ]; var t = new Date(); var c = [t.getHours(), t.getMinutes(), t.getSeconds()]; var a = [c[0] - j[0], c[1] - j[1], c[2] - j[2]]; var b = "After Ours"; if (a[0] < 0) { a[0] = j[0] - c[0]; b = "Before Ours"; } if (a[1] < 0) a[1] = j[1] - c[1]; if (a[2] < 0) a[2] = j[2] - c[2]; for (i = 0; i < 3; i++) document.getElementById("r" + i).innerHTML = a[0]; document.getElementById("r").innerHTML = b; document.getElementById("t").innerHTML = "Your computer's date and time:" + Date() + "<br>Our date and time:<?php $aop=" AM "; if (idate('H')>12) $aop=" PM "; $dow=array("Sunday ","Monday ","Tuesday ","Wednesday ","Thursday ","Friday ","Saturday "); $mow=array("",'January','February','March','April','May','June','July','August','September','October','November','December'); $min=idate("i"); $sec=idate("s"); if ($min<10) $min="0".idate("i"); if ($sec<10) $sec=" 0 ".idate("s"); $d=array($dow[idate('w')],idate('d'),$mow[idate('m')],idate('Y'),idate('h'),$min,$sec,microtime(get_as_float),$aop); echo $d[0]."".$d[1]."".$d[2]."".$d[3]."".$d[4].": ".$d[5].": ".$d[6].".".$d[7]."".$d[8]; ?>"; } //]]> </script> </head> <body onload="d()"> <div id="t"></div><br /> <div id="r0"></div>h <div id="r1"></div>m <div id="r2"></div>s <div id="r"></div><button onclick="window.location.href='servertime.php'">Update Time</button> </body> </html>
  18. @Krydos: 8/31/2011? The server has been up and down the past two months. yes.
×
×
  • Create New...