詳細検索
Avatar

furuyamah

How to install Moodle 2.8.2 on Amazon Linux

How to install Moodle 2.8.2 on Amazon Linux

I had the opportunity to install the e-learning package Moodle, and when I quickly ggged it, how to set up Moodle on Amazon EC2 was a hit. I thought that I had won because it was too detailed, but when I set it up, I created a mine clearance memo because it was filled with mines due to the Moodle version upgrade. 1. Set up Amazon Linux AMI 64bi please...

Mac Terminal Anywhere

Mac Terminal Anywhere

I recently switched from ubuntu to mac. Now you can develop unlimited iPhone apps! (Lie: However, even though it is the same unix-derived OS, there are some differences.) What I am most concerned about is that it is basically an app and a window. As someone who wants to generate a lot of virtual desktops and set up terminals here and there, this specification doesn't really fit in. ...

Since MySQL 5.5 index does not work in sjis environment and is slow

Since MySQL 5.5 index does not work in sjis environment and is slow

When I upgraded MySQL to version 5.6, I was in trouble because some queries were slow. As a result of a lot of ggg, the information that hit is as follows. character\_set\_connection = sjis and DATETIME columns are not indexed http://bugs.mysql.com/bug.php?id=74449...

Google Glass Word Lens and Play game

Google Glass Word Lens and Play game

This is Google Glass Report Part 2. Last time I borrowed it, but this time I bought Google Glass Explorer Edition Ver 2.0 and reviewed it. Amazing! The representative is cool!! First of all, about the difference between the ver1 I borrowed and this ver2. Even if you gg, you won't get clear information. Google Glass 2 offers minor but important...

Google Glass First Impressions

Google Glass First Impressions

The rumored Google Glass. It's already quite readily available in the US. But I can't buy it in Japan. Why can't I buy it! Does it mean that you should ask a parallel importer with risk? No, it's impossible. But those who have it have it. Early...

Android Expansion files upload

Android Expansion files upload

I don't know how to upload the extension file. See the Devleloper Console help _Note: Currently, due to the limitations of the new Google Play Developer Console, you can't add extension files to the first APK file you upload a new app. To avoid this problem, you can first upload only the APK file and add the extension file if necessary...

TortoiseGit + GitHub + port 443

TortoiseGit + GitHub + port 443

I was living a comfortable Git life with TortoiseGit and GitHub, but one day I suddenly couldn't pull. It seems that communication with GitHub via port 22 is no longer possible. Why? Speaking of number 22, it is an SSH port. I'm also sshing servers on AWS, so I can't think it's closed somewhere in the company's network. I wonder if they were banned from GitHub? ...

Get permissions set for Android apps

Get permissions set for Android apps

''' If you use a feature that requires permissions not set in the manifest, you will get a ruthless SecurityException. It's so ruthless that it passes through the catch clause. The fact that this exception occurs means that the manifest and the code do not match, so the code should be corrected! ...

Android: Synchronize sessions between WebView and HttpClient

Android: Synchronize sessions between WebView and HttpClient

After logging in with WebView, when I call HttpClient... The opposite is also true. In Android, WebView and HttpClient seem to be treated as separate browsers. This matter has been explained here and there. ...

Password Manager for Android

Password Manager for Android

Do not reuse passwords. The password must be at least a certain number of characters. Passwords must be changed regularly... It's impossible to remember that! So, I will publish a password management app that I created for the company. There are already a lot of password managers on Google Play, but the reason we didn't adopt them is - many of them ask for unnecessary permissions (for internal use)...

Classes that display class names, method names, and line numbers in Android LogCat tags

Classes that display class names, method names, and line numbers in Android LogCat tags

Even if you have a debacher and can perform steps, you can't let go of the ease of debackloging. In the case of Android, you can use the standard Log class to achieve that goal, but many people would be happy if the Tag had the class name, method name, and line number in it! When I thought about it, there was a person who realized it. For some reason, I tried to classify this so that it can be used. \[code lang="java"...

How to put a nice '-' (hyphen) in a phone number on Android (java)

How to put a nice '-' (hyphen) in a phone number on Android (java)

Phone numbers are structured with two hyphens, such as \[area code] - \[area code] - \[customer number], but this is surprisingly difficult to put a hyphen in a number that does not have a hyphen, such as 0312345678. Sometimes the area code is 2 digits, sometimes 3 digits, sometimes 4 digits, and mobile phones are 3 digits, so it's too much to do on your own. Wikipedia's area code section...