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 <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <ctype.h> | |
int main(int agrc, char *argv[]){ | |
FILE *fp; | |
int i=0,j,c,num_sp,head=1,num=0,ptr=0,flag_c=0,flag_of=0,flag_p=0,all=0; | |
char word[128], C_word[128]; |
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
# -*- encoding: utf-8 -*- | |
require 'mechanize' | |
require 'nokogiri' | |
require 'kconv' | |
require 'fileutils' | |
# ハッシュ | |
module HashInitializable | |
def initialize(attributes={}) | |
attributes.each do |name,value| |
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
<!-- phpで準備 --> | |
<?php | |
require_once("twitteroauth/autoload.php"); | |
use Abraham\TwitterOAuth\TwitterOAuth; | |
function h($str, $double = true){ | |
return htmlspecialchars($str, ENT_QUOTES, 'UTF-8', $double); | |
} |