-
Install Putty and related utilities
-
Set system environment variable in Windows(Control Panel\System and Security\System --> and clicking on "Advanced system settings" in the left pane. Then click on "Environment Variables") GIT_SSH=%path_to_plink.exe% (Note plink.exe goes into wherever you installed Putty)
-
Generate a ssh key using puttygen.exe (ssh2-rsa, 4096, comment=GitLab, and set a passphrase)
-
Add key to pageant.exe and the public key to your GitLab profile
-
Ensure you start a new command shell so that git recognizes the GIT_SSH value
-
Try these two commands to check connection first. This should give you a popup window that authenticates connection
-
set Git putty git@gitlab.com:%user%/%repo.git%
Using adb, create a backup of the app using the following command:
adb backup -f freeotp-backup.ab -apk org.fedorahosted.freeotp
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
| public string HiraganaToKatakana(string input) | |
| { | |
| byte[] unicodes = Encoding.GetEncoding("Unicode").GetBytes(input); | |
| int i; | |
| for (i = 0; i < unicodes.Length; i += 2) //Each 16 bits. | |
| { | |
| int _word = (unicodes[i + 1] << 8) | (unicodes[i] & 0xFF); //Two byte make a word. | |
| if (_word >= 0x3041 && _word <= 0x30A0) //In hiragana area? | |
| { | |
| _word += 0x60; //Add difference. |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |