« first day (2220 days earlier)   

1:06 AM
>>wotd
 
The word of the day is: spoils of war (n): https://en.wiktionary.org/wiki/spoils_of_war

1. Any profits extracted as the result of winning a war or other military activity.
 
 
2 hours later…
3:21 AM
<(?:"[^"]*"['"]*|'[^']*'['"]*|[^'">])+>
 
4:08 AM
!!/help
 
@LearnHowToBeTransparent Information on interacting with me can be found at this page
 
!!/eval "something offensive"
 
@LearnHowToBeTransparent "something offensive"
 
yeah! i made the bot say something offensive!!!!
 
 
8 hours later…
12:04 PM
>>help
 
>>define: Search for meaning of word (on Wiktionary)
>>greet: Given a space-separated list of usernames, greet those users.
>>help: Syntax: `help` or `help <cmd>`. If cmd supports arguments, `help <cmd> <cmd-args>` may be possible
>>kaomoji: Display list of kaomojis supported. With `kaomoji all`, even aliases will be displayed.
>>meta: Search Meta Stack Overflow and Meta Stack Exchange for a query.
>>pause: Given `>>pause 4 minutes`, stop listening for commands for 4 minutes. Many time units are supported. This is a RO-only command.
 
>>xkcd
 
>>yt
 
 
2 hours later…
2:09 PM
OakBot Online.
 
Loquitor Offline.
 
2:42 PM
>>translate test to German
 
@zondo Test
 
Yay!
 
٩(^ᴗ^)۶
 
 
3 hours later…
5:27 PM
Test
 
# Selection Sort

# Initialize array
array.init a
array.push a 3 2 4 5 1
array.tostring a
array.length a
let n %retval

# Start the outer loop
let i 0
if i >= n goto loop1end
loop1:
  let min :i

  # Start the inner loop
  add :i 1
  let j %retval
  if :j >= :n goto loop2end
  loop2:
    # Equivalent to aj = a[j], amin = a[min]
    array.get a :j
    let aj %retval

    array.get a :min
    let amin %retval

    # If a[j] < a[min] min = j
    if :aj < :amin let min :j

    # j++, continue loop if j < n
 

« first day (2220 days earlier)