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."}]} |
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
#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
<?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
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
void setup(){ | |
size(700,700); | |
background(255,255,255); | |
drawHenonMap(); | |
} | |
void draw(){ | |
} |
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
void setup() | |
{ | |
size(700,700); | |
translate(width/2,height/2); | |
circlesR(0, 0, 350, 8); | |
} | |
void draw() | |
{ | |
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
#!/bin/zsh | |
for i in {1..10000}; | |
do | |
echo -n "やーい" | |
usleep 1000 | |
done | |
open -n -a /Applications/Utilities/Terminal.app --args "~/Desktop/aa.sh" |
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
#define _CRT_SECURE_NO_WARNINGS | |
#include <stdio.h> | |
#include <stdlib.h> | |
int main(void) { | |
int a = 0; | |
char *s = (char *)malloc(sizeof(char) * 100); | |
printf("aのアドレス::%x\n", &a); | |
printf("sのアドレス::%x\n", s); |
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.util.List; | |
import java.util.ListIterator; | |
import java.util.ArrayList; | |
List<PVector> plist = new ArrayList<PVector>(); | |
void setup(){ | |
size(700, 700); | |
noFill(); | |
background(0); |
OlderNewer