Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    💰moneymaxing fighting skills

  3. fukurou

    [MEDIA]

  4. fukurou

    nintendo switch redout 2 how to drift hard solved

    use left stick to steer left or right and right stick pointed up and (left or right) to drift tight corners
  5. fukurou

    💰moneymaxing bonds

  6. fukurou

    💰moneymaxing bonds

  7. fukurou

    💰moneymaxing investing in commodities

  8. fukurou

    🐦swift LivinGrimoire swift version added

    so yeah there is also a swift version of the living grimoire Artificial General Intelligence software design pattern it took much less time to translate than I had thought, about 1 month, well if you don't count the time it took to learn swift. swift is very much similar to python syntax wise...
  9. fukurou

    LivinGrimoire swift version added

    so yeah there is also a swift version of the living grimoire Artificial General Intelligence software design pattern it took much less time to translate than I had thought, about 1 month, well if you don't count the time it took to learn swift. swift is very much similar to python syntax wise...
  10. fukurou

    [MEDIA]

  11. fukurou

    [MEDIA]

  12. fukurou

    🎮gaming gaming setups

  13. fukurou

    🎮gaming gaming setups

  14. fukurou

    arcade hori joy con for nintendo switch

    @ZORO
  15. fukurou

    [MEDIA]

  16. fukurou

    🐦swift swift grimoire

  17. fukurou

    regex example

    func extractEmailAddrIn(text: String) -> [String] { var results = [String]() let emailRegex = "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,6}" let nsText = text as NSString do { let regExp = try NSRegularExpression(pattern: emailRegex, options: .caseInsensitive)...
  18. fukurou

    get future / past time

    func getFutureInXMin(extra_minutes: Int) -> String { // '''This method returns the date in x minutes''' if extra_minutes > 1440 {return "hmm"} let nowSum = getHoursAsInt()*60 + getMinutesAsInt() var dif = nowSum + extra_minutes if dif > 1440...
  19. fukurou

    remaining issues

    let playGround = PlayGround() print(playGround.getCurrentTimeStamp()) // at 6:09 the output was 6:9, it should be 6:09 print(playGround.getFutureInXMin(extra_minutes: 60)) // shows minutes + 60 instead of the time in 60 minutes print("getPastInXMin") print(playGround.getPastInXMin(less_minutes...
  20. fukurou

    errors / issues

    //playground class test let playGround = PlayGround() print(playGround.getCurrentTimeStamp()) print(playGround.getSpecificTime(time_variable: enumTimes.day)) print(playGround.getMonthAsInt()) print(playGround.getHoursAsInt()) print(playGround.getFutureInXMin(extra_minutes: 10)) // errors when...
Top