I hereby claim:
- I am say8425 on github.
- I am say8425 (https://keybase.io/say8425) on keybase.
- I have a public key whose fingerprint is 1F43 EADD 2223 71E0 C76B DE24 C2AB 3039 6DE1 C561
To claim this, I am signing this object:
#if ($Component_Name) | |
#set($CapitalizedComponentName = $Component_Name.substring(0,1).toUpperCase() + $Component_Name.substring(1)) | |
#else | |
#set($CapitalizedComponentName = $DIR_PATH.split("\/").get($DIR_PATH.split("\/").size() - 1)) | |
#end | |
import type { FC } from 'react'; | |
import styled from 'styled-components'; | |
type Props = { |
# Adding SoftEtherVPN PPA to your system | |
# https://code.launchpad.net/~paskal-07/+archive/ubuntu/softethervpn | |
sudo add-apt-repository ppa:paskal-07/softethervpn | |
sudo apt-get update | |
# Upgrade System | |
sudo apt-get update && sudo apt-get upgrade | |
# Install SoftEtherVPN | |
sudo apt-get install softether-vpnserver |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
apt update | |
apt install ruby -y | |
gem install bundler | |
git clone https://github.com/aws/aws-codedeploy-agent.git /opt/codedeploy-agent | |
sudo chown -R root.root /opt/codedeploy-agent | |
sudo chmod 644 /opt/codedeploy-agent/conf/codedeployagent.yml | |
sudo chmod 755 /opt/codedeploy-agent/init.d/codedeploy-agent | |
sudo chmod 644 /opt/codedeploy-agent/init.d/codedeploy-agent.service | |
cd opt/codedeploy-agent |
require 'slackistrano/capistrano' | |
require_relative 'lib/slack_message' |
language: ruby | |
rvm: | |
- 2.2.5 | |
services: | |
- mysql | |
sudo: true | |
before_script: | |
- chmod +x ./travis/* | |
- ./travis/mysql-version-upgrade-5.7.sh | |
- ./travis/mysql-reset-root-password.sh |
require 'json' | |
require 'rest-client' | |
url = 'http://openapi.e-gen.or.kr/openapi/service/rest/ErmctInsttInfoInqireService/getParmacyListInfoInqire'.freeze | |
key = 'Your Secret key' | |
params = {pageNo: 1, numOfRows: 100, ServiceKey: key} | |
data = RestClient.get(url, {params: params, accept: :json}) | |
total_count = (JSON.parse(data.body)['response']['body']['totalCount'] / 100.to_f).ceil | |
total_data = [] |