経済的官能小説

和夫は、月明かりに照らし出された政子の双子の赤字を眺めていた。
政子は無言のまま和夫の格差問題にそっと手を当てると、なんとも愛しそうにやさしく撫ぜた。
和夫は思わず政子の双子の赤字に顔を近づけると、そっと口付けをし、そのまま量的金融緩和の解除に踏み切った。
あらわになった政子の双子の赤字は、今にもはちきれんばかり。
そのまま和夫は、政子の双子の赤字を執拗に攻め立て、それに耐え切れず政子のFRBは更なる利上げに踏み切った。
和夫は一瞬、政子のデフレ傾向が強まると思い、執拗に攻めていた手を休めた。
ところが、政子のGDPはそのデフレ傾向を跳ね返すように大きく伸び、デフレどころかインフレ傾向に傾き始めた。
和夫はそんな政子のインフレを確かめるや否や、大きくなった格差問題をおもむろに政子に押し当てた。
政子は嬉しさと興奮で和夫のはちきれんばかりの格差問題に手を伸ばし、やさしく迎え入れた。
和夫の頭の中は真っ白になり、政子から溢れてくるインフレの波に飲まれながら、大きくなった格差問題を激しく突きつけた。
政子も激しく突きつけられる格差問題に併せて、大きく揺れ動く為替相場に快感を覚えた。
為替相場が揺れ動くにつれ、和夫と政子の貿易摩擦に問題が生じ始めた頃、二人の間でバブルがはじけた。
それと同時に和夫の金融市場はマネーサプライの激増に手の施しようがないくらい、
まさに絶頂と言うにふさわしいほどの混乱の中、和夫と政子はお互いの問題をやさしく撫ぜながら眠りについた・・・。

일본어 히라가나 가타카나 아이폰 추천 어플




「あ」言うてみ










최근 둘째가 아이폰에 빠져있어 그냥 가지고 놀게하는 것 보다
일본어 공부나 시킬까 하고 아이폰에 빠삭한 직원에게 모 괜찮은거 없냐고 물어봤더니 위의 앱을 소개해줬다. 앱 스토어에 들어가보니  마침 85엔 세일중이라 어제 질렀다.
ㅎㅎ 핑크색 아이콘이 좀..야시시하네.ㅡ.ㅡ
일단 실행하면 아래 메인 화면이 나온다 아마 오사카 사람이 만들었나? 신세카이 복어가 보인다.
일단 타이틀화면은 맘에 들었다.  히라가나 / 가타가나 발음 듣기와 간단한 카드 게임이 들어가 있었다. 역시 오사카 사람이 만들었나보다 -_-; 오사카 사투리로 ㅎㅎ 하여간 ...
심플한것이 아이들에게 거부감 없이 일본어와 발음을 접하고 흥미를 유발하기에 충분했다.
첫째는 카드 게임에 빠져 둘이 서로하겠다고 싸운다. 쩝 ㅡ.ㅡ
하여간 맘에 들었음.

일본어를 처음 접하거나 현지 발음을 듣고 싶다면 강력 추천한다.

상세 설명은 아래 링크
http://itunes.apple.com/jp/app/id457126389?l=en&mt=8




타이틀 화면


멀티뷰에서 드래그

CookBook - sample 소스 참조
==========================



#import <UIKit/UIKit.h>
#include "time.h"

//@class UIImageView;

@interface DragView : UIImageView
{
CGPoint startLocation;
}
@end

@implementation DragView

- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
CGPoint pt = [[touches anyObject] locationInView:self];
startLocation = pt;
[[self superview] bringSubviewToFront:self];
}
- (void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
CGPoint pt = [[touches anyObject] locationInView:self];
CGRect frame = [self frame];
frame.origin.x += pt.x - startLocation.x;
frame.origin.y += pt.y - startLocation.y;
[self setFrame:frame];
}
@end//end of implementation

@interface HelloController : UIViewController
@end

@implementation HelloController
#define MAXFLOWER 10
CGPoint randomPoint(){
return CGPointMake(random()% 256, random()% 396);
}
- (void)loadView{
UIView *contentView = [[UIView alloc]initWithFrame:[[UIScreen mainScreen] applicationFrame]];
contentView.backgroundColor = [UIColor blackColor];
self.view = contentView;
[contentView release];
// add the flowers to random points on the screen
for (int i=0; i<MAXFLOWER; i++) {
CGRect dragRect = CGRectMake(0.0f, 0.0f, 64.0f, 64.0f);
dragRect.origin = randomPoint();
DragView *dragger = [[DragView alloc] initWithFrame:dragRect];
NSString *whichFlower = [[NSArray arrayWithObjects:@"blueFlower.png",@"pinkFlower.png",@"orangeFlower.png",nil] objectAtIndex:(random()%3)];
[dragger setImage:[UIImage imageNamed:whichFlower]];
[dragger setUserInteractionEnabled:YES];
[self.view addSubview:dragger];
[dragger release];
}
}
@end


@interface SampleAppDelegate : NSObject <UIApplicationDelegate>
{
}
@end

@implementation SampleAppDelegate

- (void)applicationDidFinishLaunching:(UIApplication *)application
{
srandom(time(0));
UIWindow *window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
HelloController *hello = [[HelloController alloc]init];
[window addSubview:hello.view];
[window makeKeyAndVisible];
}

- (void)applicationWillTerminate:(UIApplication *)application
{
//handle any final state matters here
}


- (void)dealloc
{
[super dealloc];
}

@end //end of SampleApplication implementation

int main(int argc, char *argv[]) {

NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, @"SampleAppDelegate");
[pool release];
return retVal;
}