Loading
2015. 8. 15. 20:08 - 나쁜철군

엑셀 재무함수 PMT함수를 php로 구현하기

엑셀 재무함수 PMT함수를 php로 구현하기





엑셀 재무함수중에 PMT()라는 함수가 있다

PMT 함수는 적용된 이율로 대출을 받아 약정기간동안 상환할때 월 이자와 원금을 포함한 금액을 구할 수 있다.


자 그러면 엑셀에서 PMT함수는 어떻게 쓸까?


PMT ( rate , nper , pv , fv , type )


위 형식이 엑셀에서 쓰이는 기본 PMT 함수 구조이다.

그러면 각 변수명은 무엇을 뜻하는가?


rate : 기간당 이율

nper : 총납입 횟수 ( 할부기간 )

pv : 현재가치 ( 앞으로 지급할 납입금의 현재 가치의 총액 )

fv : 미래가치 ( 최종 지급 후의 현금잔고, 생략하면 0으로 간주됨 )

type : 지금 시점을 나타내는 숫자로서 0(기간말) 또는 1(기간초) ( 생략가능. 생략하면 0으로 간주됨 )


그럼 엑셀에서 적용을 해보면

이자율 : 연 4.5%

대출원금 : 15,000,000 원

상환기간 : 36개월

위 상황일 경우 월 상환액을 구해보자.


엑셀 함수에 대입해보면

rate : 4.5%/12

nper : 36

pv : 15000000

PMT(4.5%/12 , 36 , 15000000 , 0 , 0) = -446,204

월 상환액은 -446,204원이 나오게 되는데 -값이 보기 실타면 pv 값을 -15,000,000 으로 넣어주면 된다.


그럼 이제 php 함수로 변환을 시켜보자

function PMT($r,$nper,$pv,$fv,$t) {

    $pmt=0;

    if ($r == 0) {

        $pmt = (-$pv - $fv) / $nper;

    } else {

        $pmt = (-$fv * $r - $pv * $r * pow(1 + $r, $nper)) / ((1 + $r * $t) *(pow(1 + $r, $nper) - 1));

    }

    return $pmt;

}


일단 엑셀의 PMT함수와 동일한 PHP의 PMT함수 되시겠다.

들어가는 변수들도 다 동일하다고 보면 되것다.


// rate   기간당 이율

// nper   대출 불입의 총 횟수 [납입 월수]

// pv     현재 가치

// fv     미래 가치

// type   0 : 기말 / 1 : 기초

// return  Number  pmt


위 함수를 가지고 변수값을 넣어보자 동일한 값이 나오는지

값이 이상하게 나온다고 나에게 욕하지 말라

4.5% = 4.5가 아니다

4.5% = 4.5/100 이란 말이다.

그러니 이율을 넣을때는 아래와 같이 넣어주면 된다.


PMT((4.5/100/12), 36, 15000000, 0, 0);


엑셀함수를 php로 바꾸기위해 고민하는 개발자들을 위해~~~






출처 : 나도 예전에 어디선가 찾은거라 .. 


2015. 8. 6. 12:18 - 나쁜철군

쿠팡 신규가입 이벤트 (5000 + 15000 + 15000)


저번 쿠팡대란때 이용못하신분들 다시한번 찬스가 찾아왔습니다.


2015년 8월 6일 오전 6시부터 다시 시작된 쿠팡의 미친 신규가입 이벤트


이번에는 15000원 쿠폰 2장이라네요


2만원이상 구매시 장바구니 할인쿠폰으로 2만원을 몽땅 할인 오오오


소프트뱅크에서 쿠팡에 1조원 투자를 하더니 시장을 선점하려고 그러는걸까요??


아래 링크로 회원가입을 하면 쿠팡캐시 5000원

http://coupang.com/memberJoinFrm.pang?token=a11634163


회원가입을 하면서 휴대전화 또는 아이핀 본인인증을 하시면 5000 캐쉬 적립됩니다.


단 위 링크로 들어가서 회원가입을 하지 않으면 5000 캐쉬는 적립이 안된다네요.




신규회원 가입후 아래 링크로 들어가시면 쿠폰을 받을 수 있습니다.


http://www.coupang.com/promotion/firstTimeBuyer.pang?promotionCode=104


