- 「文化をつくる」は悪手だと個人的に思う
- スキルアップしたいと思わない理由から潰そう
- スキルアップしても単価が上がらない = 給料が上がらない
- スキルアップすると退職する -> PHPの現場 受託の現場
- このあたりも含めて、スキルアップして欲しい、という上層部のサポートが必要
- スキルアップしたいと思わない理由から潰そう
- スクラム採用よろしく、育成も全社スクラムでやるのがいいよ
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
# Run the training | |
trainer.run() | |
# ここから書き足す | |
# Save the trained model | |
chainer.serializers.save_npz("trained_mnist.model", model) | |
if __name__ == '__main__': | |
main() |
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
$ nmap -A 192.168.17.70 | |
Starting Nmap 5.51 ( http://nmap.org ) at 2019-02-04 16:15 JST | |
Nmap scan report for 192.168.17.70 | |
Host is up (0.025s latency). | |
Not shown: 997 filtered ports | |
PORT STATE SERVICE VERSION | |
22/tcp open ssh OpenSSH 5.3 (protocol 2.0) | |
| ssh-hostkey: 1024 e2:57:6d:27:65:f2:21:6e:2c:a6:d8:a0:73:8e:36:90 (DSA) | |
|_2048 a7:b7:d6:a3:39:2e:65:9e:15:9b:3f:c1:81:a7:fa:92 (RSA) |
[tex:{\frac{1}{2}}]
- 監査ルールを確認
# auditctl -l
No rules
- 監査ルールを指定
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
select code, max(price) from grpsample group by code; |
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
sudo su | |
mount /dev/sda2 /mnt/ #sda2 は c:\Windows ディスク | |
cd /mnt/Windows/System32 #Windowsのディレクトリに移動 | |
mv Utilman.exe Utiltman.exe.org #痕跡を消す | |
cp cmd.exe utilman.exe #cmd.exe を utilman.exe にコピー | |
cd / | |
umount /mnt #ディスクを切り替え | |
poweroff |
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 | |
class Person { | |
private $name; // instance field | |
public function setName($name) { // instance method | |
$this->name = $name; | |
} | |
public function getName() { // instance method | |
return $this->name; |
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
# 箱ひげ図の描画 | |
# 品種ごとに萼片の長さを見比べる | |
data = [setosa.SepalLength, versicolor.SepalLength, virginica.SepalLength] | |
plt.boxplot(data) # 箱ひげ図の描画 boxplot() | |
plt.xlabel("Class") # x軸名 | |
plt.ylabel("SepalLength") # y軸名 | |
# 各品種のラベル | |
plt.setp(plt.gca(), xlabel=["setosa", "versicolor", "virginica"]) # ラベル付けは setp() | |
plt.show() |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>HTML5 audio</title> | |
</head> | |
<body> | |
<audio controls> | |
<source src="[ファイルパス/ファイル名]" type="audio/mpeg" /> | |
<p>Your device does not support HTML5 audio.</p> |
NewerOlder