fukurou's latest activity

  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Algorithm: def __init__(self, algParts: list[Mutatable]) -> None: super().__init__() self.algParts...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Algorithm: def __init__(self, *args: Mutatable) -> None: super().__init__() if len(args) == 1 and...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    prechange py: class Algorithm: def __init__(self, algParts: list[Mutatable]): # list of Mutatable super().__init__()...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Algorithm: def __init__(self, *algParts): # Handle both a list input and variable arguments if len(algParts)...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Algorithm: def __init__(self, *algParts): # Handle both a list input and variable arguments if len(algParts)...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Algorithm: def __init__(self, *algParts): # Check if a single argument is a list, otherwise use variable arguments...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class APVerbatim: def __init__(self, *sentences): # Initialize with either a list of sentences or a variable number of...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Skill { constructor() { this.kokoro = null; // Consciousness, shallow ref class for interskill communications...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Algorithm { constructor(algParts) { // Handle both Array input and variable arguments (rest parameters)...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class APVerbatim extends Mutatable { constructor(...sentences) { super(); this.sentences =...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    public class Skill { protected Kokoro kokoro = null; // consciousness, shallow ref class to enable interskill communications...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    Public Class Skill Protected kokoro As Kokoro = Nothing ' consciousness, shallow ref class to enable interskill communications...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    Public Class Skill ' Protected fields Protected kokoro As Kokoro = Nothing ' Consciousness, shallow ref class for interskill...
Top