http://www.coupang.com/promotion/firstTimeBuyer.pang?promotionCode=105


아 그리고 발급받은 쿠폰은 사용기간이 24시간이니깐


만료되기전에 주문완료해주세요.


그럼 모두 즐거운 쇼핑하시기 바랍니다.

2014. 1. 24. 16:59 - 나쁜철군

쓸만한 40여개 jquery plugin

쓸만한 40여개 jquery plugin


Quake Slider

( Demo | Download ) A simple jQuery plugin for creating appealing and functional sliders for your websites. jQuery Image / Content Slider Plugin: Quake Slider

Freetile.js

( Demo | Download ) This jQuery plugin lets you organize your content in a dynamic and responsive layout so that you can optimally use the screen space. Freetile.js

Raccordion

( Demo | Download ) Raccordion is a multipurpose responsive accordion plugin that can adjust accordingly with the size of browser width. jQuery Responsive Horizontal Accordion Image Slider: raccordion

3D Flipping Circle with CSS3 and jQuery

( Demo | Download ) This tutorial helps you learn how to create 3D flipping circles with CSS3 3D transforms and shadows/gradients and jQuery. 3D Flipping Circle with CSS3 and jQuery

jQuery Animated Bar Plugin: jqBar

( Demo | Download ) This plugin will let you create animated vertical and horizontal bars so that you create beautiful bar charts and present your data with some visual effects. jQuery Animated Bar Plugin: jqBar

Mini Help System with jQuery

( Demo | Download ) This tutorial takes you through the process of creating a mini help system by means of jQuery. Mini Help System with jQuery

Make a Google Powered Shopping Search Website

( Demo | Download ) With this tutorial, you can learn how to make Google powered shopping search website by using jQuery and PHP. Make a Google Powered Shopping Search Website

How to Make a Mac OSX-like Animated Folder with CSS3

( Demo | Download ) This is a short tutorial on using CSS3, 3D transforms, gradient and box shadows to create a Mac OSX like animation folder. How to Make a Mac OSX-like Animated Folder with CSS3

Create a Beautiful Password Strength Meter

( Demo | Download ) Create an appealing password strength meter with the help of this tutorial. The new Complexify jQuery plugin is used in this tutorial. Create a Beautiful Password Strength Meter

How to Build a ToDo Application with Web SQL and jQuery

( Demo | Download ) Follow this tutorial and build a ToDo application with Web SQL and jQuery. This tutorial will help you understand transactions and let you get started with Web SQl. How to Build a ToDo Application with Web SQL and jQuery

Responsive Carousel

( Demo | Download ) This carousel script lets you work with mouse, touch friendly devices and keyboard. It includes slide/drag transition that can be applied by adding a data attribute. Responsive Carousel

iosSlider

( Demo | Download ) With this jQuery plugin, you can create a responsive, customizable and cross-browser content slider. iosSlider

jQuery Interactive Cycle Slides Plugin: jQSlid

( Demo | Download ) This is another jQuery plugin for parallel sliding that can be used anywhere where sliding functionality is required. jQuery Interactive Cycle Slides Plugin: jQSlid

gridster.js

( Demo | Download ) Create intuitive drag able layouts with this plugin that allows you dynamically add and remove elements from the grid. gridster.js

tiltShift.js

( Demo | Download ) This jQuery plugin is designed to replicate the tilt-shift effect by using CSS3 image filters. tiltShift.js

stickyMojo

( Demo | Download ) This plugin is compatible with Firefox, Chrome, Safari and IE8+, stickyMojo is a fast, lightweight and flexible sticky sidebar plugin. stickyMojo

Complexify

( Demo | Download ) This jQuery plugin is designed so that your users can correctly estimate the quality of their password. Complexify - a jQuery Plugin

jQuery Vector Maps

( Demo | Download ) With this jQuery plugin, you can render vector maps easily as it uses resizable Scalable Vector Graphics (SVG). jQuery Vector Maps

FrameWarp

( Demo | Download ) This jQuery plugin helps you display pages in a neat overlay. FrameWarp

Swatch Book with CSS3 and jQuery

( Demo | Download ) In this tutorial, you will learn creating a swatch book by using CSS transforms and transitions and jQuery plugin as well. Swatch Book with CSS3 and jQuery

