Last updated: [2025-06-28]
The “Analyze on Lichess” Chrome extension is designed to help users copy PGN data from a Chess.com game and import it into Lichess.org for analysis. This extension is built with user privacy and transparency in mind.
Last updated: [2025-06-28]
The “Analyze on Lichess” Chrome extension is designed to help users copy PGN data from a Chess.com game and import it into Lichess.org for analysis. This extension is built with user privacy and transparency in mind.
[2016-07-01 16:13:29 +0300] [29240] [server] started on /var/folders/qk/rfns1ml107b19r47z45l1dch0000gn/T/spring-501/22b0a74e51e3759116030f95499dc558 | |
[2016-07-01 16:13:29 +0300] [29240] [server] accepted client | |
[2016-07-01 16:13:29 +0300] [29240] [server] running command rails_console | |
[2016-07-01 16:13:29 +0300] [29240] [application_manager:development] child not running; starting | |
[2016-07-01 16:13:29 +0300] [29226] [client] sending command | |
[2016-07-01 16:13:29 +0300] [29242] [application:development] initialized -> running | |
[2016-07-01 16:13:29 +0300] [29242] [application:development] got client | |
[2016-07-01 16:13:29 +0300] [29242] [application:development] preloading app | |
[2016-07-01 16:13:33 +0300] [29162] [application:test] forked 29247 | |
[2016-07-01 16:13:33 +0300] [29162] [application:test] terminating -> exiting |
[2016-06-30 17:51:51 +0300] [85476] [server] started on /var/folders/qk/rfns1ml107b19r47z45l1dch0000gn/T/spring-501/22b0a74e51e3759116030f95499dc558 | |
[2016-06-30 17:51:51 +0300] [85476] [server] accepted client | |
[2016-06-30 17:51:51 +0300] [85476] [server] running command rails_console | |
[2016-06-30 17:51:51 +0300] [85476] [application_manager:development] child not running; starting | |
[2016-06-30 17:51:51 +0300] [85462] [client] sending command | |
[2016-06-30 17:51:51 +0300] [85478] [application:development] initialized -> running | |
[2016-06-30 17:51:51 +0300] [85478] [application:development] got client | |
[2016-06-30 17:51:51 +0300] [85478] [application:development] preloading app | |
[2016-06-30 17:52:07 +0300] [85478] [application:development] forked 85497 | |
[2016-06-30 17:52:07 +0300] [85476] [application_manager:development] got worker pid 85497 |
working_directory "/srv/tutti/current" | |
pid "/srv/tutti/current/tmp/pids/unicorn.pid" | |
stderr_path "/srv/tutti/shared/log/unicorn.log" | |
stdout_path "/srv/tutti/shared/log/unicorn.log" | |
listen "/tmp/unicorn.tutti.sock" | |
worker_processes 2 | |
timeout 30 | |
preload_app true |
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: unicorn | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Manage unicorn server | |
# Description: Start, stop, restart unicorn server for a specific application. | |
### END INIT INFO |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>author</key> | |
<string>Michael Sheets</string> | |
<key>name</key> | |
<string>New BOP</string> | |
<key>settings</key> | |
<array> |
var page = require('webpage').create(), | |
system = require('system'), | |
t, address; | |
if (system.args.length === 1) { | |
console.log('Usage: loadspeed.js <some URL>'); | |
phantom.exit(); | |
} | |
t = Date.now(); |