The Wayback Machine - https://web.archive.org/web/20201205100034/https://github.com/gnull/cfparser
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

README.md

cfparser

Emacs plugin for participating in http://codeforces.com programming competitions.

Installation

  • Install curl
  • Download cfparser
  • Add to your ~/.emacs file the following:
(add-to-list 'load-path "/path/to/cfparser/")
(require 'cf-mode)
  • Put cf-mode minor mode to hook you wish. For example:
(add-hook 'find-file-hook 'cf-mode)  ; enable cf-mode for all open files

Optional setup

In ~/.emacs file you can change variables:

  • cf-cookies-file - file, in which curl will store cookies
  • cf-default-language - language to be used when it was not recognized by extension
  • cf-test-command - shell command to compile and run your solution on sample tests. For example:
(setq cf-test-command
  (concat
    "g++ sol.cc; "
    "for i in `ls *.in | sed 's/.in//'`; do "
    "echo test $i; "
    "./a.out < $i.in | diff - $i.ans; "
    "done;"))

In file cf-languages.el you can adjust extension-to-language mappings.

Usage

  • C-c c w - Who am I
  • C-c c s - Submit currently open file
  • C-c c i - Log In
  • C-c c o - Log Out
  • C-c c d - Download sample tests to current folder (0.in, 0.ans, 1.in ...)
  • C-c c t - Execute cf-test-command
  • C-c c l - List most recent submissions

Submit and save functions "guess" the contest number, problem index and the programming language by the current file name in one of the following forms:

  • directory/505/A/myfile.cpp
  • directory/505/a.c
  • directory/505a.cc

See also

  • gabrielsimoes/cfparser.vim -- Similar plugin for Vim. It has more features than this one (e.g it can display a problem statement).

About

Codeforces Parser for Emacs (Discontinued, see https://github.com/gabrielsimoes/cfparser.vim for a more actively developed analogue)

Resources

License

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.