Triple Panel Image Slider

( Demo | Download ) This tutorial will walk you through the process of creating triple panel image slider with a 3D look. Triple Panel Image Slider

Fullscreen Slit Slider with jQuery and CSS3

( Demo | Download ) Now, you can learn how to create a full screen slideshow by using jQuery and CSS animations. Fullscreen Slit Slider with jQuery and CSS3

Build a Filterable Portfolio Using jQuery Isotope

( Demo | Download ) Here, you will see how to see jQuery Isotope plugin to create a filterable portfolio. Build a Filterable Portfolio Using jQuery Isotope

Vertical Showcase Slider with jQuery and CSS Transitions

( Demo | Download ) Follow this tutorial to create a vertical showcase slider with jQuery and CSS transitions. You can create a full screen slider that can move its section in opposite directions. Vertical Showcase Slider with jQuery and CSS Transitions


Fullscreen Video Slideshow with Bigvideo.js

( Demo | Download ) This tutorial is about creating a full screen video slideshow by using a jQuery plugin called BigVideo.js that is mostly used for big background video. Fullscreen Video Slideshow with Bigvideo.js

Custom DropDown List Styling

( Demo | Download ) With this tutorial, you can learn how to create a custom drop down list styling for various purposes. Custom DropDown List Styling

3D Thumbnail Hover Effects

( Demo | Download ) Follow this tutorial if you want to learn how to create 3D thumbnail hover effect with the help of CSS 3D transforms and jQuery. 3D Thumbnail Hover Effects

Creative Web Typography Styles

( Demo | Download ) In this tutorial, the process of creating web typography styles with several CSS techniques and lettering.js. Creative Web Typography Styles

Create a Parallax Scrolling Website Using Stellar.js

( Demo | Download ) Learn the use of parallax scrolling effects with this tutorial that uses Stellar.js and of course with some imagination. Create a Parallax Scrolling Website Using Stellar.js

Responsive, Multi-Level Navigation

( Demo | Download ) By using media queries and jQuery, you can accommodate large, multi-level navigation menus while keeping external resources minimal and markup simple. Big Menus, Small Screens: Responsive, Multi-Level Navigation

Adding a jQuery Countdown to Our “Coming Soon” Page

( Demo | Download ) Give your countdown timer some functionality to make your Coming Soon page look appealing. Adding a jQuery Countdown to Our “Coming Soon” Page

Create a Customized HTML5 Audio Player

( Demo | Download ) This tutorial will walk you through the process of creating a customized HTML5 audio player. Create a Customized HTML5 Audio Player

Make a jQuery Count Up Timer

( Demo | Download ) This tutorial helps you learn creating jQuery count up timer. Quick Tip: Make a jQuery Count Up Timer

Make A Simple AJAX Note Taking App

( Demo | Download ) If you want to create an AJAX note taking app, then you should follow this tutorial that will teach you how to use PHP and jQuery to create a simple AJAX interaction. Let’s Make A Simple AJAX Note Taking App

Bild a simple weather webapp

( Demo | Download ) Here, you will be shown how to use HTML5 geolocation API and Yahoo API along with jQuery to build an amazing weather app. How to use Geolocation and Yahoo’s APIs to build a simple weather webapp

Growing Thumbnails Portfolio

( Demo | Download ) Follow this tutorial to see how you can use HTML5, jQuery and CSS3 to create growing thumbnail portfolio. Growing Thumbnails Portfolio

How to grab Dribbble feed with jQuery and CSS3

( Demo | Download ) With this tutorial, you will be taught to grab dribbble’s API and integrate them with your designs. How to grab Dribbble feed with jQuery and CSS3

Custom Login Form Styling

( Demo | Download ) A simple and easy to follow tutorial on creating custom login form styling by using CSS and HTML5. Custom Login Form Styling

Slicebox Revised

( Demo | Download ) With this improved version of jQuery plugin, you can create 3D image slider. Slicebox Revised

Photo Booth Strips with Lightbox

( Demo | Download ) Here is a tutorial on creating neat and scrollable booth strips with Lightbox 2, and later you will also be learnt how to make them responsive and touch friendly. Photo Booth Strips with Lightbox

