Skip to content

Instantly share code, notes, and snippets.

View pokuwagata's full-sized avatar

yn2011 pokuwagata

  • Tokyo / Japan
View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Feeds of pokuwagata from Inoreader [https://www.inoreader.com]</title>
</head>
<body>
<outline text="LIVESENSE ENGINEER BLOG" title="LIVESENSE ENGINEER BLOG" type="rss" xmlUrl="https://made.livesense.co.jp/feed" htmlUrl="https://made.livesense.co.jp/"/>
<outline text="Pulp Note" title="Pulp Note" type="rss" xmlUrl="https://pulpxstyle.com/feed/" htmlUrl="https://pulpxstyle.com/"/>
<outline text="microCMSブログ" title="microCMSブログ" type="rss" xmlUrl="https://blog.microcms.io/feed.xml" htmlUrl="https://blog.microcms.io/feed.xml"/>
<outline text="メルカリエンジニアリングブログ" title="メルカリエンジニアリングブログ" type="rss" xmlUrl="https://engineering.mercari.com/blog/feed.xml" htmlUrl="https://engineering.mercari.com/blog/feed.xml"/>
public class Plotter {
class Point {
Double x;
Double y;
Point(Double x, Double y) {
this.x = x;
this.y = y;
}
import java.util.ArrayList;
import java.util.List;
public class Plotter {
static class Point {
Double x;
Double y;
Point(Double x, Double y) {
<html>
<body>
<script src="index.js"></script>
</body>
</html>
for(i=0; i<10000; i++) {
var p = document.createElement('p');
p.textContent = 'test';
document.body.appendChild(p);
}
window.alert('test');
@startuml
interface Aggregate {
iterator()
}
class ConcreteAggregate {
iterator()
}
interface Iterator {
hasNext()
next()
@startuml
activate Caretaker
Caretaker -> Originator: createMemento
activate Originator
create Memento
Originator -> Memento: new
Originator -> Memento: addSomething
activate Memento
Memento -> Originator
deactivate Memento
@startuml
entity 社員情報マスタ {
id(PK)
--
Name
Birth
DepartmentId(FK)
}
entity 部署情報マスタ {
id(PK)