I hereby claim:
- I am tolland on github.
- I am tolland (https://keybase.io/tolland) on keybase.
- I have a public key ASCtEZi7pS9KU9rBpHew7BAtTtOSmpQuxsTPeSYvhgmeoQo
To claim this, I am signing this object:
| from android import Android | |
| droid = Android() | |
| def launch_script(path, terminal=False): | |
| terminal = 'FORE' if terminal else 'BACK' | |
| activity = 'com.googlecode.android_scripting.action.LAUNCH_{0}GROUND_SCRIPT'.format(terminal) | |
| extras = {'com.googlecode.android_scripting.extra.SCRIPT_PATH': path} | |
| packagename = 'com.googlecode.android_scripting' |
| using System; | |
| using System.Collections; | |
| public class SingletonBase<T> where T : SingletonBase<T>{ | |
| } | |
| public class MyChildSingletonA : SingletonBase<MyChildSingletonA> { | |
| } |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace ConsoleApplication3 | |
| { | |
| public class EventStateManager | |
| { |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <unistd.h> | |
| #include <string.h> | |
| #include <libpng16/png.h> | |
| #include <X11/X.h> | |
| #include <X11/Xlib.h> | |
| #include <X11/Xutil.h> | |
| #include <X11/extensions/Xcomposite.h> |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <unistd.h> | |
| #include <string.h> | |
| #include <libpng16/png.h> | |
| #include <X11/X.h> | |
| #include <X11/Xlib.h> | |
| #include <X11/Xutil.h> | |
| #include <X11/extensions/Xcomposite.h> |
| <% config[:vagrantfiles].each do |vagrantfile| %> | |
| require "<%= vagrantfile %>" | |
| <% end %> | |
| Vagrant.configure("2") do |c| | |
| c.berkshelf.enabled = false if Vagrant.has_plugin?("vagrant-berkshelf") | |
| <% if config[:cachier] %> | |
| if Vagrant.has_plugin?("vagrant-cachier") | |
| c.cache.scope = <%= [':box', ':machine'].include?(config[:cachier]) ? config[:cachier] : ':box' %> | |
| end |
I hereby claim:
To claim this, I am signing this object:
| ASCII | HTML | |
|---|---|---|
| Single backticks | 'Isn't this fun?' |
'Isn't this fun?' |
| Quotes | "Isn't this fun?" |
"Isn't this fun?" |
| Dashes | -- is en-dash, --- is em-dash |
-- is en-dash, --- is em-dash |
graph LR
A[Square Rect] -- Link text --> B((Circle))| #!/bin/bash | |
| # | |
| # Ansible role test shim. | |
| # | |
| # Usage: [OPTIONS] ./tests/test.sh | |
| # - distro: a supported Docker distro version (default = "centos7") | |
| # - playbook: a playbook in the tests directory (default = "test.yml") | |
| # - role_dir: the directory where the role exists (default = $PWD) | |
| # - cleanup: whether to remove the Docker container (default = true) | |
| # - container_id: the --name to set for the container (default = timestamp) |
User: @tolland
the gnome keyring has a pam component and a daemon component. The pam module is invoked during user sign in, and caches the password to later unlock the login.keyring once the user session has started. These days, its common to have finger print readers, or indeed other external modules to provide authentication, and these methods would not have access to the clear text password to later use to unlock the keyring. How does gnome-keyring deal with this situation?