A Content Flip Plugin

( Demo | Download ) This jQuery plugin can be used to create booklet-like components in order to create a page flip navigation. A Content Flip Plugin

Timeline Portfolio

( Demo | Download ) This is another jQuery plugin for showing a chronological series of events. With this plugin, you can easily embed al kind of media and therefore it is perfect for a portfolio. Timeline Portfolio

Making a Page Flip Magazine with turn.js

( Demo | Download ) Another jQuery plugin called turn.js that is used to create a page flip effect is used in this tutorial along with PHP, CSS3 and jQuery to create a page flip magazine. Making a Page Flip Magazine with turn.js


출처 : http://smashinghub.com/

2014. 1. 24. 16:50 - 나쁜철군

jquery plugin 예제모임 사이트들

jquery plugin 예제모임 사이트들



1. Lightbox


Lightbox2

colorbox

FancyBox

prettyPhoto

ThickBox

jQuery lightBox plugin

Slimbox

Facebox

NyroModal

Pirobox

FancyZoom meet-jquery

imgBox

IMAGEBOX

PICBOX

CeeBox

TopUp

NotesForLightBox

YoxView

Fancy Zoom

Image Zoom

ZOOMIMAGE

Sexy LightBox

Image Magnify

SuperBox!


2. slide / gallery

1. Basic

slideViewer

jFlow

jQuery.flickrGallery

Photo Slider

s3Slider

jqGalScroll

Dynamic Image Gallery

GalleryView

AD Gallery

Moving Boxes

slideViewerPro

Pikachoose

CrossSlide

Apple-style Slideshow Gallery

jqFancyTransitions

Nivo Slider

A Simple jQuery Slideshow

Image Strip

jQuery Blinds

BBC Radio 1 Zoom Tabs

jquery.showcase

jQuery slideView


2. Unique

SPACEGALLERY

jQuery Cycle Plugin

Slider Gallery

jQuery.popeye

supersized

Beautiful jQuery slide

morphing gallery

ImageFlow

Sliding Image Gallery

Animate Panning Slideshow

Looped Slider

Mosaic Slideshow

Zoomer Gallery

Smooth Div Scroll

Simple Controls Gallery

z-index gallery

Image Cube

Micro Image Gallery

background image slideshow

Flip!

Switch Display

jFancyTile

Gallery Slider Plugin


3. Contents slider

Easy Image or Content Slider

horinaja

loopedSlider

Slick and Accessible Slideshow

Making a Content Slider with jQuery UI

Content Slider with jQuery

EOGallery

dualSlider

simplesli.de


4. Multifunction

Galleria

Galleriffic

JQUERY MULTIMEDIA PORTFOLIO

FeaturedContentSlider

Start/Stop Slider

AnythingSlider

COIN SLIDER

jQuery.slideShow({});

aviaslider



3. Carousel

prettyGallery

jQuery Image Scroller

Infinite Carousel

Step Carousel Viewer

jCarousel

jCarousel Lite

jQuery.ScrollShow

Agile Carousel

infinite JQuery carousel

Feature Carousel

Tiny Carousel

bxCarousel


4. Tooltip

jtip

clueTip

Digg-style post sharing tool

jQuery Popup Bubble

Easiest Tooltip

Simple CSS + Javascript Tooltip with jQuery

Coda Bubble

Sticky Tooltip

BeautyTips

Thumbnail Hover Popup

qTip

tinyTips

MopTip


5. Effect

Sliding Boxes

Creating an Image Slider

Image Overlay

Photo Zoom Out Effect

Thumbnail with Zooming Image

Hover Zoom

captify

hover-block-jquery

Greyscale Hover Effect

Hover fading transition

Fade Method

Stunning Sliding Door Effect

Using Opacity to Show Focus

Thumbnail with Fading Caption

jSquares

hoverFade

Fade In-Fade Out


6. Loupe

JQZoom

Featured Image Zoomer

Cloud Zoom

Image Power Zoomer v1.1

AnythingZoomer

Loupe and Lightbox

Apple-like Retina Effect

Zoomple


7. Menu

Image Rotator with Description

Fancy Thumbnail Hover Effect

Feature List

slidedeck

