Takesi SASAKI @ Quipper @dagezi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun github-url-decompose (file &optional partial) | |
(cond | |
((file-directory-p (expand-file-name ".git" file)) (cons file partial)) | |
((equal "/" file) nil) | |
(t (github-url-decompose (directory-file-name (file-name-directory file)) | |
(if partial | |
(concat (file-name-nondirectory file) "/" partial) | |
(file-name-nondirectory file)))))) | |
(defun github-url-get-origin (dir) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun github-url-decompose (file &optional partial) | |
(cond | |
((file-directory-p (expand-file-name ".git" file)) (cons file partial)) | |
((equal "/" file) nil) | |
(t (github-url-decompose (directory-file-name (file-name-directory file)) | |
(if partial | |
(concat (file-name-nondirectory file) "/" partial) | |
(file-name-nondirectory file)))))) | |
(defun github-url-get-origin (dir) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unfortunately, a fatal error has occurred. Please see the Bundler troubleshooting | |
documentation at http://bit.ly/bundler-issues. Thanks! | |
/var/lib/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/installer.rb:326:in `install_in_parallel': undefined method `[]' for nil:NilClass (NoMethodError) | |
from /var/lib/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/installer.rb:95:in `run' | |
from /var/lib/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/installer.rb:15:in `install' | |
from /var/lib/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/cli.rb:257:in `install' | |
from /var/lib/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/vendor/thor/command.rb:27:in `run' | |
from /var/lib/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/vendor/thor/invocation.rb:120:in `invoke_command' | |
from /var/lib/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/vendor/thor.rb:363:in `dispatch' | |
from /var/lib/gems/2.0.0/gems/bundler-1.5.1/lib/bundler/vendor/thor/base.rb:438:in `start' |
Name | Description |
---|---|
Help | |
Close | Closes a window |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.quipper.appdater; | |
import java.lang.reflect.InvocationTargetException; | |
import java.lang.reflect.Method; | |
import android.content.Context; | |
import android.content.pm.IPackageInstallObserver; | |
import android.content.pm.PackageManager; | |
import android.net.Uri; | |
import android.os.RemoteException; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*potatotips5<master> git branch -rd origin/gh-pages | |
Deleted remote branch origin/gh-pages (was 6255a81). | |
*potatotips5<master> git push origin --delete gh-pages | |
To [email protected]:dagezi/potatotips5.git | |
- [deleted] gh-pages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.security.MessageDigest; | |
import java.nio.ByteBuffer; | |
import java.nio.channels.FileChannel; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.security.MessageDigest; | |
import java.security.NoSuchAlgorithmException; | |
public class Sha1 { |
OlderNewer