Jump to content

XtremeDev

Member
  • Posts

    17
  • Joined

Reputation Activity

  1. Agree
    XtremeDev got a reaction from SLCH in Floatplane Support   
    I have the same issue. I can't use the new site to pay, just get a screen that says "Loading", then it eventually says Error:
     
    *Edit* OK, I think I see how to pay. You have to go to creators, and then click the one you want. The billing page should probably not just say Error when you don't have any subscriptions, but this is in alpha stages from what I understand so the more bug reports we file the better it'll get!
     

     
     
  2. Like
    XtremeDev reacted to Sneling in Free website hosting?   
    He had a point though... Just open all your ports and you're done, no security flaws
     
    I wouldn't recommend the shared hosting thing (at least from a price perspective for you), as it goes to 40 bucks a year after the first year. Maybe look into OVH, I know they have some pretty cheap stuff for web.
  3. Funny
    XtremeDev got a reaction from pelark in Scrap Yard wars   
    Apology accepted. *retracts pitchfork*
  4. Like
    XtremeDev got a reaction from vorticalbox in Console C# Triangle   
    If simplicity is key, there's always the handy string constructor for repeating characters "X" amount of times.
     
    I'd do it like this:
    public class Program { public static void Main(string[] args) { for(int i =0; i < 10;i++) Console.WriteLine(new string('*', i+1)); } }  
×