- 情報発信に前向き
- 技術書購入支援
- 社内勉強会が盛ん
- 勉強会参加推奨
- 多様なエンジニアのキャリアのルートが有る
- エンジニアの評価をエンジニアも行う
- エンジニアの採用をエンジニアも行う
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
0804865f <Stage1>: | |
804865f: 55 push ebp | |
8048660: 89 e5 mov ebp,esp | |
8048662: 83 ec 10 sub esp,0x10 | |
8048665: 8b 45 08 mov eax,DWORD PTR [ebp+0x8] | |
8048668: c7 00 0a 88 04 08 mov DWORD PTR [eax],0x804880a | |
804866e: 90 nop | |
804866f: 90 nop | |
8048670: c7 45 f8 03 00 00 00 mov DWORD PTR [ebp-0x8],0x3 | |
8048677: 8b 55 f8 mov edx,DWORD PTR [ebp-0x8] |
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
// Find difference element in Confluence history difference page | |
// and Scroll to the element. | |
function scroll_to_next_diff() { | |
let addedElements = document.getElementsByClassName('diff-html-added'); | |
let removedElements = document.getElementsByClassName('diff-html-removed'); | |
let targetElements = Array.from(addedElements) | |
.concat(Array.from(removedElements)); |
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
javascript: ( | |
function () { | |
function objectListToCsv(objList) { | |
let csvMap = {}; | |
for (let index = 0; index < objList.length; index++) { | |
const item = objList[index]; | |
for (const key in item) { |
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
package com.company; | |
import java.text.DateFormat; | |
import java.text.SimpleDateFormat; | |
import java.util.ArrayList; | |
import java.util.Date; | |
import java.util.List; | |
import java.util.logging.*; | |
/** |
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
javascript: (function () { | |
/* See to: https://stackoverflow.com/questions/106425/load-external-js-from-bookmarklet */ | |
loadjs = function () { function e(e, n) { var t, r, i, c = [], o = (e = e.push ? e : [e]).length, f = o; for (t = function (e, t) { t.length && c.push(e), --f || n(c) }; o--;)r = e[o], (i = s[r]) ? t(r, i) : (u[r] = u[r] || []).push(t) } function n(e, n) { if (e) { var t = u[e]; if (s[e] = n, t) for (; t.length;)t[0](e, n), t.splice(0, 1) } } function t(e, n, r, i) { var o, s, u = document, f = r.async, a = (r.numRetries || 0) + 1, h = r.before || c; i = i || 0, /(^css!|\.css$)/.test(e) ? (o = !0, (s = u.createElement("link")).rel = "stylesheet", s.href = e.replace(/^css!/, "")) : ((s = u.createElement("script")).src = e, s.async = void 0 === f || f), s.onload = s.onerror = s.onbeforeload = function (c) { var u = c.type[0]; if (o && "hideFocus" in s) try { s.sheet.cssText.length || (u = "e") } catch (e) { u = "e" } if ("e" == u && (i += 1) < a) return t(e, n, r, i); n(e, u, c.defaultP |
Test for Smart TOC. For more details, see this issue.
body
body
body
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
require("path").relative(process.cwd(), __filename) |
2019/09/08に実施されたISUCON9のオンライン予選へ初めて参加した。
チームは自分一人。
競技で実施したことやハマったことなどを記録する。
過去問の振り返りブログを1つ読んだぐらい。
詳しく対策が書かれていたけど、それをあまり自分のものにする時間が取れず、結局活かせなかった。。。
OlderNewer