Search results

  1. xKiv

    Not a bug - not a script problem - sourceforge issues

    Do we want mafia to automatically convert https URLs to svn URLs on (first) script checkout? Repository URL is stored in .svn metadata. Or can svn:// be forced on an operation-by-operation basis (in svnkit)? How well does svnkit support svn:// ?
  2. xKiv

    Does it Profit?

    I think this is autovivification, and intended in ASH? (autovivification = automatic creation of map elements when accessed) So theItemList[it] adds "it" to theItemList if it isn't there yet (I think this only works in left-hand-side contexts? (as in, only on left side of "=")).
  3. xKiv

    Not a bug - not a script problem - sourceforge issues

    BTW, I also managed to replicate this from normal commandline svn tool, so it's probably not anything specific to mafia's use of svnkit.
  4. xKiv

    Not a bug - not a script problem - sourceforge issues

    As another experiment, I serialized the requests (it's as simple as moving the "t.start();" in SVNManager.doUpdate from line 1271 to just before the "t.join();" in the following loop). I still got blocked after about 32 scripts, if I counted correctly and remember the count correctly.
  5. xKiv

    Not a bug - not a script problem - sourceforge issues

    But single-IP-based limits don't block *distributed* attacks ... at all ... Also, a IP-based throttle *this* brutal can quickly block legitimate traffic from large groups behind NATs. Just imagine team of 30 people syncing the same project at the same time when they start working ...
  6. xKiv

    Not a bug - not a script problem - sourceforge issues

    I increased the delay increase to 1000ms, and now got through 38 scripts ...
  7. xKiv

    Not a bug - not a script problem - sourceforge issues

    It took a very long time whether it failed or succeeded, unless you only had a couple scripts. Because every script took several seconds. .. So, for a test I added an increasing sleep at the start of CheckStatusRunnable.run (the N-th started thread waits N*100ms), and it still wasn't enough. I...
  8. xKiv

    Not a bug - not a script problem - sourceforge issues

    If I repeat svn update a few times, the first 14 scripts check version without timeout, and the remaining 38 time out. ... Actually, it looks like something gets stuck 9 scripts too early ... oh, they all timed out an hour later too. And presumably I won't be able to connect to sf.net for any...
  9. xKiv

    CLI Variable Input

    I think X => Y just does a .replaceAll("X","Y"), everywhere on the line, even in the middle of words. This is why using "parametrized" aliases is recommended: if you use %% in the replacement, mafia will only replace X at the beginning of a line.
  10. xKiv

    Guide

    (it's because using the enchanted *B*ean was made not work in the "Bees hate you" path. In case you ever want to play that.)
  11. xKiv

    CLI Variable Input

    In the CLI, that would probably change semantics of aliases (or more). Which could break old code. See the PriceAdvisor thread (currently at http://kolmafia.us/showthread.php?3110-PriceAdvisor-Maximize-your-profits&p=147536&viewfull=1#post147536 ) for benefits of not breaking old code.
  12. xKiv

    Bug - Not A Bug KoLmafia using up lots of CPU

    That also shows a chat command. Does it only happen after using chat commands (AFAIK anything that starts with / is essentially passed to kol's chat system somehow?), or normall mafia commands (for something that will probably hit the server, try ... hmm ... putting something in your DC? or...
  13. xKiv

    CLI Variable Input

    I believe it's because CLI does word splitting first, so "mmg(2000,2,2,5)" would be trying to call a script or macro *named* "mmg(2000,2,2,5)" (with no parameters)?
  14. xKiv

    Bug - Not A Bug Cannot access several areas when Mafia using Mafia

    Once you started relay browser in one browser, you can take the URL and open it in another browser (then close it in the first browser). It will be something like http://127.0.0.1:60080/game.php
  15. xKiv

    Bug - Waiting for Info KOL Mafia memory leaks, is this why it becomes a CPU hog?

    Once you do that, it's entirely possible that kol just assigned you to a different (less loaded) webserver, and you know nothing.
  16. xKiv

    Bug - Waiting for Info KOL Mafia memory leaks, is this why it becomes a CPU hog?

    It should be almost irrelevant. When you hit that button, it's just doing something that it was going to do eventually anyway. I have noticed that having addons like noscript, umatrix, adblock, requestpolicy, ... (basically anything that has to check every connection to see if should be...
  17. xKiv

    Bug - Waiting for Info KOL Mafia memory leaks, is this why it becomes a CPU hog?

    There are several numbers "memory usage" can refer to in java applications. In order of size: 1) How much memory is actually still being used for something by the app. This number is not measurable. 2) How much memory is taken on the app's heap and some other java structures. This includes...
  18. xKiv

    Universal Recovery Script

    Not so much invalid date, but invalid certificate - because it was only valid until yesterday. Certificates need to be periodically renewed. The "industry practice" for this used to be "new certificate every two years", but now we see pushed towards shortening this, possibly way down to "every...
  19. xKiv

    New Server

    Any progress on this? It's been almost a month, and https is still not even enabled (the server isn't listening on the port), as far as my browser can tell.
  20. xKiv

    Bug - Fixed classskills.txt syntax error - paul's song

    Observed: classskills.txt line 494 has a space between skill id and skill name (Paul's Passionate Pop Song). Expected: should be a tabulator instead, like all the other skills around it.
Back
Top