Deutsch The update of WordPress and its Plugins did not really work. A small change helped a lot: In .htaccess put the following line to the beginning of the file: AddHandler php56-cgi .php … Then all updates seemed to work fine. Maybe this helps others observing the same problem.
Autor-Archive: bk1
Aktualisierung von WordPress
English Die Aktualisierung von WordPress und Plugins hat hier nicht so gut funktioniert. Es hat eine kleine Änderung geholfen, jetzt ist alles gut: In .htaccess am Anfang diese Zeile AddHandler php56-cgi .php einfügen… Danach funktionierten alle Updates gut. Vielleicht hilft das auch anderen, die damit Probleme hatten….
Find the next entry in a sequence
In Facebook, Xing, Google+, Vk.com, Linkedin and other of these social media networks we are often encountered with a trivial question like this: 1->2 2->8 3->18 4->32 5->50 6->72 7->? There are some easy patterns. Either it is some polynomial formula or some trick with the digits. But the point is, that any such sequence …
Thread local variables
The idea of threads is to share almost all information between the threads of the same process. This implies more effort to avoid creating inconsistencies by simultaneous access to the same data. But sometimes it is necessary to have data private to one thread. This is usually easily accomplished by just using local variables and …
O’Reilly schließt Aktivitäten in Deutschland
This article is of minor relevance to English speaking readers, because it concerns the German O’Reilly books, while the English O’Reilly books continue to be available. So I will write in German. Der O’Reilly-Verlag hatte jahrelang eine deutsche Niederlassung in Köln, wo deutschsprachige Versionen der beliebten Informatik-Fachbücher herausgegeben wurden. Dies waren oft Übersetzungen, aber in …
How to multiply long numbers
Assuming we have a multiplication of n-bit-numbers already available. Other than typical compiled languages, which assume that the multiplication result fits into the same size as the two factors, we should take a closer look. Unsigned n-bit-numbers as factors and fullfill So we have for the product So we …
Testing Java- and C-programs with Ruby and Perl
It is very important to write good unit tests for software that is non-trivial and that is relied on by other pieces of software. Often the logic of the software can easily be covered by the native testing facilities of the programming language, like JUnit for Java or, much less well known but available, CUnit …
„Testing Java- and C-programs with Ruby and Perl“ weiterlesen
How to recover the Carry Bit
As frequent readers might have observed, I like the concept of the Carry Bit as it allows for efficient implementations of long integer arithmetic, which I would like to use as default integer type for most application development. And unfortunately such facilities are not available in high level languages like C and Java. But it …
Microsoft dropping Windows-Support
Microsoft’s CEO Satya Nadella announced that Microsoft is withdrawing its support for the MS-Windows platform and concentrating on its core business, which is „services – services – services“. For a transition period of a few months, support for MS-Windows can still be obtained at an increased rate from Microsoft, but development and support have become …
Binary Data
Having discussed to some extent about strings and text data, it is time to look at the other case, binary data. Usually we think of arrays of bytes or sequences of bytes stored in some media. Why bytes? The 8-bit-computers are no longer so common, but the byte as a typical unit of binary data …