Lionas
Lionas
Comments
-
Every entry in the log is a valid reason to place a bounty. That's one bounty PER MOB KILLED, as long as the bounty is placed within 3 RL days of the log entry. I'd rather they stay in the log than scream on CT.
-
(Quote)
-
-
The last week or two I've been listening to Horses In The Sky (album) by Thee Silver Mt. Zion Memorial Orchestra & Tra-La-La Band repeatedly.
Here's the full album on youtube:
in Now Playing Comment by Lionas November 2013 -
(Quote) touch tentacle attacker. Guards. ???. Profit.
-
I haven't played Path of Exile since the closed beta. How is it now?
-
You have a mutual ally whose name starts with "a" and is at Kinsarmar crossroads. I ran into that bug yesterday (but forgot to file it).
EDIT: Similarly, if you try to path find to an area that starts with the same word as the name of a s… -
This just in. Mangoes are awful.
-
MSG DELETE IMPERIAN - delete ALL system messages.
MSG DELETE RANGE first TO last - delete range of messages.
-
When I try to grow a beard, I suffer from a common ginger ailment known as splotchface. I can manage a van dyke, but I dare not shave it off.
EDIT:in Movember 2013 Comment by Lionas October 2013
-
Not sure how I got 11 kills when I spent most of the time capturing nodes. Here's a recap of the entire thing.
(Ring): Iniar says, "-----------Kills-----Deaths------------Kills----Deaths."
(Ring): Iniar says, "Eldreth-----19---------… -
Is there a reason the entries in the URI field are escaped? JSON certainly doesn't require them to be.
-
This post is off-topic to the title, but this may be useful to some people and there isn't a better place to put it:
This is for Python 3 (I'm still training myself to use 3 instead of 2.7, and I'm rusty, so I'm doing everything in Python… -
Plain english introduction to OAuth -- http://blog.varonis.com/introduction-to-oauth/
Wiki article here: ht… -
Ideally we have the OAuth method to authenticate with a token and handle the initial transfer of creds via an SSL channel. Once you have the OAuth tokens, there's no longer a need for SSL, reducing the load on the server and allowing stateful auth.<…
-
(Quote) Slacker.
(I've only finished the first gym)
((In my defense, we only have one 2ds, and my wife has been bogarting the pokemons))
-
(Quote) Ah, so you're using the http://old.imperian.com/players.php?search page?
-
To expand on what Garryn said (since I didn't previously know the web api existed), here's a quick example.
Doc is at http://www.ironrealms.com/IREAPIdocumentation… -
That is a list of who is online, and what channels they share with you. It only gives you the names as they are on qwho.
EDIT: So it is identical to the list on the site. Gems don't hide players anymore, and the site doesn't bypass hidden… -
So, first thing's first, http://old.imperian.com/players.php?search=who is a thing.
There's also the GMCP message Comm.Channel.Players which you can send to the s… -
"Killing" was perhaps an overstatement, as at that point "You are suffering from low city affinity" amounted to a 3% drop.
-
You tell Student of the Arcane, Blanel, "You cannot remain a citizen of Khandava if you are within the Vindicators guild. You will need to choose which organization you wish to keep."
Blanel tells you, "Sorry, this is jeremy, I am testing newbi… -
I have an extra steam key each for FEZ and Bastion I'll give out as well.
-
Just gonna leave this here...
http://www.zuggsoft.com/library/trigadv.htm#Within Lines -
YOU HAD ONE JOB
-
(Quote) Shieldtarget = matches[2]
if string.find(Shieldtarget, target) == 1 then shield = true end
This can be simplified to
if string.find(matches[2],target) then
shield = true
end
-
The only way I know of to preserve order in dictionaries in lua is to make key value pairs actual tuples indexed numerically
i.e.
mylist={
{a, "123"},
{b, "234"}
}
In this table, the keys are …