All Projects → erroneousboat → Resume

erroneousboat / Resume

Licence: mit
Create an online resume that can be accessed by a `curl` command.

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Resume

Icememe
Roblox Exploit Source Code Called IceMeme with some cmds, lua c and limited lua execution with simple ui in c#
Stars: ✭ 42 (-43.24%)
Mutual labels:  curl
Curl
Wraps the curl CLI to be used in Github Actions
Stars: ✭ 59 (-20.27%)
Mutual labels:  curl
Resume Builder
Resume Builder is a free open-source project that allows anyone to easily maintain and build any kind of resume.
Stars: ✭ 62 (-16.22%)
Mutual labels:  resume
Latexcv
👔 A collection of cv and resume templates written in LaTeX. Leave an issue if your language is not supported!
Stars: ✭ 1,027 (+1287.84%)
Mutual labels:  resume
Cmd Resume
Web-based Command Line Resume
Stars: ✭ 55 (-25.68%)
Mutual labels:  resume
Resume
Markdown -> PDF/HTML resumé generator
Stars: ✭ 1,105 (+1393.24%)
Mutual labels:  resume
Gmod Chttp
A HTTP()-compatible wrapper for curl in Garry's Mod.
Stars: ✭ 39 (-47.3%)
Mutual labels:  curl
Snomed In 5 Minutes
Easy-to-use tutorials for accessing SNOMED APIs within 5 min using various programming languages
Stars: ✭ 70 (-5.41%)
Mutual labels:  curl
Bashupload
PHP/JavaScript file upload web app to upload files from command line & browser, and download them elsewhere. Frequently used to upload/download files on servers. Hosted version is available at bashupload.com.
Stars: ✭ 56 (-24.32%)
Mutual labels:  curl
Cv
A resume template written in Markdown,Yaml JSON auto generates github-pages website & PDF by Jekyll. 在线简历生成模板(超高兼容可导PDF)
Stars: ✭ 61 (-17.57%)
Mutual labels:  resume
Jekyll Timeline
Timeline / Résumé Theme with Jekyll
Stars: ✭ 46 (-37.84%)
Mutual labels:  resume
Awesome Web Cv
📝 Single Page Web Application for Your Outstanding CV
Stars: ✭ 50 (-32.43%)
Mutual labels:  resume
Lush Http
Smart Http Client for PHP
Stars: ✭ 60 (-18.92%)
Mutual labels:  curl
Activity
A PHP API to log anything anywhere
Stars: ✭ 44 (-40.54%)
Mutual labels:  curl
Wsend
wsend: The opposite of wget
Stars: ✭ 64 (-13.51%)
Mutual labels:  curl
Cv Template
An easy way to create HTML and PDF versions of your resume, and automatically host them on GitHub Pages.
Stars: ✭ 41 (-44.59%)
Mutual labels:  resume
Aoba
Create a lovely resume just with a config file.
Stars: ✭ 59 (-20.27%)
Mutual labels:  resume
Resume
A minimal pelican theme to host your resume
Stars: ✭ 74 (+0%)
Mutual labels:  resume
Cascadia
Go cascadia package command line CSS selector
Stars: ✭ 67 (-9.46%)
Mutual labels:  curl
Php Interview
This is the information I prepared for the PHP interview.The notes include PHP, MySql, Linux, etc.
Stars: ✭ 1,110 (+1400%)
Mutual labels:  resume

Resume

Create an online resume that can be accessed by a curl command.

Example:

Screenshot

Usage

Docker

$ docker run -p 80:80 erroneousboat/resume
$ curl http://localhost/resume

Command line

You can also run this application from the commandline, and I provided a binary for linux amd64 based systems here.

Configuration

You'll be able to configure some settings, mainly:

Var Explanation
PORT set the port on which the application will be served
PATH set the url path
USER set username for basic authentication
PASS set password for basic authentication

A full example:

$ docker run -p 8080:8080 \
    --env PORT=8080 \
    --env PATH=/resume \
    --env USER=show \
    --env PASS=me \
    -v path-to-resume.tmpl:/resume.tmpl \
    erroneousboat/resume

$ curl http://localhost:8080/resume -u show:me

Template

The resume.tmpl has an example of how you could structure your resume. To see what colors you'll be able to use, inspect the colors.go file.

For more color styles, you can use the function {{.ColorCode "your-style-here"}} in the template. See https://github.com/mgutz/ansi#style-format for the style format.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].