sudo bash -c "echo '%wheel ALL=(ALL:ALL) NOPASSWD: ALL' >> /etc/sudoers"logout & login
| { | |
| id: '4f36ff7f-f087-45bd-bbbe-83b9a8e412d8', | |
| base: 'dark', | |
| name: 'Ribbon Dark', | |
| props: { | |
| X2: ':darken<2<@panel', | |
| X3: 'rgba(255, 255, 255, 0.05)', | |
| X4: 'rgba(255, 255, 255, 0.1)', | |
| X5: 'rgba(255, 255, 255, 0.05)', | |
| X6: 'rgba(255, 255, 255, 0.15)', |
| #EXTM3U | |
| #EXTENC: UTF-8 | |
| #EXTINF:1,ABC Classic FM NSW | |
| http://live-radio01.mediahubaustralia.com/2FMW/mp3/;*.mp3 | |
| #EXTINF:1,ABC Triple J | |
| http://live-radio01.mediahubaustralia.com/2TJW/aac/ | |
| #EXTINF:1,LISTEN.moe | |
| https://listen.moe/stream | |
| #EXTINF:1,ORF Radio FM4 | |
| https://orf-live.ors-shoutcast.at/fm4-q1a |
I hereby claim:
To claim this, I am signing this object:
EN / JA
Experimental faith for the modern age
In the beginning they created the principle. Now the world was derived from it.
I hereby claim:
To claim this, I am signing this object:
| import math, random, sugar | |
| type | |
| Matrix[T; M, N: static[int]] = array[1..M, array[1..N, T]] | |
| # 加法 | |
| proc `+`[T, I, J](a: Matrix[T, I, J], b: T): Matrix[T, I, J] = | |
| var c: Matrix[T, I, J] | |
| for i in 1..I: | |
| for j in 1..J: |
| const ADMIN_USER_ID = {製作者のLINE ID}; | |
| const CHROSTE_GROUP_ID = {ユニットのLINEグループID}; | |
| const CHANNEL_ACCESS_TOKEN = {LINE Messaging APIのアクセストークン}; | |
| // 毎週日曜日のトリガー | |
| function weekly() { | |
| post_differs(CHROSTE_GROUP_ID); | |
| } | |
| // 毎夜のトリガー |
| // I2Cのテスト(AQM0802A) | |
| // ha2zakura | |
| #include <xc.h> // PIC のハードウエア定義 | |
| #define _XTAL_FREQ 48000000 | |
| #define true 1 | |
| #define false 0 | |
| #define int8_t signed char |