• Erwindo Sianipar
    Interaction designer
    Software Engineer
  • blog
    craft
    portfolio
    snippet
    guestbook
    update
    login

Snippet

Keep it here for what just I learned

ES
Caritas in VeritateMade with love from Jakarta
© 2019-2025 Erwindo Sianipar. All Rights Reserved.
termspoliciescookiesanalytics
  • Skip verify emitted module

    Build XCFramework and skip verifier emitted
    February 14, 2025
  • CSS Word Break

    Force breaking very very long text
    February 13, 2025
  • Umami Analytics

    Umami analytics in NodeJS
    February 12, 2025
https://stackoverflow.com/questions/75929888/xcode-14-3-failed-to-verify-module-interface-of-project
active
active
title
Skip verify emitted module
subtitle
Build XCFramework and skip verifier emitted
tags
Swift
published
Feb 14, 2025
xcodebuild archive \ -scheme '$FRAMEWORK_NAME' \ -destination 'generic/platform=iOS' \ -archivePath '$ARCHIVE_PATH' \ -workspace '$PACKAGE_PATH' \ SKIP_INSTALL=NO \ BUILD_LIBRARY_FOR_DISTRIBUTION=YES \ ENABLE_USER_SCRIPT_SANDBOXING=NO \ ENABLE_MODULE_VERIFIER=NO \ OTHER_SWIFT_FLAGS=-no-verify-emitted-module-interface
active
active
title
Umami Analytics
subtitle
Umami analytics in NodeJS
tags
NodeJS
published
Feb 12, 2025
import umami from "@umami/node"; umami.init({ websiteId: "", hostUrl: "" }); umami.track({ url: "/path" });
https://umami.is/docs/install
active
active
title
CSS Word Break
subtitle
Force breaking very very long text
tags
CSS
published
Feb 13, 2025
In Tailwind you can just put break-all at word-break property
<div class="word-break: break-all"> Some very very long text </div>
https://developer.mozilla.org/en-US/docs/Web/CSS/word-break