Skip to content

Instantly share code, notes, and snippets.

View MaxMEllon's full-sized avatar
:octocat:
Enjoy

Kento TSUJI MaxMEllon

:octocat:
Enjoy
View GitHub Profile
const client = {
fetchCurrentUser() {
return new Promise((resolve, reject) => {
axios.get('/path/to')
.then(res => resolve(res.data))
.catch(err => reject(err))
})
},
}
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by configure, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ auto/configure --enable-multibyte --with-features=huge --enable-luainterp=dynamic --with-lua-prefix=/usr/local --enable-perlinterp=yes --enable-rubyinterp=yes --enable-python3interp=yes --enable-pythoninterp=yes --prefix=/Users/maxmellon/local/bin --disable-selinux --enable-terminal --with-ruby-command=/Users/maxmellon/.rbenv/versions/2.4.2/bin/ruby --enable-fail-if-missing --enable-fontset --enable-tclinterp --srcdir=. --cache-file=auto/config.cache
## --------- ##
## Platform. ##
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by configure, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ auto/configure --enable-multibyte --with-features=huge --enable-luainterp=dynamic --with-lua-prefix=/usr/local --enable-perlinterp=yes --enable-rubyinterp=yes --enable-python3interp=yes --enable-pythoninterp=yes --prefix=/Users/maxmellon/local/bin --disable-selinux --enable-terminal --with-ruby-command=/Users/maxmellon/.rbenv/versions/2.4.2/bin/ruby --enable-fail-if-missing --enable-fontset --enable-tclinterp --srcdir=. --cache-file=auto/config.cache
## --------- ##
## Platform. ##
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by configure, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ auto/configure --enable-multibyte --with-features=huge --enable-luainterp=dynamic --with-lua-prefix=/usr/local --enable-perlinterp=yes --enable-rubyinterp=yes --enable-python3interp=yes --enable-pythoninterp=yes --prefix=/usr/local --disable-selinux --enable-terminal --with-ruby-command=/Users/maxmellon/.rbenv/versions/2.4.2/bin/ruby --enable-fail-if-missing --enable-fontset --enable-tclinterp --srcdir=. --cache-file=auto/config.cache
## --------- ##
## Platform. ##
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by configure, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ auto/configure --enable-multibyte --with-features=huge --enable-luainterp=dynamic --with-lua-prefix=/usr/local --enable-perlinterp=yes --enable-rubyinterp=yes --enable-python3interp=yes --enable-pythoninterp=yes --prefix=/usr/local --disable-selinux --enable-terminal --with-ruby-command=/Users/maxmellon/.rbenv/versions/2.4.2/bin/ruby --enable-fail-if-missing --enable-fontset --enable-tclinterp --srcdir=. --cache-file=auto/config.cache
## --------- ##
## Platform. ##

■ 問題設定

2017.07.17(土)に、北海道科学大学で行われた 研究会 GAS_AL_201707の参加報告を行う。 印象的だった発表や、大会全体を通して感じたことなどを述べる。

■ 概略総論

● 開催概要

  • 大会名 : 教育システム情報学会 第42回全国大会
import requests
import shutil
from os import path
from bs4 import BeautifulSoup as bs
base_url = 'https://pycon.jp'
def download(img):
_, file = path.split(img['src'])
img_bin = requests.get(base_url + img['src'], stream=True)
import requests
import shutil
import os
from bs4 import BeautifulSoup as bs
base_url = 'https://pycon.jp'
def download(img):
_, file = os.path.split(img['src'])
img_bin = requests.get(base_url + img['src'], stream=True)
import requests
import shutil
import os
from bs4 import BeautifulSoup as bs
base_url = 'https://pycon.jp'
def download(img):
_, file = os.path.split(img['src'])
img_bin = requests.get(base_url + img['src'], stream=True)
import requests
import shutil
import os
from bs4 import BeautifulSoup as bs
base_url = 'https://pycon.jp'
def main():
url = base_url + '/2016/ja/sponsors'
res = requests.get(url)