Skip to content
View K1NXZ's full-sized avatar

Organizations

@GetOhsome
Block or Report

Block or report K1NXZ

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. EnvShare-CLI EnvShare-CLI Public

    A CLI to share your environment variables with your team quickly.

    JavaScript 3

  2. TOTPGen TOTPGen Public

    TOTPGen is a lightweight and open-source web tool developed with Vite, React, and shadcn/ui, designed specifically for developers. It enables developers to save TOTP (Time-based One-Time Password) …

    TypeScript 4

  3. GetOhsome/express-zod GetOhsome/express-zod Public

    TypeScript 1

  4. GetOhsome/JSONlize GetOhsome/JSONlize Public

    A simple swift package for localizing your apps from JSON files with easy plural and dictionary handling.

    Swift 1 1

  5. Unretained operators for the Combine... Unretained operators for the Combine-Framework in Swift
    1
    extension Publisher where Failure == Never {
    2
    	func withUnretained<Root: AnyObject>(_ obj: Root) -> AnyPublisher<(obj: Root, value: Self.Output), Never> {
    3
    		let mapped = compactMap({ [weak obj] value -> (obj: Root, value: Self.Output)? in
    4
    			guard let obj = obj else { return nil }
    5
    			return (obj: obj, value: value)