sudo yum install rpm-build python3-devel
pip install setuptools_rust
PyPi package の download
| import React, { useState, useEffect } from 'react'; | |
| import axios from 'axios'; | |
| const HelloComponent = () => { | |
| const [helloMessage, setHelloMessage] = useState('Loading...'); | |
| useEffect(() => { | |
| const fetchData = async () => { | |
| try { | |
| const graphqlQuery = { |
| Name: example-package | |
| Version: 1.0 | |
| Release: 1%{?dist} | |
| Summary: An example RPM package | |
| License: GPL | |
| URL: http://www.example.com | |
| Source0: example.txt | |
| BuildArch: noarch |
sudo yum install rpm-build python3-devel
pip install setuptools_rust
PyPi package の download
Note: This article is only for amazon.co.jp.
Upload your pdf via Send to Kindle (https://www.amazon.co.jp/sendtokindle) app.
Remove an item listed in personal documents.
| FROM node:14 | |
| RUN apt-get update \ | |
| && npm install -g @google/clasp -g \ | |
| WORKDIR /workdir | |
| VOLUME /workdir | |
| SHELL ["/bin/bash", "-c"] |
| # Ref: https://webird-programming.tech/archives/262 | |
| function scraping() { | |
| var fetch = UrlFetchApp.fetch("https://example.com/"); | |
| var response = fetch.getContentText(); | |
| Logger.log(response); | |
| } |
| $ANDROID_HOME/emulator/emulator -avd Pixel_3a_XL_Edited_API_25 |
| iconv -c -f sjis -t utf8 original.txt -o output.txt |
| tar -cvf xxx.tar.yy directory |
| docker rm -f $(docker ps -qa) |