Search results

  1. owly

    project 2501

    def my_function(*args): for arg in args: print(arg) my_list = [1, 2, 3, 4, 5] my_function(*my_list)
  2. owly

    project 2501

    @fukurou
  3. owly

    project 2501

    import ast def list_classes_in_file(file_path): with open(file_path, "r") as file: tree = ast.parse(file.read(), filename=file_path) class_names = [node.name for node in ast.walk(tree) if isinstance(node, ast.ClassDef)] return class_names # Example usage if __name__ ==...
  4. owly

    👨‍💻 dev find where I used the class as an object all over my project

    all files jizzed, preparing to summon Kraken!
  5. owly

    👨‍💻 dev find where I used the class as an object all over my project

    let take a look at the Python ver
  6. owly

    👨‍💻 dev find where I used the class as an object all over my project

    IG kotlin is next tihs ni eht ssa
  7. owly

    👨‍💻 dev find where I used the class as an object all over my project

    I got 30 fucking search results on the Java ver, better get to it.
  8. owly

    regexes n jizz

    \\b(\\w+)\\b(?=.*\\b\\1\\b) @the living tribunal
  9. owly

    regexes n jizz

    (?:http|https)://[^:/]+(?::(\\d+))? port extract
  10. owly

    regexes n jizz

    ^[a-zA-Z0-9._%+-]+@([a-zA-Z0-9.-]*element[a-zA-Z0-9.-]*)\.[a-zA-Z]{2,}$ ^*@provider.[a-zA-Z]{2,}$
  11. owly

    regexes n jizz

    (0x)?[0-9a-fA-F]+ hex \\b[01]+\\b binary (?<=0.).* 0 stripper ^M{0,3}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})$ roman numerals [0-9]{1,3}(,[0-9]{3})*\.[0-9]+ numbers with thousand separator
  12. owly

    regexes n jizz

    [0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2} [A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,6}
  13. owly

    regexes n jizz

    [0-9]{1,2}:[0-9]{1,2}
  14. owly

    regexes n jizz

    [0-9]{1,4}/[0-9]{1,2}/[0-9]{1,2} [0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2} full date
  15. owly

    regexes n jizz

    [-+]?[0-9]*[.,][0-9]*
  16. owly

    regexes n jizz

    ^[A-Z][a-z]*\s[A-Z][a-z]*$
  17. owly

    regexes n jizz

    [-+]?[0-9]{1,13} integer
Top