I hereby claim:
- I am twelve17 on github.
- I am alexporras (https://keybase.io/alexporras) on keybase.
- I have a public key ASCdWYHmNXBitEmJzkvNB6M0dcvcdNHJ43mWzuL6UA3fLgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
require 'spec_helper' | |
require 'active_record' | |
require 'order_query' | |
require 'pry-byebug' | |
RSpec.describe OrderQuery do | |
class Employee < ActiveRecord::Base | |
include OrderQuery | |
has_one :contract |
It looks like as of this writing, the PuTTY Gen conversion code only accepts keys that use the AES-128-CBC
or DES-EDE3-CBC
ciphers. Otherwise, it will complain with a "unsupported cipher" error. (The latest release version at the moment is beta 0.67.)
For example, one of my private keys was using AES-256-CBC:
-----BEGIN RSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: AES-256-CBC,xxxxxxx
diff --git a/config/openalpr.conf b/config/openalpr.conf | |
index 17b6af9..8f36e4e 100644 | |
--- a/config/openalpr.conf | |
+++ b/config/openalpr.conf | |
@@ -1,7 +1,7 @@ | |
[common] | |
; Specify the path to the runtime data directory | |
-runtime_dir = /usr/share/openalpr/runtime_data | |
+runtime_dir = ${CMAKE_INSTALL_PREFIX}/share/openalpr/runtime_data |
public class MyActivity extends Activity { | |
public void methodTriggeredFromASomeAction(View view) { | |
final ProgressDialogFragment pDialogFragment = ProgressDialogFragment.newInstance("Dialog Text.."); | |
pDialogFragment.show(getFragmentManager(), "dialog"); | |
//... | |
pDialogFragment.dismiss(); | |
} | |
} |