I hereby claim:
- I am azlkiniue on github.
- I am yusril (https://keybase.io/yusril) on keybase.
- I have a public key whose fingerprint is B939 B6A7 4A3D 5C0D 7005 B79E B9AE 014E B7D9 30E0
To claim this, I am signing this object:
| -- phpMyAdmin SQL Dump | |
| -- version 4.7.0 | |
| -- https://www.phpmyadmin.net/ | |
| -- | |
| -- Host: 127.0.0.1 | |
| -- Generation Time: Dec 24, 2017 at 12:33 PM | |
| -- Server version: 10.1.22-MariaDB | |
| -- PHP Version: 7.1.4 | |
| SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
| let publicSocket = null; | |
| const configure = function (io) { | |
| if (!isConfigured()) | |
| publicSocket = io; | |
| }; | |
| const isConfigured = function () { | |
| return publicSocket != null; | |
| }; |
| FROM frolvlad/alpine-miniconda3 | |
| RUN apk update && apk add --no-cache bash \ | |
| && conda install poliastro --channel conda-forge \ | |
| && conda clean -a |
| (function(window) { | |
| var data, | |
| xy = d3 | |
| .geo | |
| .equirectangular() | |
| .scale($('#map_container').width()) | |
| .translate([$('#map_container').width() / 2, $('#map_container').height() / 2]), | |
| path = d3 | |
| .geo | |
| .path() |
| { | |
| "_id": "5ecd41ce845d170035039246", | |
| "email": "[email protected]", | |
| "name": "Ahmada Yusril", | |
| "nik": "3571022222222222", | |
| "phone": "081234567890", | |
| "status": 6, | |
| "password": "$2a$12$juvNCPiHNyYnUvjbgtiC4.M/EjTHez35DUprehGB7wd12csHXGLTe", | |
| "verified_token": "JtBCJYG6kPef", | |
| "verified": false, |
I hereby claim:
To claim this, I am signing this object:
| FROM node:14-alpine | |
| WORKDIR /app | |
| COPY ["package.json", "package-lock.json*", "./"] | |
| RUN npm install | |
| COPY . . |
| #!/usr/bin/env python | |
| """ | |
| 2020 update: | |
| - More iterators, fewer lists | |
| - Python 3 compatible | |
| - Processes files in parallel | |
| (one thread per CPU, but that's not really how it works) | |
| 2021 update: | |
| - Change from legacy format (compat32) |
| ''' | |
| Check if user in github follow you back or not | |
| ''' | |
| import requests | |
| username = input("Enter your username: ") | |
| def main(username): |