A site for solving at least some of your technical problems...
A site for solving at least some of your technical problems...
Today, I got a rather weird C++ error. That is. My code is very simply doing a search using the std::find() function as follow:
auto it(std::find( headers.cbegin() , headers.cend() , column_name));
Yet, it would not compile that simple line of code.
Clearly, I use the begin() and end() of the same vector, and I use a value which is exactly what the vector is made of (we see that in the first line of error below: the std::vector<> T parameter is a basic string, which is what column_name is.)
Looking at the error, we see that it ...
At some point in 2017, the WHOIS registry was split in two.
Before that, WHOIS was all in one place (at least from what I understand) and thus a query would return all the info you could get.
Once in a while, I would receive an email from GoDaddy (which is not my favorite registrar anymore, although they still have excellent service.) That email would say "You have to update your information with ICANN."
This email has stopped for a couple of years now and that's in link with the split. You now register with your registrar and not ICANN so the updates have to be ...
I got a Jetson TX2 not too long ago and was first looking into how to play a 4K video using the full accelerated GPU to see that it would be all smooth and play with the correct colors, etc.
My first experience with SBCs was with a Raspberry Pi and that board would display really crappy videos.
The first test I tried was to go to Chrome, the browser, and then attempt to play the video from there. Unfortunately, Chrome has difficulties to find the right wayt to accelerate video decompression and thus it did everything in software. It would use a good 100% of the 6 CPUs and the video ...
Today I got an email from rkhunter telling me that port 7000 is now opened by /usr/bin/keybase that looked as follow:
Warning: Network TCP port 7000 is being used by /usr/bin/keybase. Possible rootkit: Possible rogue IRC bot Use the 'lsof -i' or 'netstat -an' command to check this.
If you are also running rkhunter, you certainly got the exact same message.
After close look up, I could see that was safe.
1) The process listening on port 7000 is indeed keybase, try the following command:
sudo netstat -a64np Proto Recv-Q Send-Q ...
Today I had to work with a customer who decided to use GoDaddy to host their WordPress website. It's not a bad platform, they actually include quite a bit of integration between the WordPress installation on your server and your GoDaddy account. It gives you access to various functions and keeps track of necessary upgrades.
The account for the Hosting also includes information about sFTP. You can connect to your server using the SSH (Secure SHell) server and use that to send FTP commands to handle file transfers securely.
Your account may also have an FTP, I did not try. Just ...
LibreOffice offers a Math editor which is very powerful and allows you to write complex Math Formulae. Unfortunately, it's not one to one compatible with LaTeX (in case you learned that Math Language) and so far I've not found pages that would explain all the different cases I often would like to use in my formulae.
Indeed, a few things are not self explanatory (and even certain things have weird side effects, like using additional ...
As per the following page:
https://www.drupal.org/SA-CORE-2018-002
Drupal 6.x is also at risk from this issue. You can download Drupal 7 or 8 and compare and find out what is different between both versions.
The only difference between 7.57 and 7.58, which makes a difference, is a class used to remove any parameter that starts with a hash (#). Drupal defines arrays with keys. To distinguish between regular values and keys, Drupal uses words that start with a hash (#) for those keys.
Here are two lines of code that show that '#...' key usage:
$form['#pre_render'][] = ...
As I have been looking around for various tools to help me determine what is happening whenever I have a reader on my blog, I found this tool which offers quite a few features for free which is called: HotJar.
One step in the process of using HotJar is to download a small JavaScript and add it to your website header. This script includes your website identification and allows for tracking your customers and see what they are doing on your website. Pretty nice to get a better idea of what's happening.
The hit with the "hjVerifyInstall" parameter happens whenever you click the ...
(click on image to see 4K version in new window)
I just received my Jetson TX2 so I had to test it!
First I needed to setup the network since by default it wants DHCP which I don't allow by default on my server.
Since it's running Ubuntu, I thought it would be dead easy, but I ran in two interesting settings I hadn't seen before.
When you are about to edit an interface, you probably want to first bring it down. If you forget to do this step first, you may have to reboot to get the status back to normal. So run this one:
sudo ifdown eth0
You ...
Whenever you create a page, you at times notice that your text goes bye bye without telling you anything about the reason why it would do that.
The fact is that there are many reasons why this can happen. The following is here to remind me of the various possibilities that I've bumped into over time.
The first one that got me many times is the color of the text. If that color is set to transparent or the same color as the background, then you won't see the text.
What I do to test that quickly is go to the block where the text is expected to appear and change the ...
Recent Posts on The Linux Page: