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
<ul> | |
<?php | |
$args = array( 'numberposts' => -1, 'cat'= 39; ); | |
$posts = get_posts($args); global $post;?> | |
<?php foreach($posts as $post): ?> | |
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> | |
<?php endforeach; ?> | |
</ul> |
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
test first commmit |
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
IDで表示する場合 | |
[gist id=4450617] | |
URLで表示する場合 | |
[gist]http://gist.github.com/4450617[/gist] |
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 <cstdio> | |
#include <iostream> | |
#include <fstream> | |
#include "includes/twitcurl.h" | |
int main( int argc, char* argv[] ) | |
{ | |
std::string userName( "username" ); //ユーザ名 | |
std::string passWord( "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
Option Explicit | |
Dim tweetMessage 'つぶやき | |
Dim tweetCommmand 'Tweet用コマンド | |
tweetMessage = InputBox("Let's Tweet!!") | |
tweetCommmand = "C:\cygwin\home\TSUNEMICHI\src\quicktweet\quicktweet.exe " + "'" + tweetMessage +"'" | |
Dim Shell | |
Set Shell = CreateObject("WScript.Shell") |
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
Option Explicit | |
Dim tweetMessage 'つぶやき | |
Dim tweetCommmand 'Tweet用コマンド | |
tweetMessage = InputBox("Let's Tweet!!") | |
tweetCommmand = "C:\temp\TweetConsole\twtcnsl.exe /t " +"'" + tweetMessage +"'" | |
Dim Shell | |
Set Shell = CreateObject("WScript.Shell") |
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
/* | |
* TopCoder | |
* SRM494 Div2 Level1 | |
*/ | |
#include <algorithm> | |
#include <iostream> | |
#include <map> | |
#include <numeric> | |
#include <set> | |
#include <sstream> |
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
/* | |
* TopCoder | |
* SRM566 Level1 | |
* | |
* Author : tsu_nera | |
* Created : 2013/01/13 | |
*/ | |
#include <algorithm> | |
#include <iostream> |
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
/* TopCoder | |
* SRM : 570 | |
* Division : 1 | |
* Level : 2 | |
* | |
* Created on: 2013/02/13 | |
* Author: tsu_nera<[email protected]> | |
*/ | |
#include <algorithm> |
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 <vector> | |
using namespace std; | |
class TheExperimentDiv2 { | |
public: vector<int> determineHumidity(vector<int> intensity, int L, vector<int> leftEnd) { | |
int N = (int)intensity.size(); | |
int M = (int)leftEnd.size(); |
OlderNewer