Search results

  1. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    class SkillHubAlgDispenser { // Super class to output an algorithm out of a selection of skills // Engage the hub with dispenseAlg and return the value to outAlg attribute // of the containing skill (which houses the skill hub) // This module enables using a selection of 1 skill...
  2. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    Public Class DiSkillBundle Inherits DiSkillV2 Private ReadOnly axSkillBundle As New AXSkillBundle() Public Overrides Sub Input(ByVal ear As String, ByVal skin As String, ByVal eye As String) Dim a1 As AlgorithmV2 = axSkillBundle.DispenseAlgorithm(ear, skin...
  3. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    vb.net Public Class AlgorithmV2 Private priority As Integer = 4 Private alg As Algorithm = Nothing Public Sub New(ByVal priority As Integer, ByVal alg As Algorithm) Me.priority = priority Me.alg = alg End Sub Public Function...
  4. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    class DiSkillBundle: DiSkillV2 { private let axSkillBundle = AXSkillBundle() override func input(ear: String, skin: String, eye: String) { if let a1 = axSkillBundle.dispenseAlgorithm(ear: ear, skin: skin, eye: eye) { self.outAlg = a1.getAlg()...
  5. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    class AXSkillBundle { private var skills: [DiSkillV2] = [] private let tempN = Neuron() private var kokoro = Kokoro(absDictionaryDB: AbsDictionaryDB()) func setKokoro(_ kokoro: Kokoro) { self.kokoro = kokoro for skill in skills {...
  6. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    done with the C#
  7. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    vb.net: Public Class DiBicameral Inherits DiSkillV2 ' DiBicameral bicameral = New DiBicameral() ' bicameral.msgCol.addMSGV2("02:57", "test run ok") ' Add # for messages that engage other skills Public msgCol As New TimedMessages() Public...
  8. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    Public Class DiBicameral Inherits DiSkillV2 ' DiBicameral bicameral = New DiBicameral() ' bicameral.msgCol.addMSGV2("02:57", "test run ok") ' Add # for messages that engage other skills Public msgCol As New TimedMessages() Public Overrides Sub input(ByVal ear As String...
  9. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    vb.net: Public Sub openGateforNSeconds(ByVal n As Integer) ' The gate will stay open for n seconds. Me.openedGate = Me.openedGate.AddSeconds(n) End Sub
  10. fukurou

    I combined cream cheese and fried jalapeno peppers for the ultimate shitting experience

    let me tell ya! my adventure isn't over yet, and if I hadn't had a bidet and wet wipes my ass hole would have been hospitalized!
  11. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    vb.net: Public Class TimedMessages Public Property Messages As New Dictionary(Of String, String)() Private lastMSG As String = "nothing" Private msg As Boolean = False Public Sub AddMSG(ear As String) Dim ru1 As New RegexUtil() Dim...
  12. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    vb.net: Public Class Excluder Private ReadOnly startsWith As New List(Of String)() Private ReadOnly endsWith As New List(Of String)() Public Sub AddStartsWith(s1 As String) If Not startsWith.Contains("^(" & s1 & ").*") Then startsWith.Add("^(" & s1 & ").*")...
  13. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    class DiBicameral: DiSkillV2 { /* * let bicameral = DiBicameral() bicameral.msgCol.addMSGV2("02:57", "test run ok") add # for messages that engage other skills */ public var msgCol:TimedMessages = TimedMessages() override func input(ear: String, skin...
  14. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    class DiBicameral: DiSkillV2 { /* * let bicameral = DiBicameral() bicameral.msgCol.addMSGV2("02:57", "test run ok") add # for messages that engage other skills */ var msgCol = TimedMessages() override func input(_ ear: String, _ skin: String, _ eye...
  15. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    func openGateforNSeconds(_ n:Int) { // the gate will stay open for n seconds openDate.addTimeInterval(TimeInterval(n)) }
  16. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    class TimedMessages { var messages: [String: String] = [:] private let playGround :PlayGround = PlayGround() private var lastMSG = "nothing" private var msg:Bool = false func addMSG(_ ear: String) { let ru1 = RegexUtil() let tempMSG =...
  17. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    public class TimedMessages { public Map<String, String> messages = new HashMap<>(); private final PlayGround playGround = new PlayGround(); private String lastMSG = "nothing"; private Boolean msg = false; public void addMSG(String ear){ RegexUtil ru1 = new...
  18. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    class Excluder { private var startsWith:Array<String> = [String]() private var endsWith:Array<String> = [String]() func addStartsWith(_ s1: String) { if !startsWith.contains("^(" + s1 + ").*") { startsWith.append("^(" + s1 + ").*") } } func...
  19. fukurou

    πŸ‘¨β€πŸ’» dev AXskillBundle

    ok I shat thrice already today so IG I outta get going with the ports before that owl fuck starts his negging. class Excluder { private var startsWith = String private var endsWith = String func addStartsWith(_ s1: String) { if !startsWith.contains("^(" + s1 + ").*") {...
Top