I have a custom extension that adds ‘testimonials’ functionality to M2. The path that I can access these testimonials in the frontend is /testimonials/index/index. I’ve added a type field to the testimonials where I can set it to either “reviews” or “customer letters”. What I want to do is create […]
Blog
I installed Debian recently and the keyboard setup was set to UK. So I tried to reset it with # dpkg-reconfigure keyboard-configuration and then did # service keyboard-setup restart. After that did not work I opened up /etc/default/keyboard and it looked like this: # KEYBOARD CONFIGURATION FILE # Consult the […]
I find Docker for Windows to be a bit heavy. Can i set up my Visual Studio environment to debug my apps from a remote linux docker instance ? I looked a bit around but it feels the pipeline behind the “Docker” launchsettings is hard-coded.
This is a recent issue that started on one of the latest iOS upgrades (now running 13.3). The built in Mail app won’t download attachments and often the text won’t be downloaded too. When I open an email message I have to click the Download button and wait. The “Load […]
I have some pretty standard C++ code, in which I am using to_string to add a sting and an int together, like this: string s = to_string(a) + "!"; When I try to compile this using g++ on Centos7, I get the error “to_string is not in a member of […]
I’m developing an application in JavaScript using the “tone.js” library. I’m having lots of issues trying to make it sound properly on my machine. Problems are on my machine since i tried it on different machines and everything works properly. I’m using a DELL Inspiron 7577 with an Intel i7 […]
Let’s say I got a model called “Chef”. This object has methods such as what kinds of dishes this chef is able to cook. Like Chef->getAvailableDishes() or something. Now I have some code in another part of the application where I would want to get some “metadata” about this chef, […]
I’ve tried all three I was aware of (PHPDox, APIGen, PHPDocumentor) but except the latter, none of them was working. APIGen was my favorite back then but it seems pretty much dead now. Am I missing something? How do you generate documentation nowadays? e: sorry for the typo in the […]
Building out a REST API here. I’m thinking for authorization, API_KEY + NONCE + TIMe is a good way to go about it, as I know that’s been the standard around for a good while. Just checking in, in case there’s some cool new methodologies that I’m currently unaware of. […]