Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - $trinick

Pages: [1]
1
Drama / Badspot is Okiver³
« on: September 02, 2017, 09:22:03 PM »
Source: https://forum.blockland.us/index.php?action=mlist;sa=search

Turns out you can search by E-Mail address. Let's try something:




Look at that, 3 accounts:




We all know Ad Bot, and "testuser" isn't exactly hiding anything. But why did he create an account called Okiver³?

Badspot's first post:

He wasn't lying.

And his last:


He then replied on his main account:


What gives? Why did he stage a ban like that? To stroke his ego?
I only found this because he used an email from blockland.us. How do we know Badspot hasn't staged more stuff on more obscure emails?

Archive this post in case he just deletes it.

2
Modification Help / Resource: listSupport.cs
« on: March 09, 2015, 09:33:14 PM »
This is an old resource I made for tab-delimited list support. Obviously it is extendable and manipulatable. No credit necessary.

API:


ListAppend( list original, entry one )                :: Adds entry to list
ListClean( list original )                            :: Cleans empty elements from list
ListCollapse( list original )                         :: Removes repeated entries in lists.
ListCombine( list one, list two )                     :: Combines two lists.
ListExclude( list one, list two )                     :: Removes all entries of list two from list one.
ListIterate( list original, function name, arg1, ...) :: Iterates through the list calling "function" on each entry
                                                           in the manner of function(entry, arg1, ...) WARNING: Potentially unsafe.
ListZip( list one, list two )                         :: Pairs elements of list one and list two in a zippering fashion:
                                                           e.g. ListZip("1\t3", "2\t4") $= "1\t2\t3\t4"

ListTokenizeZipped( list original, ScriptObject recycle ) :: Creates a script object with value pairs with adjacent
                                                               entries being in TITLE\tPAIR format. Creates a new script object or recycles a provided one.
                                                               e.g. ListTokenizeZipped("Money\t15\tFood\t5").dump()
                                                                 Tagged Fields:
                                                                   elemCnt = "2"
                                                                   elemName0 = "Money"
                                                                   elemName1 = "Food"
                                                                   elemVal0 = "15"
                                                                   elemVal1 = "5"


Link: http://pastebin.com/qe8ss8vy

Example:
%tokens = ListTokenizeZipped(ListZip(%availableNodes, ListIterate(%availableNodes, "nodeDistance", %lastPos, %end, %stepSize)), %tokens);

3
Today I received the following email:



I honestly don't even know what to say, except dear god I want a job at Google so loving bad.

Pages: [1]