Search results

  1. fukurou

    🎮gaming nintendo switch megathread

    transfer user from old to new switch
  2. fukurou

    rumour booster redout 2

  3. 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 {...
  4. fukurou

    hologram tech

  5. fukurou

    random numbers

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

    How to Record Screen With Audio on MacBook

  7. fukurou

    🐦swift swift grimoire

  8. fukurou

    Learn How To Use iMovie In 5 Minutes

  9. 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...
  10. fukurou

    livingrimoire memes

  11. fukurou

    cloth folding tutorial

  12. fukurou

    🏕️offgrid build hobbit house

  13. fukurou

    xcode : view without any layout constraint may clip

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

    honkai impact

  15. fukurou

    GitHub Wiki

  16. fukurou

    sliders test

    sliders
  17. fukurou

    XCode grimoire

    new app project create a new Xcode project, or: file, new, project(shift + n), choose the app template on choose options for your new project set interface to STORYBOARD organization identifier example : ninja.site_name or com.name if you have no site choose a dir to save projects into in...
  18. fukurou

    publishing a python library

    create a .pypirc in home folder create account on pypi.org fill in pypirc file : [distutils] index-servers = pypi pypitest [pypi] repository: https://upload.pypi.org/legacy/ username: username password: userpass [pypitest] repository: https://testpypi.python.org/pypi username: username...
  19. fukurou

    Github: How to collaborate on Github

Top