modified: .gitignore

modified:   content/pages/about.rst
	modified:   lib/rst_linkpeek.py
This commit is contained in:
russellballestrini 2016-06-09 19:16:54 -04:00
parent c9cc23cfa4
commit 31675ea1fb
3 changed files with 124 additions and 33 deletions

2
.gitignore vendored
View file

@ -64,3 +64,5 @@ target/
output/
pelican-themes/
pelican-plugins/
build.sh

View file

@ -6,45 +6,134 @@ Russell Build Products
Russell Ballestrini admires tidy readable code and beautiful design patterns.
He enjoys finding simple solutions to difficult problems and reveres the python language.
Russell currently holds a position at FireEye as an engineer running their cloud SaaS offerings hosted in AWS.
Russell keeps busy by turning ideas into products, spends his spare time writing open source software, and running the company that he founded called LinkPeek.
Russell currently holds a position at `Mobiquity <https://www.mobiquityinc.com/>`_ as a senior system engineer where he manages infrastructure running in AWS.
Russell Ballestrinis Resume
Russells projects, you should hover over each link for a preview:
Russell.Ballestrini.net The blog you are reading!
LinkPeek.com Website screenshot service.
foxhop.net A demo site for Pylowiki (loaded with some great articles).
remarkbox.com a comment service and fully functional question and answer forum.
four2go! Live, real time, four-in-a-row game developed with python and tornado.
words.gumyum.com Scrabble Solver, you give us letters and we return the best scoring words!
school.yohdah.com Public School directory written with Pyramid and mongodb.
pad.yohdah.com Public code pad and paste site written in Pyramid.
LostQuery.com Database Question & Answer site.
ZealotRush.com Starcraft Question & Answer site.
Russell keeps busy by turning ideas into products, spends his spare time writing open source software, and running the company that he founded called LinkPeek. He is actively bootstrapping a comments-as-a-service offering called `Remarkbox <http://www.remarkbox.com>`_.
Russells Public Code:
bitbucket.org/russellballestrini My public source code repositories.
Russells projects
==================
github.com/russellballestrini My public source code repositories.
Please check out my work!
Botoform Manage infrastructure on AWS using YAML.
LinkPeek
--------
virt-back safely shutdown, gzip, and restart guests.
Website screenshot service.
.. linkpeek::
uri = https://linkpeek.com
action = link-image
size = 600x400
|
|
|
|
foxhop.net
----------
A demo of the wiki software I wrote called Pylowiki, loaded with great articles.
.. linkpeek::
uri = http://www.foxhop.net
action = link-image
size = 600x400
|
|
|
|
Remarkbox
---------
An embedable comment service and fully functional question and answer forum.
.. linkpeek::
uri = http://www.remarkbox.com
action = link-image
size = 600x400
|
|
|
|
four2go.gumyum.com
------------------
Live, real time, four-in-a-row game developed with python and tornado.
.. linkpeek::
uri = http://four2go.gumyum.com
action = link-image
size = 600x400
|
|
|
|
words.gumyum.com
----------------
A Scrabble Solver, give us letters and we return the best scoring words!
.. linkpeek::
uri = http://words.gumyum.com
action = link-image
size = 600x400
|
|
|
|
school.yohdah.com
-----------------
A public school directory I wrote using Pyramid and mongodb.
.. linkpeek::
uri = http://school.yohdah.com
action = link-image
size = 600x400
|
|
|
|
pad.yohdah.com
--------------
A pastebin and code pad site I wrote using Pyramid.
.. linkpeek::
uri = http://pad.yohdah.com/408/about-pad-yohdah-com
action = link-image
size = 600x400
|
|
|
|
Russells Public Code
=====================
http://bitbucket.org/russellballestrini My public source code repositories.
http://github.com/russellballestrini My public source code repositories.
http://botoform.com Manage infrastructure on AWS using YAML.
Pylowiki Open Source wiki application developed using Pylons.
ago Human readable timedelta library for Python.
virt-back safely shutdown, gzip, and restart guests.
ago Human readable timedelta library for Python.

View file

@ -60,8 +60,8 @@ class LinkPeek(Directive):
def html_image(self):
"""return html image markup."""
html = '<img src="{}" title="{}" style="{}" class="{}" />'
return html.format(self.api_call(), self.params['title'], self.params['style'], self.params['class'])
html = '<img src="{}" title="{}" align="{}" style="{}" class="{}" />'
return html.format(self.api_call(), self.params['title'], self.params['align'], self.params['style'], self.params['class'])
def html_link_image(self):
"""return html link image markup."""