I hereby claim:
- I am eko on github.
- I am eko (https://keybase.io/eko) on keybase.
- I have a public key ASDkx5UjBTNnQ4i4yKaaKX1x0rurikh9fD0-xAdeMk_m7go
To claim this, I am signing this object:
| TABLE_SCHEMA | TABLE_NAME | COLUMN_NAME | COLUMN_TYPE | DATA_TYPE | auto_increment | max_value | pct_used | |
|---|---|---|---|---|---|---|---|---|
| video | content | con_id | int(11) | int | 659268 | 2147483647 | 0.03 | |
| video | media | med_id | int(11) | int | 1057114 | 2147483647 | 0.05 | |
| video | taxonomy | tax_id | int(11) | int | 7028 | 2147483647 | 0.00 |
| Status | Duration | CPU_user | CPU_system | |
|---|---|---|---|---|
| starting | 0.000096 | 0.000000 | 0.000000 | |
| checking permissions | 0.000011 | 0.000000 | 0.000000 | |
| Opening tables | 0.000022 | 0.000000 | 0.000000 | |
| init | 0.000037 | 0.000000 | 0.000000 | |
| System lock | 0.000011 | 0.000000 | 0.000000 | |
| optimizing | 0.000011 | 0.000000 | 0.000000 | |
| statistics | 0.000070 | 0.000000 | 0.000000 | |
| preparing | 0.000011 | 0.000000 | 0.000000 | |
| executing | 0.000003 | 0.000000 | 0.000000 |
| Variable_name | Value | |
|---|---|---|
| innodb_buffer_pool_size | 134217728 |
| table_name | engine | row_format | table_rows | size (mb) | |
|---|---|---|---|---|---|
| content | InnoDB | Dynamic | 30443421 | 0.89 | |
| video | InnoDB | Dynamic | 27781014 | 3.67 | |
| media | InnoDB | Dynamic | 50288910 | 1.31 |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "flag" | |
| "fmt" | |
| "github.com/rwcarlsen/goexif/exif" | |
| "os" | |
| "path" | |
| "path/filepath" | |
| "strings" |
| package main | |
| import ( | |
| "encoding/json" | |
| "io/ioutil" | |
| "net/http" | |
| "fmt" | |
| ) | |
| type RatpLine struct { |
| tell application "Messages" | |
| set targetService to id of 1st service whose service type = iMessage | |
| set peopleICareAbout to {"Vincent Composieux"} | |
| set peopleAlreadySent to {} | |
| repeat with myBuddy in buddies | |
| set buddyFullname to full name of myBuddy | |
| set buddyFirstname to first name of myBuddy | |
| #!/usr/bin/python | |
| # | |
| # This script will provides a reverse-search on Packagist to find which libraries uses a given library package | |
| # as a dependency. | |
| # | |
| # Usage: | |
| # First, you need to fetch dependencies: ./packagist.py --fetch | |
| # After, you can start checking packages: ./packagist.py --package <package-name> | |
| # | |
| # Author: Vincent Composieux <vincent.composieux@gmail.com> |
| import requests | |
| class Api(object): | |
| """ This is the Github API class """ | |
| def __init__(self, url, login, password): | |
| self.url = url | |
| self.login = login | |
| self.password = password |