As was foretold, we've added advertisements to the forums! If you have questions, or if you encounter any bugs, please visit this thread: https://forums.penny-arcade.com/discussion/240191/forum-advertisement-faq-and-reports-thread/
Options

You know all those weird bugs(7/17/05 Work)

ÄlphämönkëyÄlphämönkëy Registered User regular
I'm fixing them.

The entire site will be down for about 45minutes.
-Alpha

Älphämönkëy on

Posts

  • Options
    HardtargetHardtarget There Are Four Lights VancouverRegistered User regular
    edited July 2005
    sweet

    Hardtarget on
    steam_sig.png
    kHDRsTc.png
  • Options
    MgcwMgcw Registered User regular
    edited July 2005
    Hey... It's daylight time not standard time!

    Mgcw on
  • Options
    OrikaeshigitaeOrikaeshigitae Registered User, ClubPA regular
    edited July 2005
    oh god i'm bad at converting between timezones

    Orikaeshigitae on
  • Options
    Red ZoneRed Zone Registered User regular
    edited July 2005
    CST time doesn't exist.

    Red Zone on
    1vqtC.jpg
  • Options
    redfenixredfenix Aka'd as rfix Registered User regular
    edited July 2005
    Which is weird, 'cause i'm in it.

    redfenix on
  • Options
    DJ EebsDJ Eebs Moderator, Administrator admin
    edited July 2005
    CST is the best.

    DJ Eebs on
  • Options
    Red ZoneRed Zone Registered User regular
    edited July 2005
    Nope. It doesn't.

    Red Zone on
    1vqtC.jpg
  • Options
    OrikaeshigitaeOrikaeshigitae Registered User, ClubPA regular
    edited July 2005
    Guys, what is 2pm CST in EST?

    Orikaeshigitae on
  • Options
    ÄlphämönkëyÄlphämönkëy Registered User regular
    edited July 2005
    Now.

    Älphämönkëy on
  • Options
    OrikaeshigitaeOrikaeshigitae Registered User, ClubPA regular
    edited July 2005
    Oh.

    Orikaeshigitae on
  • Options
    ÄlphämönkëyÄlphämönkëy Registered User regular
    edited July 2005
    :wink:

    Älphämönkëy on
  • Options
    ElkiElki get busy Moderator, ClubPA mod
    edited July 2005
    <3

    Elki on
    smCQ5WE.jpg
  • Options
    OrikaeshigitaeOrikaeshigitae Registered User, ClubPA regular
    edited July 2005
    Elkamil wrote:
    <3

    Orikaeshigitae on
  • Options
    omgboomlolomgboomlol __BANNED USERS regular
    edited July 2005
    thankulanguages8by.jpg

    omgboomlol on
    omgboomlolud1.gif
  • Options
    ÄlphämönkëyÄlphämönkëy Registered User regular
    edited July 2005
    For the curious, I converted back from InnoDB tables (on highly updated tables) to MyISAM tables. By all accounts this should make the site less stable, but given the problems we had last week, I'm not going to argue.
    Here are the commands I ran for the techies out there.
    # mysqldump --opt -Qe --all-databases -p > ./mysql_innodb-myisam_conversion.dump.sql
    Enter password:
    
    # du -h mysql_innodb-myisam_conversion.dump.sql
    954M    mysql_innodb-myisam_conversion.dump.sql
    
    # #Yikes! We have almost a gig of just data, this does not include indexes
    
    # cat mysql_innodb-myisam_conversion.dump.sql | sed -e '/ENGINE=InnoDB/ s/ENGINE=InnoDB/ENGINE=MyISAM/g' > ./mysql_innodb-myisam_conversion.dump.runnable.sql
    
    Time spent in user mode   (CPU seconds) : 5.789s
    Time spent in kernel mode (CPU seconds) : 5.759s
    Total time                              : 0:58.86s
    CPU utilisation (percentage)            : 19.5%
    Times the process was swapped           : 0
    Times of major page faults              : 0
    Times of minor page faults              : 18128
    
    # mysql -p < mysql_innodb-myisam_conversion.dump.runnable.sql
    Enter password:
    
    Time spent in user mode   (CPU seconds) : 21.796s
    Time spent in kernel mode (CPU seconds) : 4.091s
    Total time                              : 6:32.83s
    CPU utilisation (percentage)            : 6.5%
    Times the process was swapped           : 0
    Times of major page faults              : 28
    Times of minor page faults              : 1730
    
    # /usr/local/etc/rc.d/mysql-server.sh stop
    Starting mysql.
    # cd /var/db/mysql/
    # find . -name '*.MYI' -exec myisamchk -p {} \;
    
    Time spent in user mode   (CPU seconds) : 96.813s
    Time spent in kernel mode (CPU seconds) : 8.101s
    Total time                              : 2:27.59s
    CPU utilisation (percentage)            : 71.0%
    Times the process was swapped           : 0
    Times of major page faults              : 19
    Times of minor page faults              : 250459
    
    # /usr/local/etc/rc.d/mysql-server.sh start
    Starting mysql.
    
    # mysqlcheck -p -o --all-databases
    Enter password:
    

    Let me know if things are still breaking.

    Älphämönkëy on
  • Options
    HenroidHenroid Mexican kicked from Immigration Thread Centrism is Racism :3Registered User regular
    edited July 2005
    Thanks again Alpha! :^:

    Henroid on
  • Options
    mccmcc glitch Registered User, ClubPA regular
    edited July 2005
    That's awesome but it seems to have created at least one new bug. Post in this thread and you will see that the old post-time-travel thing is happening.

    EDIT: Never mind, it's fixed itself somehow.

    mcc on
Sign In or Register to comment.