Skip to content

Instantly share code, notes, and snippets.

@JasonShin
JasonShin / preprocess.ts
Last active October 30, 2019 08:16
Kalimdor dataset preprocess
function getTitle(name) {
// example of name: "Braund, Mr. Owen Harris"
const rawTitle = name.split(' ')[1];
// TODO: fillna?
if (rawTitle.indexOf('Mr') !== -1) {
return 1;
} else if (rawTitle.indexOf('Miss') !== -1) {
return 2;
} else if (rawTitle.indexOf('Mrs') !== -1) {
return 3;
@Hendrixer
Hendrixer / editor.css
Last active September 27, 2025 02:47
VS code custom CSS for theme
.composite-title, .composite-title, .vs-dark .monaco-workbench>.activitybar>.content {
background-color: rgba(40, 44, 52, 1) !important;
}
.tabs-container, .tab, .tab.active, .title-actions, .tablist, .tabs-container, .tabs, .composite.title {
background-color: rgba(40, 44, 52, 1) !important;
}
.tab.active, .tab {
border-right: 0px !important;