This file contains 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
<template> | |
<div class="d-flex w-100 align-center"> | |
<!-- | |
for v-money | |
the event is called three times | |
if the `@change.native` or `@input` is used, | |
so the @blur.native is used instead. | |
https://github.com/vuejs-tips/v-money/issues/42 | |
--> | |
<input |
This file contains 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
#!/usr/bin/env python | |
# | |
# AES cryptography algorithm implementation in Counter mode | |
# | |
# Author: Radek Domanski | |
# email: radek.domanski # gmail.com | |
# original source url : https://github.com/rdomanski/AES-CTR/blob/master/aes-ctr.py | |
# ported to python 3 : namh | |
import binascii |
This file contains 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 | |
namespace App\Http\Controllers\Info\Terms; | |
use Illuminate\Http\Request; | |
use DB; | |
use App\Lib\Info\Terms; | |
use App\Http\Controllers\App\BaseViewController; |
This file contains 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 | |
namespace App\Http\Controllers\App; | |
use App\Http\Controllers\Controller; | |
use App\Lib\CorpValues; | |
use Illuminate\Support\Facades\View; | |
class BaseViewController extends Controller | |
{ |
This file contains 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
{ | |
"files.watcherExclude": { | |
"**/.bloop": true, | |
"**/.metals": true, | |
"**/.ammonite": true | |
}, | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe", |
This file contains 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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "ctrl+r", | |
"command": "workbench.action.gotoSymbol" | |
}, | |
{ | |
"key": "ctrl+k ctrl+b", | |
"command": "workbench.action.toggleSidebarVisibility" | |
}, |
This file contains 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 | |
require_once '../Popbill/PopbillCashbill.php'; | |
define('LINKHUB_COMM_MODE','CURL'); | |
$LinkID = 'LINKID'; | |
$SecretKey = 'fjkdjslEFEJKLJFKDSLGdfjksl'; | |
$CashbillService = new CashbillService($LinkID, $SecretKey); | |
// 연동환경 설정값, 개발용(true), 상업용(false) | |
$CashbillService->IsTest(true); |
This file contains 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
Show hidden characters
{ | |
// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and | |
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope | |
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is | |
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. | |
// Placeholders with the same ids are connected. | |
// Example: | |
// "Print to console": { | |
// "scope": "javascript,typescript", |
This file contains 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
#!/usr/bin/python | |
# -*- coding: utf8 -*- | |
""" | |
This is a port of Chris Veness' AES implementation: http://www.movable-type.co.uk/scripts/aes.html | |
Copyright ⓒ2005-2008 Chris Veness. Right of free use is granted for all | |
commercial or non-commercial use. No warranty of any form is offered. | |
Ported in 2009 by Markus Birth <markus@birth-online.de> | |
2018-02 by namh |
NewerOlder