2072 private links
// File: functions.php
// Remove the "Catégorie :" part from page titles
// 2019-09-05, Kelly & Mika
// ᕦ(ò_óˇ)ᕤ
// Source: https://core.trac.wordpress.org/browser/tags/5.2/src/wp-includes/general-template.php#L1559
function remove_category_from_title( $translated_text ) {
if ( substr($translated_text, 0, 10) == 'Catégorie' ) {
$translated_text = trim(substr($translated_text, 13));
}
return $translated_text;
}
add_filter( 'gettext', 'remove_category_from_title', 20 );
A story
Des tas de goodies haut de gamme, fait par les maîtres de chez Weta Studio !
<3
A full-featured & carefully designed adaptive prompt for Bash & Zsh - nojhan/liquidprompt
Ce montage contient plusieurs extraits des documentaires nuclear bomb "Trinity and beyond" et "Atomic filmmakers". Atomcentral.com. De 1945 à 1993.
Battle Angel Alita is known as Gunnm in Japan, and Alita as Gally.
Why was the title and name of the series changed when it was localized? What other changes did they make from the original Japanese?
La Bibliothèque idéale de la Fantasy.
Mon coup de cœur jusqu'à maintenant : La Horde du Contrevent, de Alain Damasio.
Dive into CPython internals, trying to illustrate every detail of CPython implementation | CPython 源码阅读笔记, 多图展示底层实现细节 - zpoint/CPython-Internals
tout est dans le titre : <3
Il faudra installer manuellement PyCryptodomex :
sudo apt install python-pip pthon-setuptools
python -m pip install pycryptodomex
sudo ln -s /usr/lib/python2.7/dist-packages/Crypto /usr/lib/python2.7/dist-packages/Cryptodome
Puis récupérer le fichier DRM :
wget https://hg.mozilla.org/mozilla-central/raw-file/31465a03c03d1eec31cd4dd5d6b803724dcb29cd/toolkit/content/gmp-sources/widevinecdm.json -O ~/.kodi/cdm/libwidevine.sh
Et enfin, installer l'add-on Netflix (non-officiel) : https://github.com/asciidisco/plugin.video.netflix/archive/master.zip
Note : pour faire de la place (2 Go requis pour l'installation du plugin DRM) :
rm ~/.kodi/userdata/Database/Textures*.db
rm ~/.kodi/userdata/ThumbnailsUn bon guide sur AST.
Common GOF Patterns implemented in Python. Contribute to Sean-Bradley/Design-Patterns-In-Python development by creating an account on GitHub.
Outch !
You’ve run your batch process with your scientific model, and after hours and hours it spit out a result. And the result is wrong. You suspect there’s a bug in the calculation, you’re not sure what it is, and the slow feedback cycle is making debugging even harder. Wouldn’t it be great if you could debug and speed up your program without having to spend days running it just to reproduce your problem? Now, I’m not a scientist, I’m a software engineer. But I did spend a year and a half working on scientific computing, and based on that experience I’d like to offer a potential solution to this cluster of problems: logging, and in particular a logging library I and my coworkers found very helpful. But before I get to the solution, it’s worth considering where these problems come from: the specific characteristics of scientific computing.
Introduction The first thing we have to understand while dealing with constraint programming is that the way of thinking is very different from our usual way of thinking when we sit down to write code. Constraint programming is an example of the declarative programming paradigm, as opposed to the usual
The essentials of effective use of the debugger