Skip to content

Instantly share code, notes, and snippets.

View ShinoharaTa's full-sized avatar
🌔
月の上からお届けします

T.Shinohara ShinoharaTa

🌔
月の上からお届けします
View GitHub Profile

Keybase proof

I hereby claim:

  • I am shinoharata on github.
  • I am tashinohara (https://keybase.io/tashinohara) on keybase.
  • I have a public key ASCXHsPic0Q204EjSMSguPr3VfGhy3oLLMqQQfkQnsP_GAo

To claim this, I am signing this object:

@ShinoharaTa
ShinoharaTa / Main.vue
Created September 20, 2018 15:33
退勤時間を記録するだけのサービスをVue.jsとFirebaseで作成した ref: https://qiita.com/Shino_JK/items/9393aaa0fabcba4702b3
<template>
<div id="main" class="container">
<div class="card mt-3" v-if="user">
<div class="card-body">
<form class="create-todo">
<div class="form-group">
<div class="mt-2 d-inline-flex align-items-stretch">
<div class="text-center m-2">
<a class="mb-2" @click="setTimeUpDown('years', 1)"><i class="fas fa-caret-up" aria-hidden="true"></i></a>
<p class="m-0 p-0">{{dateFormatted.YYYY}}</p>
@ShinoharaTa
ShinoharaTa / bootstrap_button_sns.css
Created September 21, 2018 14:16
Bootstrapに上書きして、いい感じに使う(SCSSなし) ref: https://qiita.com/Shino_JK/items/34d7e4676dcc4ed430d8
.bg-twitter {
background-color: #55acee;
text: #FFF;
}
.bg-mastodon {
background-color: #2b90d9;
text: #FFF;
}
@ShinoharaTa
ShinoharaTa / file0.txt
Last active May 22, 2019 08:14
jQuery QR Codeの問題点と解決 ref: https://qiita.com/Shino3/items/8373e4c96a354d6c38cc
$("#tipQR").html("");
$("#tipQR").qrcode({ width: 240, height: 240, text: "Shino3(e)" });
@ShinoharaTa
ShinoharaTa / 1_Basic300.json
Last active July 23, 2022 07:04
プログラミング英語検定 英単語一覧のJSON
[
{
"name": "accept",
"a": "動詞",
"description": "受諾する"
},
{
"name": "access",
"a": "動詞/名詞",
"description": "アクセスする/アクセス"
@ShinoharaTa
ShinoharaTa / first.js
Last active April 15, 2023 12:40
Get the bluesky first posts.
import bsky from "@atproto/api";
const { BskyAgent } = bsky;
const agent = new BskyAgent({ service: "https://bsky.social" });
const { data } = await agent.api.com.atproto.repo.listRecords({
reverse: true,
repo: "shino3.bsky.social",
collection: "app.bsky.feed.post",
});
console.log(data.records.slice(-1)[0]);