I hereby claim:
- I am taichanne30 on github.
- I am taichan (https://keybase.io/taichan) on keybase.
- I have a public key ASAUbmJ3vklOVZb4Sk7Zbx5lgRL2r66mkriiG5tMo296ogo
To claim this, I am signing this object:
| ISC License | |
| Copyright (c) 2022-2024, Balázs Orbán | |
| Permission to use, copy, modify, and/or distribute this software for any | |
| purpose with or without fee is hereby granted, provided that the above | |
| copyright notice and this permission notice appear in all copies. | |
| THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
| WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
I hereby claim:
To claim this, I am signing this object:
| const strArray = ["This", "is", "test", "code", "to", "join", "string"]; | |
| const arrayToString = (arr) => arr.reduce((acc, cur) => acc + " " + cur); | |
| console.log(arrayToString(strArray)); |
| document.querySelectorAll('a[aria-label][data-focus-id][target=_blank]').forEach(anc => { | |
| if(anc.getAttribute('href').search(/https?:\/\/drive\.google\.com\/open\?/) === 0) | |
| window.open(anc.getAttribute('href').replace(/https?:\/\/drive\.google\.com\/open\?/, 'https://drive.google.com/uc?export=download&'), anc.getAttribute('href')) | |
| }) |
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <div class="top"> |
| require 'slack-ruby-client' | |
| class OutOfRangeError < Exception | |
| end | |
| TOKEN = 'Replace here your token' | |
| if ARGV.include?("--help") | |
| puts "このアプリケーションは指定したSlackのチャンネルに対して全員招待をするものです。" | |
| puts "使用法: ruby inviteAll.rb [引数]\n" |
| int count = 0; //カウント用変数 | |
| void setup(){ | |
| background(255,255,255); | |
| size(480, 480); | |
| stroke(0); | |
| noFill(); | |
| } | |
| void draw(){ |
| int count = 0; //カウント用変数 | |
| void setup(){ | |
| background(255,255,255); | |
| size(480, 480); | |
| stroke(0); | |
| noFill(); | |
| } | |
| void draw(){ |
| int count = 0; //カウント用変数 | |
| void setup(){ | |
| background(255,255,255); | |
| size(480, 480); | |
| stroke(0); | |
| noFill(); | |
| } | |
| void draw(){ |
| { | |
| let data = [ | |
| ["イギリス", 245, 63181, 2434], | |
| ["日本", 378, 126200, 4841], | |
| ["アメリカ", 9628, 327830, 20412], | |
| ["ロシア", 17098, 146804, 2097] | |
| ]; | |
| let form = document.forms[0]; | |
| let inputs = form.getElementsByTagName("input"); |