Content Slider Using jQuery UI

bxGallery

Background Image Navigation

IconDock

Horizontal Tooltips Menu

Realistic Hover Effect

Rolling Rounded Menu

Garage Door Style Menu

Animated Menus

Outside the Box

BubbleUp

AutoSprites

jQuery Dashboard

Smooth Animated Menu

Elastic Thumbnail Menu

megamenu

Spy Effect

quicksand

Simple Image Viewer

Horizontal Accordion


8. With css3

polaroid photo viewer with CSS3

CSS3 Lightbox Gallery

Cufonized Fly-out Menu

Slide Down Box Menu

Pretty Simple Content Slider

ShineTime

css3 transition slide

Contextual Slideout Tips

Bubble Navigation

A Fresh Bottom Slide Out Menu

Apple-Style Icon Slide Out Navigation

Little Boxes Menu

Slide Out Navigation

Interactive Picture

Thumbnails Navigation Gallery

Sliding Panel Photo Wall Gallery

Photo Desk

Beautiful Photo Stack Gallery

Image Highlighting and Preview

Kitchen Table


9. Others

PANORAMA VIEWER

VIRTUAL TOUR

Create a Resizable Image Grid

imgAreaSelect

Jcrop

gzoom

Image Upload And Crop

PhotoShoot

Image Flip

jQuery Corner

jQSlickWrap

Image Reflection

jcoverflip

ANIMATED INNERFADE

jThumb

It’s a Rainbow!

Page Peel Effect

jQuery-Notes

Filter Image View

Before/After

maphilight documentation

Plupload

puffing-smoke-effect

Animated Postcard

scrolling background effect

funky-parallax-background-effect

Mouse Movements With JParallax

Shadow Motion Effect

Sponsor Flip Wall

Spritely

jQuery Robot

Drag to Share

Animate Curtains Opening

Filling Up Using jQuery

Full Size Background Image

Lazy loader

jQuery Canimate

Sudo Slider

imgCenter

The Sexy Curls

Animated Landscape Header

Flickr-Style Photo Tagging

QuickFlip


2014. 1. 22. 11:52 - 나쁜철군

전화번호 정규식, 이메일 정규식, 빈값체크 정규식

전화번호 정규식, 이메일 정규식, 빈값체크 정규식

모든 공백 체크 정규식

var regExp = /\s/g;


숫자만 체크 정규식

var regExp = /^[0-9]+$/;


이메일 체크 정규식


var regExp = /^[0-9a-zA-Z]([-_\.]?[0-9a-zA-Z])*@[0-9a-zA-Z]([-_\.]?[0-9a-zA-Z])*\.[a-zA-Z]{2,3}$/i; 



핸드폰번호 정규식


var regExp = /^\d{3}-\d{3,4}-\d{4}$/;



일반 전화번호 정규식


var regExp = /^\d{2,3}-\d{3,4}-\d{4}$/;



아이디나 비밀번호 정규식


var regExp = /^[a-z0-9_]{4,20}$/; 



휴대폰번호 체크 정규식


var regExp = /^01([0|1|6|7|8|9]?)-?([0-9]{3,4})-?([0-9]{4})$/;



