下記の事前準備を行っておくと当日スムーズです。わからないことがあれば当日一緒に解決しましょう!
Mac の方は Xcode をインストールしていなければインストールしましょう。(特にダウンロードに時間がかかるので、最低限ダウンロードはしておいていただけると助かります!)
ダウンロード: https://developer.apple.com/download/release/
インストールしたら、コマンドラインユーティリティを有効にします。下記のコマンドをターミナルで実行します。
| SELECT repo_name, SUM(ARRAY_LENGTH(REGEXP_EXTRACT_ALL(content, r"(?i)bigquery"))) AS count | |
| FROM bigquery-public-data.github_repos.contents | |
| JOIN bigquery-public-data.github_repos.files | |
| ON contents.id = files.id | |
| GROUP BY repo_name | |
| ORDER BY count DESC | |
| LIMIT 100 |
| $source = '.\Album\' | |
| $destination = '.\Switch\' | |
| Get-ChildItem $source -PipelineVariable year | | |
| ForEach-Object { Get-ChildItem $year.Fullname -PipelineVariable month | | |
| Where-Object { $month.PSIsContainer -eq $true } | | |
| ForEach-Object { | |
| $dest = Join-Path $destination "$year-$month" | |
| New-Item -Path $dest -ItemType 'directory' -Force; | |
| Get-ChildItem $month.FullName -Recurse | |
下記の事前準備を行っておくと当日スムーズです。わからないことがあれば当日一緒に解決しましょう!
Mac の方は Xcode をインストールしていなければインストールしましょう。(特にダウンロードに時間がかかるので、最低限ダウンロードはしておいていただけると助かります!)
ダウンロード: https://developer.apple.com/download/release/
インストールしたら、コマンドラインユーティリティを有効にします。下記のコマンドをターミナルで実行します。
| #!/usr/bin/ruby | |
| p 'العَرَبِيَّة' | |
| العَرَبِيَّة = 1 + 2 + 3 | |
| p العَرَبِيَّة | |
| class ArabicClass | |
| def initialize | |
| @متغير = 0 | |
| end |
| FROM registry.access.redhat.com/rhel | |
| RUN yum -y install httpd | |
| ADD index.html /var/www/html/index.html | |
| EXPOSE 80 | |
| CMD ["/usr/sbin/httpd", "-DFOREGROUND"] |
| #include <iostream> | |
| #include <algorithm> | |
| #include <random> | |
| #include <vector> | |
| #include <fstream> | |
| #include <set> | |
| #include <unordered_set> | |
| #include <string> | |
| #include <ctime> | |
| #include <cstdio> |
| { | |
| "id": "fedoraapache", | |
| "kind": "Pod", | |
| "apiVersion": "v1beta1", | |
| "desiredState": { | |
| "manifest": { | |
| "version": "v1beta1", | |
| "id": "fedoraapache", | |
| "containers": [{ | |
| "name": "fedoraapache", |
| CPU-Z TXT Report | |
| ------------------------------------------------------------------------- | |
| Binaries | |
| ------------------------------------------------------------------------- | |
| CPU-Z version 1.70.0.x64 | |
| Processors | |
| ------------------------------------------------------------------------- |
| #include <stdio.h> | |
| #include <sys/types.h> | |
| #include <unistd.h> | |
| int main() | |
| { | |
| unsigned int gs10; | |
| pid_t pid, pid10; | |
| FILE *fp; | |
| char buf[256]; |
| #include <iostream> | |
| #include <vector> | |
| #include <queue> | |
| #include <algorithm> | |
| #include <functional> | |
| const int MAX_N = 500000; | |
| const int MAX_D = 300; | |
| std::vector<int> read_sorted(const int n) |