- 65 Posts
- 50 Comments
trymeout@lemmy.worldOPto
Rust@programming.dev•Bash Script to compile a single rust script, execute the binary and delete the binaryEnglish
22·1 year agoIt could be done with a one liner in the terminal but adding arguments when running the binary will be in the middle of the command, not at the end of the command.
Also the usecase for me is for sample scripts I have. This makes it easy to compile, run and delete the binary.
trymeout@lemmy.worldOPto
Open Source@lemmy.ml•FluxTube | Flutter/Dart YouTube Client! | This could be the new NewpipeEnglish
1·1 year agoI knew of Grayjay but did not know it was open source now. A lot of the app is written in Kotlin which is promising for cross platform
trymeout@lemmy.worldOPto
Open Source@lemmy.ml•FluxTube | Flutter/Dart YouTube Client! | This could be the new NewpipeEnglish
1·1 year agoCross platform
trymeout@lemmy.worldOPto
Open Source@lemmy.ml•FluxTube | Flutter/Dart YouTube Client! | This could be the new NewpipeEnglish
1·1 year agoNone of the are available for both mobile and desktop
trymeout@lemmy.worldOPto
Open Source@lemmy.ml•FluxTube | Flutter/Dart YouTube Client! | This could be the new NewpipeEnglish
2·1 year agoIt can be cross platform. On mobile and desktop
trymeout@lemmy.worldOPto
Open Source@lemmy.ml•FluxTube | Flutter/Dart YouTube Client! | This could be the new NewpipeEnglish
2·1 year agoTrue. I did make a feature request to have the Newpipe Extractor in the app
Would like to see an Android version as well that has its own F-Droid repo
trymeout@lemmy.worldOPto
linux4noobs@programming.dev•Is it possible to debug a bash script using a debugger in attached mode? For debugging scripts on the host machine and scripts inside a docker container?English
1·1 year agohttps://marketplace.visualstudio.com/items?itemName=rogalmic.bash-debug
This is the extension I am using.
VSCodium > VSCode
trymeout@lemmy.worldOPto
Golang@programming.dev•VSCode: Debugging Attached Process does not workEnglish
1·1 year agoI’ll look up my notes tomorrow and post more details.
Thank you. Been struggling to get my IDE setup for go development.
trymeout@lemmy.worldOPto
Go programming language discussion@lemmy.ml•VSCode: Debugging Attached Process does not workEnglish
1·1 year ago"console": "integratedTerminal"also works! Thank you?Do you have a simple setup guide on how to get debugging to work with Go inside a docker container?
trymeout@lemmy.worldOPto
Golang@programming.dev•VSCode: Debugging Attached Process does not workEnglish
1·1 year agoThis solution does with when using a launch request in the config. Thank you
Do you have a simple guide by chance on how to get debugging to work inside a docker container using VSCode?
I think stablecoins will always have a centralized point of failure. Weather it is an algorithm, or having the coin backed by the actual asset.
I think the best stablecoins are backed by the asset 1 to 1 or a little more then 1 to 1. Most stablecoins that do this are token on smart chain contracts which have another vulnerability which is being a smart contract. Smart contracts could contain a vulnerability and if it does have a vulnerability, a new contract will need to be made and users will have to switch their old token to the new tokens. Also censorship is an issue. https://cryptonews.com/news/tether-takes-action-blacklists-validator-address-linked-25-million-mev-bot-drain-heres-what-happened.htm
And these stablecoins are not private. The only private stablecoin platform out there is Haven but Haven assets are not backed 1 to 1.
I hope there are plently of stablecoins issued on Zano in the future. Zano allows you to create an asset without creating a smart contract. All assets on Zano are private. I would like to see Tether, USDC and other issue stablecoins on Zano. Trusting the issuers on backing the stablecoin and trusting the issuer to secure their private keys to prevent hackers from inflating the asset will be the only vulnerabilities, but you will have privacy and a censorship resistant stablecoin!
If the AgoraDesk source code is released? Maybe? It can help anyone who wants to create a P2P trading platform. I think Haveno is written in Java and I have a hunch that AgoraDesk back end is not in Java.
https://github.com/AgoraDesk-LocalMonero/agoradesk-app-foss/issues/296
I hope AgoraDesk/LocalMonero will release all of their source code for their platform after they shutdown to allow anyone to fork it and start their own platform without having to build a platform and app from scratch
https://github.com/AgoraDesk-LocalMonero/agoradesk-app-foss/issues/296
Please upvote this issue if you want to see all the source code for AgoraDesk/LocalMonero be released!
trymeout@lemmy.worldOPto
Web Development@programming.dev•Do we need Live Reload (Watch) in bundlers?English
2·2 years agoWhy could a build take 5 minutes? Is it due to the size of your project or the language the bundler is written in (JavaScript being a slower option over Rust)?
The explore feature for the local instance has been made!!!
Please add the explore feature to explore the entire fediverse!
trymeout@lemmy.worldOPto
linux4noobs@programming.dev•Server/Headless Linux: enable automatic login to a user on boot but when the user logs out, it will not re-login back into the user?English
1·2 years agoChanging
Type=oneshotand addingRemainAfterExit=yesunderneath does not allow me to boot into my system. I get this as the last terminal message[ OK ] Reached target Cloud-init target.No biggie to fix since I did this in a Virtual machine and could restore to an older snapshot.










Thank for sharing rust-script which is basically what I made but written in Rust and seems to store the binary in another directory when the binary is exexuted.
Is the RFC trying to introduce a command
cargo scriptto run single rust scripts?