if ( !regExp.test( $(#hp).val() ) ) {

      alert("잘못된 휴대폰 번호입니다. 숫자, - 를 포함한 숫자만 입력하세요.");

      return false

}

2014. 1. 21. 10:06 - 나쁜철군

카카오톡 히어로메이커 무과금 육성(공략)

카카오톡 히어로메이커 육성(공략)


오늘 포스팅하는 내용은 카카오톡 게임 히어로메이커 입니다.


히어로메이커는 4:33분이라는 게임회사에서 만든 게임인데요.


이게 은근 중독성이 강하고 현질유도가 심해서 무과금유져를 매우 화나게합니다. 




히어로메이커를 깔고나서 튜토리얼 내용을 따라하고 나면 이제부터 본격적인 게임의 시작이라고 할 수 있습니다.


하지만 무과금유저들은 무턱대고 미션을 하다보면 렙이 쭉쭉 올라가는것을 볼 수 있습니다.


이러면 망하는겁니다. ^^ 무과금유져는 최대한 렙업을 천천히 하는게 좋습니다. 그래서 왠만하면 미션을 하지 않는것을 추천


그럼 어떻게 아이템을 맞추느냐?? 



히어로메이커에는 미션수행시 슈퍼보스가 등장합니다. 


그중에서 이벤트 보스라는놈이 있는데요. 


이놈을 클리어 한다면 이벤트 티켓을 줍니다. 


이 이벤트 티켓으로 뽑기를 돌리면 이벤트 코스튬과 레어 장비를 주는데요. 


무과금 유져들은 거의 여기에 신경을 쓰는것이 좋습니다.



하지만 혼자서는 이벤트 보스를 잡기 힘드니 친구들에게 요청을 하여 같이 레이드를 하시거나 또는 공개레이드로 


전향을 시켜서 모든 유져들이 잡을 수 있도록 하는것도 하나의 방법입니다.



그리고 파워가 부족할 시에는 공개레이드 방에 들어가면 사람들이 공개수배해 놓은 이벤트 보스방에 들어가서


무료로 한번 이용할 수 있는 방어감소와 공격을 1회 날려주고 이벤트 보스가 잡힐때까지 다른 볼 일을 보시면 되게씁니다.



공개수배된 이벤트 보스는 하루에 10번까지 참여가 가능하며, 내가 공개수배를 할 수 있는 횟수는 5번까지이니


못해도 하루에 15개의 이벤트티켓을 모을 수 가 있는데요. 



이 이벤트 티켓으로 뽑기를 해서 어느정도 강해졌다고 생각하시면


배틀 모드로 들어가서 매트릭스를 모으시는걸 노려보세요.


매트릭스를 다 모았을땐 영구적으로 스텟을 올려주는데요. 


각 미션을 수행하는 지역마다 하나의 매트릭스를 완성할 수 있다.


그리고 절대~~ 절대~~ 미션을 수행하면서 떨어지는 아이템을 강화하지 마세요!!!


이벤트 티켓에서 나오는 레어 아이템이 훨~~~~~~~~~~~~~~~~~~~씬더 강하고 방어력도 쎄니깐요.


저도 멋모르고 하다가 초반에 골드좀 날려서 ㅜㅜ


무과금 유져는 어느게임이든 시간이 오래걸리기 마련인데요.


위 포스팅처럼 이벤트 티켓을 잘 이용한다면 빠른시간안에 강력해진


나의 히어로를 만나볼 수 있을겁니다.


2014. 1. 21. 09:28 - 나쁜철군

CJ몰도 해킹당했나??

CJ몰도 해킹당했나??


지난주에 국민카드, 농협카드, 롯데카드 개인정보 유출사고로 화제가 되었는데요.


아직도 충격이 가시기 전에 또다른 해킹의심문제가 떠오르고 있습니다.




문제의 회사는 CJ몰인데요.


http://news.naver.com/main/ranking/read.nhn?mid=etc&sid1=111&rankingType=popular_day&oid=055&aid=0000270834&date=20140120&type=2&rankingSeq=1&rankingSectionId=101


기사를 살펴보면 씨제몰(CJ mall) 가입자들은 자신의 포인트로 상품권이 결제가 됐는데도


정상적인 결제라면 인증 문자와 결제 확인 문자가 와야 하는데도 해당 휴대전화로 문자가 오지 않아


결제가 된 내용을 모르고 있다가 나중에 이메일을 확인하고선 알게되었다고 합니다.


이 인터넷사이트 쇼핑몰은 스파트폰 앱을 이용할때에는 아이디와 비밀번호만 있다면


별도의 인증 절차없이도 손쉽게 포인트를 이용하여 결제를 할 수 있다는 헛점을 노린것으로 보이며


보통의 사람들이 포인트를 할인 받아서 현금처럼 쓰기 위해서 쌓아놓는다는 점을 이용한것으로 보입니다.


상황이 이런데도 CJ몰은 사이버수사대에 수사의뢰를 했다는것외에는 별다른 공지조차 하고 있지 않으며


공식적인 답변을 하지 않고 있는것으로 알고 있습니다.


새해들어서 많은 해킹피해들로 국민들을 불안에 떨게 하고 있는네요.


어서 빨리 문제가 해결되었으면 좋겠습니다.

2014. 1. 18. 13:23 - 나쁜철군

윈드러너 쿠폰(루비 20개)

윈드러너 쿠폰(루비 20개)


윈드러너에서 슈마커 이벤트로 루비 20개 쿠폰이벤트를 합니다.




시크릿 박스를 오픈하기 위해서는 챔피언쉽포인트가 필요합니다.



그리고 윈드러너 쿠폰 이벤트



윈드러너 루비 쿠폰 번호 16자리 : 2014-SHOE-SHOE-SHOE


2014SHOESHOESHOE


위 쿠폰번호를 입력하시고나서 확인버튼을 누르면


윈드러너 앱이 재실행 되면서 슈마커쿠폰 루비 20개 지급이라는 확인창이 뜹니다.


그럼 즐거운 윈드러너를 위해서 모두 루비 20개를 받아가세요 ^^




2014. 1. 18. 12:28 - 나쁜철군

국민은행(국민카드) 개인정보 유출 확인방법

국민은행(국민카드) 개인정보 유출 확인방법


1. 국민카드 홈페이지 접속

https://www.kbcard.com/



2. 개인정보 유출확인을 위한 본인 인증용 개인정보 수집.이용 동의


3. 개인정보 유출여부 확인


국민카드는 정말 답이 없어보입니다.

이상황에서 개인정보 유출확인을 하려고 하면 개인정보이용 수집동의를 또 받는군요.

롯데카드나 농협카드는 유출확인시 핸드폰으로 인증시에만 받는듯한데

국민은행은 무조건 개인정보수집이용동의를 하라고 하네요. 하하하

정말 미친것같습니다.

2014. 1. 18. 12:21 - 나쁜철군

농협카드 개인정보 유출확인방법

농협카드 개인정보 유출확인방법


농협카드 개인정보 유출바로가기



1. 농협카드 사이트 접속

http://banking.nonghyup.com/nhbank.html



2. 홈페이지 개인정보 유출확인 페이지에서 개인정보유출 여부확인 클릭

http://www.cheumsketch.co.kr/front/pop/usrInfoCheck00.jsp



3. 본인인증



귀찮더라도 자신의 개인정보가 어떤것들이 유출이 됐는지 확인해보시고

혹시라도 비밀번호가 유출되었다면 변경하여 차후 다른 문제가 발생하지 않도록 조취하는게 좋을듯 싶네요.

2014. 1. 18. 12:13 - 나쁜철군

롯데카드 개인정보 유출확인

롯데카드 개인정보 유출확인


1. 롯데카드 홈페이지 접속

http://www.lottecard.co.kr


2. 고객 안내문에 있는 개인별 조회 클릭



3. 본인인증



국민은행(국민카드), 농협(농협카드), 롯데카드 세군데서 개인정보가 유출되었다고 합니다.

다들 한번씩 살펴보시고 개인정보를 변경하시는게 좋을듯 합니다.


맨날 이렇게 개인정보가 털리고 있는데 그에 따른 보상같은건 절대로 없는 우리나라

우리나라 개인정보는 이제 개인정보가 아니라 세계공용정보가 되어가고 있네요 ㅜㅜ







2014. 1. 16. 10:04 - 나쁜철군

2013년 근로소득 연말정산 서류작성방법

2013년 근로소득 연말정산 안내


안녕하세요.

어제부터 직장인들의 13번째 월급이라는 연말정산이 시작되었습니다.

어제는 첫날이라 그런지 연말정산간소화 서비스를 이용해서 

근로소득 연말정산 서류를 뽑으려는 사람들이 많아서 저도 땀좀 흘렸습니다. ㅠㅠ


오늘은 2013년 근로소득 연말정산 안내에 대해서 알아보겠습니다.

필요한 부분들을 링크해 놓을테니 국세청 홈피에서 확인하시는게 좋습니다.







1. 근로소득 공제항목별 설명보기



2. 주요서식 작성방법



3. 근로소득 소득공제신고서 작성방법



4. 근로소득 원천징수영수증(근로소득 지급명세서) 작성방법



5. 근로소득 연말정산 자주묻는 상담사례



6. 근로소득 연말정산 자동계산기




국세청 2013년 근로소득 연말정산 안내 홈페이지