Details
-
SkillsC++, Qt, Android
-
LocationGermany
Joined devRant on 2/10/2018
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
I'm currently doing something very similar to something I've done ~1.5 years ago, but my old notes/work fragments aren't really helpful
*inserts 'I have no memory of this place' meme* -
I've been struggling with the network I set up for my bachelor thesis for weeks. Today I figured out it was all caused by STP which disabled connections that I tried to use. Disabling STP solved all my problems.
The relieve is strong -
HP Switches are a clusterfuck of shit.
The command line interface seems to be designed in a way to ensure that HP support engineers will always be needed.
My supervisor and I figured it would be easier for our task to go and steal some Cisco switches from the other department to avoid having to deal with this giant pain in the ass -
A colleague of mine has built a kernel module that is part of our system. He wrote it for Linux 4.4 but in the meantime our servers got updated to 4.15. The kernel API changed from 4.4 to 4.15 so the module does not build anymore. He said he will update it, but in the mean time I figured it would be easiest to just use 4.4 in the meantime. I downloaded the kernel deb package and installed it. Now, after reboot I can't ssh into the machine any more. I just started this project and I'm already tired of it. Every time I fix something a new issue appears. And I did not even start what I am supposed to do1
-
Working with GNOME libs as a KDE developer is horrible. I'm not saying GNOME libs are worse than KDE libs, but it's like different worlds and things take 10x longer when you are not experienced with it.
-
Today Phoronix posted a short article about a (in my opinion cool) new feature I implemented in my file manager (Dolphin). Most of the feedback was positive/constructive criticism but some people attacked me personally because they don't like the feature/think "true" Linux users wouldn't use it.
I gave you something cool for free. Would you please stop bitching about it?
If you don't like it don't use it. You can even disable it if it threatens your ego as a Linux master user5 -
In todays lecture my professor told us that our city is planning to do its own cryptocurrency. Why does everyone do stuff just because it's a hype?1
-
I'm currently creating a Qt Wrapper for libpulse by extracting it from an application. The mix of C and C++ code gives me crap and I really want to punch the guy who spread templates all over the place
-
Was testing someone's PR but the change did not get loaded into the program. After 2 hours I realized that there was a comma too much in a JSON file.
Fuck this shit, and fuck this comma in particular -
For my bachelor thesis I'm working with Snort (an Intrusion Detection System). Running it on some test pcaps I get X alerts. When I switch the alert output from stdout to a file I get a different number of alerts. When I re-run it, I get yet another number of alerts (on stdout the number is always X)
Wtf?!3 -
I'm contributing to a project that allows you to control your Linux desktop from your phone. I managed to implement controlling your PCs volume form the phone. At first the code was ugly as hell, include a fucking long bash statement, but I even managed to turn it into a nice solution.
A few weeks later I was invited to meet the core developers. -
I'm working on a project that integrates your Android phone with your PC. Stuff like file transfer, sending SMS and notification sync. I just had an idea for an awesome feature. Started researching and found that the Android API exposes exactly what I need. Full of motivation I started coding until I realized that the permission I need cannot be granted to third-party apps. Happened the second time. Fml
-
The other day I was working with libpulse in a Qt project. Because I didn't like to deal with a C library from C++ code I copied wrapper code from a well-proven project. Suddenly the wildest compile errors occurred when I only tried to include a header from the new code. After hours of frustration towards me, C++, the compiler and everything involved I discovered that one of the headers I copied had the same include guard as one of the existing classes.