Search results

0

Dear Cupid,

Can you please aim a quiver's worth of arrows at some companies so they would send me a job interview invites? Please. I'm a lonely heart still looking for work (in all the wrong places), but no one is sharing the love. I know a variety of languages like English, French, , , #, , or . Been looking to polish some too. I make for a great work date on any flavour of or , but (it never works like in the commercials and eats batteries galore).

Send me a job love letter for Valentine's Day, please?

snert.com/resume/

0

💎 Another gem silently released within r2-6.0.8 was carefully crafted by @oleavr who tweaked the build system to get an XCFramework ready to be used for iOS and macOS development 🍎

That's compiled in the GitHub CI and ships the most common libraries and plugins of to create native apps in

The SwiftyR2 repository provides an easy, safe and asynchronous API that's based on top of the zero-dependency and self-contained libraries of (which are also directly available from Swift without the need to create wrappers or bindings).

👉 Check this out! github.com/radareorg/SwiftyR2
⭐️ r2-6.0.8 github.com/radareorg/radare2/r

0

Here's the customary : i'm into and tolerate C++ on a daily basis at work, i've also used others like java, kotlin, python, PHP, etc and am curious about , and .

My dislike of jenkins is only surpassed by my hate of githubactions and everything MS-related. AI is not I, only A. I'm interested in stuff but atm that's a VPS with some sites, which doesn't really count. For now is quite useful and is on the horizon once i reformat/reinstall my current (i'll keep the root aproach and am on the fence regarding or ), would be interesting to have a barebones /#QEMU running all the stuff and i digress.

kthxbai\0

0
0

Commitin programming crimes }:->

Few weeks ago I seriously looked to the mine OpenHAB installation and asked a question for myself: "Am I really need it?" Look, I have a few ZigBee devices, which are connected to the my server with the help of ZigBee2MQTT. Thusly, all necessary values and knobs are accessible through the MQTT topics.

And I'm using the OpenHAB (big Java application which eats ton's of RAM and constantly swapping) just to:
1) Read values from MQTT topic
2) Read weather forecast from Open-Meteo through simple REST API endpoints
3) Store all the data to the PostgreSQL DB.
4) Display these data in the nice Web page which works only in browsers with JS engine.

So, basically, I trade tons of RAM and processing power just for a nice web-page with few indicators. While retrieving data from my ZigBee devices processed by the another service.

After that thought, I started to think about replacing this monster with small hand-written program, which will not eat 700 MB of RAM. Just Nginx, small FastCGI script on C, which will read values from DB and display them on the simple HTML page. And another small daemon (also written in C) which will take data from MQTT topic (and from REST API of Open-Meteo) and will write them to the DB. And possibly some PGSQL procedures to analyze these data.

At least I'll have fun :drgn_happy_blep:

Emacs buffer with some C code, which spews out the string with HTML, with substituted values for temperature and humidity.
0

++

I have this c++ code:
```
...
stringstream stream("23.4f");
float f;
char c;
stream >> f;
stream.get(c);
cout << "Float = " << f << endl << "Character = " << c << endl;
...
```

In ideone.com it works as expected (f = 23.4, c = 'f'). But when I have a code, that should be essentially equivalent, and I compile it with em++ (emscripten), I get f = 0 & failed stream. What could be causing this problem?

0