Search results

  1. fukurou

    🎮gaming gaming setups

  2. fukurou

    arcade hori joy con for nintendo switch

    @ZORO
  3. fukurou

    [MEDIA]

  4. fukurou

    🐦swift swift grimoire

  5. 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)...
  6. 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...
  7. 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...
  8. 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...
  9. fukurou

    🐍 python regex util class

    ''' REGEXUTIL CLASS''' # returns expression of type theRegex from the string str2Check class RegexUtil: def regexChecker(self, theRegex: str, str2Check: str) -> str: regexMatcher = re.search(theRegex, str2Check) if (regexMatcher != None): return...
  10. 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'...
  11. 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...
  12. fukurou

    🏕️offgrid in comfort

  13. fukurou

    🎮gaming NINTENDO switch

    based
  14. fukurou

    [MEDIA]

  15. fukurou

    [MEDIA]

  16. fukurou

    🎮gaming nintendo switch megathread

    arcade hori joystick
  17. fukurou

    🎮gaming nintendo switch megathread

    NINTENDO SWITCH: How to connect a wireless controller
  18. fukurou

    🎮gaming nintendo switch megathread

    transfer user from old to new switch
  19. fukurou

    🐦swift swift grimoire

    optionals crate a new Xcode project->macOS tab-> command line optional binding let myOptional:String? = "hadoken" // transform optional to actual variable (optional binding) if let safeOptional = myOptional { let text:String = safeOptional print(text) } nil coalescing operator : let...
Top