Skip to content

Instantly share code, notes, and snippets.

View eko's full-sized avatar
:bowtie:
Available to discuss your projects

Vincent Composieux eko

:bowtie:
Available to discuss your projects
View GitHub Profile
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

Keybase proof

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:

@eko
eko / renamer.go
Created July 30, 2016 09:45
Photo renamer in Golang based on EXIF format
package main
import (
"flag"
"fmt"
"github.com/rwcarlsen/goexif/exif"
"os"
"path"
"path/filepath"
"strings"
@eko
eko / ratp.go
Last active August 29, 2015 14:24
RATP Information trafic
package main
import (
"encoding/json"
"io/ioutil"
"net/http"
"fmt"
)
type RatpLine struct {
@eko
eko / SMS.applescript
Last active February 25, 2022 02:09
AppleScript send a SMS to a list of your contacts
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
@eko
eko / packagist.py
Last active September 25, 2020 13:39
This is a reverse-search for Packagist in order to find which packages is using a package as a dependency
#!/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>
@eko
eko / open.py
Last active August 29, 2015 13:56
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