Chandram Duttablogs.onlychan.xyz·Sep 10, 2024Importing C Libraries in Swiftfind the code here https://github.com/Chandram-Dutta/SwiftRaylib/ After watching Tsoding struggle with importing a C Library (raylib) in his recent stream. I decided to make the process easier and more straightforward for developers. I totally agree...45 readsSwift
TheComputerMthecomputerm.hashnode.dev·Aug 20, 2024Dirty Deeds Done Dart Cheap, experiments with dart2wasmAs developers, we all love carefully crafted packages and API wrappers that make the process of programming more streamlined, yet there is a certain beauty to patching together something hacky with some bandages and seeing it work. FFIgenPad was one ...38 readsDart
Harish Kunchalaharishkunchala.com·Jul 16, 2024How to use Dart FFI for writing C codeWhat is FFI? Foreign Function Interface (FFI) allows a program written in one language to call functions or services written in another language. In Dart FFI is used to call native C functions and libraries, thus enhancing the app's capabilities by...Dart
Arjun Adhikaripythonislove.com·Feb 6, 2024Supercharge Your Python Apps with RustWelcome to our latest exploration, where we dive into the thrilling world of combining the raw power of Rust with the versatility of Python to elevate your programming projects to unprecedented levels of efficiency and performance. In "Supercharge Yo...10 likes·355 readsPythonPython
Raineraineyang.hashnode.dev·Dec 30, 2023Rust Learning Note: Unsafe RustThis article is a summary of Chapter 4.9.1 of Rust Course (course.rs/) Code inside unsafe allows behaviors that are not permitted by the compiler in safe Rust, including: Dereferencing a raw pointer Invoking an unsafe or external function accessin...unsafe
Srikanth Anantharamblog.srikanth.one·Dec 4, 2022A tutorial for accessing C/C++ functions within a shared library (.dll/.so/.dylib) from Rust[19-09-2023] Updates: Add instructions and code for an alternative way to build and run using build.rs and cmake-rs Fix the reason why not to link to C++ functions directly Include <cstring> in the code and use free instead of delete as strdup gen...2.4K readsRust
Matt Mulfordmattmulford.hashnode.dev·Nov 18, 2022Calling Rust From Node.js - FFII was recently bitten by the Rust bug. Its wild ideas have consumed me and I am forever changed. But unfortunately, most of what I do is better served by another language but I still want to dabble. I got much further down the rabbit hole than I inte...1 like·487 readsRust
Lucas Náiadelucasnaiade.dev·Nov 7, 2022Flutter + Golang : código nativo direto da fonteIntrodução Depois de contribuir para um package da comunidade(por ex. flutter_zxing) tive a curiosidade de me aprofundar mais em como chamar código nativo direto de um projeto Dart, e também estou tendo cada vez mais interesses em linguagens como Rus...170 readsFFI