This file contains hidden or 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
| FROM debian:bookworm | |
| RUN apt-get update | |
| RUN apt-get install -y gcc g++ make software-properties-common curl wget vim patchelf file | |
| RUN apt-get clean && rm -rf /var/lib/apt/lists/* | |
| CMD ["/bin/bash"] |
This file contains hidden or 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 'net/http' | |
| require 'openssl' | |
| uri = URI('https://host.docker.internal:8443/') | |
| http = Net::HTTP.new(uri.host, uri.port) | |
| http.use_ssl = true | |
| # 自己署名許可 | |
| http.verify_mode = OpenSSL::SSL::VERIFY_NONE |
This file contains hidden or 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
| import React, { FC, useState } from 'react'; | |
| import FullCalendar from '@fullcalendar/react'; | |
| import { DateSelectArg, EventInput, EventDropArg } from '@fullcalendar/core'; | |
| import timeGridPlugin from '@fullcalendar/timegrid'; | |
| import interactionPlugin from '@fullcalendar/interaction'; | |
| import jaLocale from '@fullcalendar/core/locales/ja'; | |
| export const CalendarComponent: FC = () => { | |
| const [events, setEvents] = useState<EventInput[]>([]); |
This file contains hidden or 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
| 3.2.8 |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Skill Graph</title> | |
| <script type="text/javascript" src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js" defer></script> | |
| <script src="./index.js" defer></script> | |
| <style type="text/css"> |
This file contains hidden or 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
| #!/bin/bash | |
| SPRINT_NUM="$(git branch --remote --list "origin/sprint/*" | awk -F '/' '{print $3}' | sort -n -r | head -1)" | |
| echo "sprint/$SPRINT_NUM" | |
| gh pr create --base develop --head "sprint/$SPRINT_NUM" --title "sprint/$SPRINT_NUM -> main" --body "検証反映" |
This file contains hidden or 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
| steps: | |
| - id: install-deps | |
| name: node:22.14.0 | |
| entrypoint: npm | |
| args: | |
| - ci | |
| - id: build-bundle | |
| name: node:22.14.0 | |
| entrypoint: npm |
This file contains hidden or 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
| steps: | |
| - id: install-deps | |
| name: node:22.14.0 | |
| entrypoint: npm | |
| args: | |
| - ci | |
| - id: build-bundle | |
| name: node:22.14.0 | |
| entrypoint: npm |
This file contains hidden or 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
| steps: | |
| - name: 'node:22.14.0' | |
| entrypoint: 'npm' | |
| args: ['install'] | |
| - name: 'node:22.14.0' | |
| entrypoint: 'npm' | |
| args: ['run', 'build:prod'] | |
| # Cloud Storageにアップロードする |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <script type="text/javascript" src="https://stuk.github.io/jszip/dist/jszip.js"></script> | |
| <script type="text/javascript" src="https://stuk.github.io/jszip/vendor/FileSaver.js"></script> | |
| <title>アイコンジェネレータ</title> | |
| </head> |
NewerOlder