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
| status key command | |
| Conversion Backspace Cancel | |
| Conversion Ctrl a SegmentFocusFirst | |
| Conversion Ctrl Backspace Cancel | |
| Conversion Ctrl d SegmentFocusRight | |
| Conversion Ctrl Down CommitOnlyFirstSegment | |
| Conversion Ctrl e ConvertPrev | |
| Conversion Ctrl Enter Commit | |
| Conversion Ctrl f SegmentFocusLast | |
| Conversion Ctrl g Cancel |
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 int countTweetCharacters(String text) { | |
| int count = text.length(); | |
| Extractor extractor = new Extractor(); | |
| List<String> urls = extractor.extractURLs(text); | |
| for (String url : urls) { | |
| count -= (url.length() - 20); | |
| if (url.startsWith("https://")) { | |
| count += 1; | |
| } |
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 jp.sumasu.test; | |
| import android.app.Activity; | |
| import android.content.Context; | |
| import android.os.Bundle; | |
| import android.telephony.PhoneStateListener; | |
| import android.telephony.SignalStrength; | |
| import android.telephony.TelephonyManager; | |
| import android.widget.TextView; |
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
| 学校の先生に見てもらうつもりだったんですが台風のお陰で休校になりまして・・・ | |
| お時間がございましたらTwitterなので感想やアドバイスなどいただけると嬉しいです。 | |
| 見ていただき部分は「将来の目標」と「自己紹介文」の部分です。(他はおk頂きました) | |
| ※記入欄が横17cmの2行しかないため短文になっております。 | |
| *将来の目標の部分なのですが、今現在の目標はプログラマになることです。 | |
| しかしこの書き方だと職についたら終わりのようなイメージを持たれそうで怖いです。 | |
| プログラマになるためにこんなことをやっています。 | |
| (勉強会へ参加したり、プログラミングの学習をしたり、企業の方にプログラミングのノウハウを教え頂いたり) |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>homebrew.mxcl.jenkins</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/usr/bin/java</string> | |
| <string>-Dfile.encoding=UTF-8</string> |
NewerOlder