fukurou's latest activity

  • fukurou
    fukurou updated their status.
  • fukurou
    fukurou updated their status.
  • fukurou
    fukurou updated their status.
  • fukurou
    class ElizaDBWrapper { // this (function wrapper) class adds save load functionality to the ElizaDeducer Object /*...
  • fukurou
    class ElizaDeducerInitializer: ElizaDeducer { init(lim: Int) { // recommended lim = 5; it's the limit of responses per key...
  • fukurou
    class ElizaDeducer { /* * this class populates a special chat dictionary * based on the matches added via its...
  • fukurou
    class EventChatV2 { private var dic: [String: LimUniqueResponder] = [:] private var modifiedKeys: Set<String> = [] private...
  • fukurou
    class LimUniqueResponder { private var responses: [String] = [] private var urg: UniqueRandomGenerator private let lim: Int...
  • fukurou
    fukurou replied to the thread Eliza C# port.
    public class ElizaDBWrapper { // This (function wrapper) class adds save/load functionality to the ElizaDeducer Object. //...
  • fukurou
    fukurou replied to the thread Eliza C# port.
    using System; public class ElizaDeducerInitializer : ElizaDeducer { // Constructor public ElizaDeducerInitializer(int lim) ...
  • fukurou
    fukurou replied to the thread Eliza C# port.
    using System; using System.Collections.Generic; using System.Text.RegularExpressions; public class ElizaDeducer { // This class...
  • fukurou
    fukurou replied to the thread Eliza C# port.
    public class EventChatV2 { private readonly Dictionary<string, LimUniqueResponder> dic = new Dictionary<string...
  • fukurou
    fukurou posted the thread Eliza C# port in chit chat.
    public class LimUniqueResponder { private List<string> responses; private UniqueRandomGenerator urg = new...
  • fukurou
    fukurou replied to the thread eliza port vb.aSS.
    Public Class ElizaDBWrapper ' This (function wrapper) class adds save/load functionality to the ElizaDeducer Object. ' Example...
  • fukurou
    fukurou replied to the thread eliza port vb.aSS.
    Public Class ElizaDeducerInitializer Inherits ElizaDeducer ' Constructor Public Sub New(lim As Integer) '...
Top