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 update_name; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
import twitter4j.*; | |
import twitter4j.conf.Configuration; | |
import twitter4j.conf.ConfigurationBuilder; | |
public class UpdateName { |
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"?> | |
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<ImportGroup Label="PropertySheets"/> | |
<!-- Debug|Win32 --> | |
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
</PropertyGroup> | |
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
<ClCompile> | |
<AdditionalIncludeDirectories>C:\opencv-2.4.11\build\install\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
</ClCompile> |
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
#include<stdio.h> | |
#include<windows.h> | |
#pragma comment (lib, "winmm.lib") | |
int main(){ | |
//TCHAR buf[128]; | |
//UINT bufsiz = 128; | |
//mciGetErrorString( | |
// mciSendString(TEXT("open F:\ type cdaudio alias romdrive"), NULL, 0, 0), | |
// buf, bufsiz); |
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
#coding: UTF-8 | |
''' | |
Created on 2014/11/08 | |
@author: shirasu | |
''' | |
import random |
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
アカウントのパスワードを変更する(認証アリ) | |
公式キーのみ | |
POST https://api.twitter.com/i/account/change_password.json | |
パラメーター | |
current_password | |
password | |
password_confirmation | |
エラーメッセージ | |
{"errors":[{"code":114,"message":"Incorrect current password."}]} | |
{"errors":[{"code":238,"message":"That password is too easy to guess. Please choose a stronger password."}]} |
NewerOlder