Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| /** | |
| * USB HID Keyboard scan codes as per USB spec 1.11 | |
| * plus some additional codes | |
| * | |
| * Created by MightyPork, 2016 | |
| * Public domain | |
| * | |
| * Adapted from: | |
| * https://source.android.com/devices/input/keyboard-devices.html | |
| */ |
| PassengerId = testData[1] | |
| testData = testData[-c(1, 8:11)] | |
| testData$Sex = gsub("female", 1, testData$Sex) | |
| testData$Sex = gsub("^male", 0, testData$Sex) | |
| test_master_vector = grep("Master.",testData$Name, fixed=TRUE) | |
| test_miss_vector = grep("Miss.", testData$Name, fixed=TRUE) | |
| test_mrs_vector = grep("Mrs.", testData$Name, fixed=TRUE) | |
| test_mr_vector = grep("Mr.", testData$Name, fixed=TRUE) |
| sudo yum install byobu -y --enablerepo=epel-testing |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #!/bin/bash | |
| # Script to convert PDF file to JPG images | |
| # | |
| # Dependencies: | |
| # * pdftk | |
| # * imagemagick | |
| PDF=$1 |