Search results

  1. fukurou

    🐍 python playground class

    # the PlayGround cls is not a core class but very useful class enumTimes(Enum): DATE = auto() DAY = auto() YEAR = auto() HOUR = auto() MINUTES = auto() SECONDS = auto() class PlayGround: def __init__(self): self.week_days = {1: 'sunday'...
  2. fukurou

    current progress LG python to swift

    // // LivinGrimoire.swift // LivinGrimoireSwiftV1 // // Created by fuki barski on 21/06/2022. // import Foundation class AbsDictionaryDB{ func save(key:String, value: String){ // save to DB (override me) } func load(key:String)->String{ // override me...
  3. fukurou

    🏕️offgrid in comfort

  4. fukurou

    🎮gaming nintendo switch megathread

    transfer user from old to new switch
  5. fukurou

    rumour booster redout 2

  6. fukurou

    🐦swift Left side of mutating operator isn't mutable: 'self' is immutable

    struct Person { // define two properties var name = "" var age = 0 func birthday(){ age += 1 } } // create instance of Person var person1 = Person() birthday attempts to change the struct from within the struct so you need to add the prefix mutating : struct Person {...
  7. fukurou

    hologram tech

  8. fukurou

    random numbers

    https://www.khanacademy.org/computing/computer-science/cryptography/crypt/v/random-vs-pseudorandom-number-generators
  9. fukurou

    How to Record Screen With Audio on MacBook

  10. fukurou

    🐦swift swift grimoire

  11. fukurou

    Learn How To Use iMovie In 5 Minutes

  12. fukurou

    🐦swift xcode how to set an image views picture

    using image literal to set the image views picture is a blatant lie all it does is error you need this code : import UIKit class ViewController: UIViewController { @IBOutlet weak var imgDice1: UIImageView! override func viewDidLoad() { super.viewDidLoad() // Do any...
  13. fukurou

    livingrimoire memes

  14. fukurou

    cloth folding tutorial

  15. fukurou

    🏕️offgrid build hobbit house

  16. fukurou

    xcode : view without any layout constraint may clip

    "view without any layout constraint may clip" glitch fix : and choose add missing constraints
  17. fukurou

    honkai impact

  18. fukurou

    GitHub Wiki

  19. fukurou

    sliders test

    sliders
Top