Latest activity

  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Skill: def __init__(self) -> None: # Initialize protected attributes self.kokoro: Optional['Kokoro'] = None #...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    skill original class Skill: def __init__(self): # The variables start with an underscore (_) because they are protected...
  • 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...
Top