- DMM.com(旧DMM.comラボ含む)
- DMM.comラボ16新卒エンジニア研修 - (2016/08/24)
- DMM.comの新卒技術研修がスタートしました! - (2019/04/25)
- GMOインターネット
- 「Web 基礎」という講義をしました - (2019/05/17)
- GMOペパボ
- 2013 年の新卒研修メニュー
- ペパボ新卒エンジニアの研修を開始している - (2013/05)
- 第二新卒研修をしていた - (2014/08)
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
[ssh_connection] | |
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no | |
private_key_file = /home/ec2-user/.ssh/dev-key.pem |
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
$ curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py" | |
$ sudo python get-pip.py |
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
$ sudo amazon-linux-extras install -y ansible2 | |
$ ansible --version | |
ansible 2.x.x |
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
$ python -m cProfile -s cumulative julia_set.py | |
Length of x: 1000 | |
Total elements: 1000000 | |
calculate_z_serial_purepython took 23.838048934936523 seconds | |
36221995 function calls in 25.485 seconds | |
Ordered by: cumulative time | |
ncalls tottime percall cumtime percall filename:lineno(function) |
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
{ | |
"companies":{ | |
"company1":{"company_code": "A001","company_name": "A会社","address": "A地区","mail": "[email protected]"}, | |
"company2":{"company_code": "B001","company_name": "B会社","address": "B地区","mail": "[email protected]"}, | |
"company3":{"company_code": "C001","company_name": "C会社","address": "C地区","mail": "[email protected]"} | |
} | |
} |
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
$ vim |
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
$ npm install -g firebase-tools |
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
#!/usr/bin/python | |
# -*- Coding: utf-8 -*- | |
class Hoge(object): | |
def huga(): | |
try: | |
raise TypeError('TYPE ERROR!') | |
except Exception as e: |
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
$ sudo apt-get install -y openjdk-8-jdk |
NewerOlder