A script to fix EDID problems on external monitors in macOS.
-
Connect only the problem display.
-
Create this directory structure (if it doesn't already exist):
/* | |
Cave CV1000 hardware | |
Games by Cave ID number: | |
CA011 Mushihime-Sama | |
CA012 Ibara | |
CA012B Ibara Kuro Black Label | |
CA013 Espgaluda II |
matti@acrux ~/reject $ RUBYLIB=. cat - | puppet apply | |
$a = { 'abc' => 123, 'def' => 456} | |
$b = { 'abc' => 123, 'def' => 999} | |
notice dump(merge($a, $b)) | |
notice dump(merge($b, $a)) | |
notice: Scope(Class[main]): {"abc"=>"123", "def"=>"999"} | |
notice: Scope(Class[main]): {"abc"=>"123", "def"=>"456"} | |
notice: Finished catalog run in 0.07 seconds | |
matti@acrux ~/reject $ RUBYLIB=. cat - | puppet apply |
puppet cert clean <agent_certname>
mv /etc/puppetlabs/puppet/ssl/ /etc/puppetlabs/puppet/ssl_bak
puppet agent -t
puppet cert sign <agent_certname>
bind-key C-b send-prefix | |
bind-key C-o rotate-window | |
bind-key C-z suspend-client | |
bind-key Space next-layout | |
bind-key ! break-pane | |
bind-key " split-window | |
bind-key # list-buffers | |
bind-key $ command-prompt -I #S "rename-session '%%'" | |
bind-key % split-window -h | |
bind-key & confirm-before -p "kill-window #W? (y/n)" kill-window |
# http://stackoverflow.com/a/28818420/484780 | |
git describe --abbrev=0 --tags `git rev-list --tags --skip=1 --max-count=1` |
diff --git a/src/rxvtfont.C b/src/rxvtfont.C | |
index 4b266bd..99130fa 100644 | |
--- a/src/rxvtfont.C | |
+++ b/src/rxvtfont.C | |
@@ -1326,31 +1326,7 @@ bool | |
rxvt_font_xft::has_char (unicode_t unicode, const rxvt_fontprop *prop, bool &careful) const | |
{ | |
careful = false; | |
- | |
- if (!XftCharExists (term->dpy, f, unicode)) |
Atmosphère est un CFW (Custom FirmWare - Logiciel modifié) opensource avec un développement très active. Son nom n'a pas été choisi par hazard, effet les developpeurs ont découpés le code en plusieurs couches (comme celle de l'atmosphère), vous n'allez pas tout comprendre mais vous allez pouvoir retenir les quelques features les plus importantes pour une utilisation lambda.
Fusée - le custom bootloader, c'est la première couche lors de l'amorçage du CFW, elle permet le chargement des fichiers KIPs, le chargement d'un kernel personalisé... La configuration de ce composant se situe dans le fichier atmosphere/BCT.ini
Exosphère - le custom secure monitor, c'est une réplimentation complète de la TrustZone du firmware de la Switch, permettant la récuperation d'une multitude d'informations pour les Homebrews par exemple.
curl -X PATCH http://localhost:8080/Users/7234e4cd-eb7f-4a96-953e-3bd11439efcf -H 'Content-Type: application/json' -d @- <<BODY | |
{ | |
"emails": [ | |
"[email protected]", | |
"[email protected]" | |
] | |
} | |
BODY |
ActivityResultLauncher<Intent> mStartForResult = registerForActivityResult(new StartActivityForResult(), | |
new ActivityResultCallback<ActivityResult>() { | |
@Override | |
public void onActivityResult(ActivityResult result) { | |
if (result.getResultCode() == Activity.RESULT_OK) { | |
Intent intent = result.getIntent(); | |
// Handle the Intent | |
} | |
} | |
}); |