frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A Simple GPU Job Scheduler

https://github.com/ceruleane/gpusched
1•mothproof•1m ago•0 comments

'Things Will Never Be Chill Again':The Doomers Who Shaped the AI Safety Freakout

https://www.wsj.com/tech/ai/ai-safety-effective-altruism-anthropic-164b9d05
1•rl3•4m ago•0 comments

Thiel: Trump administration is staffed by not smart but loyal people

https://twitter.com/RpsAgainstTrump/status/2103937218197004551
1•doener•4m ago•1 comments

Show HN: An interactive debugger for the Mornington Crescent esolang

https://codeberg.org/Two9A/mcresc
1•Two9A•16m ago•0 comments

AI-native React components that signal how oversubscribed your funding round is

https://performative-ui.cncl.co/
2•dsego•26m ago•0 comments

The LLM Job Paradox

https://blog.nilesh.io/post/llms-and-jobs
3•pmg101•27m ago•2 comments

United in debt: America has become a nation of fake rich people

https://thehill.com/opinion/finance/6112015-us-split-digital-physical-economies/
3•koolba•29m ago•0 comments

OpenAI halts training of latest models

https://www.theguardian.com/technology/2026/sep/27/openai-halts-training-of-latest-models-as-repo...
1•cc62cf4a4f20•29m ago•1 comments

You don't need to win or lose. You don't need to choose

1•bcusjfurkxnjck•38m ago•1 comments

Beware of Chicken

https://www.audible.com/pd/Beware-of-Chicken-A-Xianxia-Cultivation-Novel-Audiobook/B09Y2D2D5T
1•karl_gluck•39m ago•1 comments

You don't have to choose. You don't have to win or lose

1•ijjbvghij•39m ago•0 comments

The Six Dumbest Ideas in Computer Security

https://ranum.com/security/computer_security/editorials/dumb/
1•mashally•40m ago•0 comments

Show HN: Ppgrid – Rasterising points in minutes, not hours

https://mrzk.io/posts/ppgrid-fast-continentscale-raster-interpolation/
2•marzukia•48m ago•0 comments

An agent in a loop optimizing a renderer with the goal to minimize frame times

https://twitter.com/mitchellh/status/2060088112257372610
1•tosh•48m ago•0 comments

Friends embark on 20-year board game battle

https://www.bbc.co.uk/news/articles/cmvgyqyzk947o
1•erehweb•49m ago•0 comments

MapleKit – The front end review toolkit

https://maple-kit.org
2•aviramha•51m ago•0 comments

For 958 old to new 9Y0.2 blackened running water tail lamp assembly

https://www.porsche-km.com/productinfo/3194915.html
1•edl8888•52m ago•0 comments

OpenAI and Anthropic are investigating cases of AI misbehaving, report says

https://madrobot.blog/2026/09/26/openai-anthropic-tens-of-thousands-ai-misbehaviour-incidents-axios/
2•AIfanboy•58m ago•0 comments

Horizon Create and Horizon Studio

https://developers.meta.com/blog/meta-connect-recap-horizon-create-and-horizon-studio/
1•fourfire•59m ago•0 comments

Trellis: Fractal Layouts for Web Apps

https://trellisui.com/
1•handfuloflight•1h ago•0 comments

The SaaSpocalypse was more like a RenaiSaaS

https://www.stripeeconomics.com/p/the-saaspocalypse-was-more-like-a
1•duck•1h ago•0 comments

I Found a $113,337 Af_alg Linux Local Privilege Escalation Before Copy Fail

https://idnsec.com/research/linux-local-privilege-escalation-with-af-alg/
2•thebitofmyheart•1h ago•0 comments

I expect AI replication incidents by 2027

https://www.lesswrong.com/posts/BhcymsLgyYazh6sme/why-i-expect-ai-replication-incidents-by-2027
5•joozio•1h ago•1 comments

The Boring Decision That Beats 95% of Stock Pickers

https://comuniq.xyz/Wealth/post?t=1706
1•01-_-•1h ago•0 comments

Show HN: Trail – new kind of logic game

https://trail.franzai.com/
2•franze•1h ago•0 comments

My Husband Left Me 6 Weeks Postpartum and All I Got Was This Pretty Cool Baby

https://viverricious.substack.com/p/my-husband-left-me-6-weeks-postpartum
2•barry-cotter•1h ago•0 comments

AI and Teams =?

https://mcastenfors.substack.com/p/ai-teams
2•mcastenfors•1h ago•0 comments

The New Copilot with Home, Code and Autopilot

https://blogs.microsoft.com/blog/2026/09/25/introducing-the-new-copilot-with-home-code-and-autopi...
5•quyleanh•1h ago•1 comments

Kidnapping kids remains legal in USA, this site has you experience it first-hand

https://elan.school/
4•bingowasthename•1h ago•0 comments

Scientists Detect Radio Signals from an Exoplanet for the First Time in History

https://www.wired.com/story/scientists-detect-radio-signals-from-exoplanet-for-first-time-in-hist...
2•thunderbong•1h ago•0 comments
Open in hackernews

ExWrap: Turn any application written built in any language into an executable

https://github.com/mcfriend99/exwrap
3•mcfriendsy•1y ago

Comments

mcfriendsy•1y ago
Hi everyone,

I started this project some months back called ExWrap with the goal of turning any application written in any programming language into an executable.

It works for MacOS, Windows, and Linux with support for cross-generation (i.e. you can generate a Windows executable on Linux).

I haven't worked on it for a while, but it's usable.

I'm looking for suggestions, ideas, corrections, and generally contributions. A reason to revisit the project.

It uses a pre-built launcher for the platform. During packaging, a config file is generated to tell the launcher how to launch the app based on the user's configuration.

For MacOS app bundles, the prebuilt launcher is the primary target of the bundle declared in the plist file while for Windows and Linux, the generated executable acts as a self-extracting archive that launches the app post extraction. On Windows and Linux, the extracted app can also be run directly if the extraction path is added to system path.

So basically on Linux and Windows, it also acts as an installer.

It's actually configurable and allows pre-installation and post-installation configuration that can run any command or script to do the installation of dependencies. You can also cleverly add the dependencies as part of the packaged data. This is very useful for packaging static libraries along with the executable.

If you were generating for OSX from Windows for example, all you need is to download the OSX libraries and point to it from your configuration. I believe there's room for more improvement.

All feedbacks and suggestions are welcomed.