Skip to content

Instantly share code, notes, and snippets.

View sheressa's full-sized avatar

Sheressa Macera sheressa

View GitHub Profile
@sheressa
sheressa / camel2underscore.py
Created September 12, 2016 08:59 — forked from bryant/camel2underscore.py
CamelCase -> camel_case
import re
_endpiecere = re.compile(r"[A-Z]+$")
_camelre = re.compile(r"([A-Z]+)(?=[0-9a-z])")
def camel2underscore(camel):
camel = _endpiecere.sub(lambda m: "_" + m.group(0).lower(), camel)
def insert(match):
m = match.group(0).lower()
return "_" + (m if len(m) == 1 else m[:-1] + "_" + m[-1])
• Writes and debugs unit and integration tests for enterprise applications<br />
• Creates and modifies ANT builds for complex applications<br />
• Transitions existing code to new technologies<br />
• Identifies dependencies<br />
• Changes application code to work with new databases and application servers<br />
<ul>
<li>Writes and debugs unit and integration tests for enterprise applications</li>
<li>Creates and modifies ANT builds for complex applications</li>
<li>Transitions existing code to new technologies</li>
<li>Identifies dependencies</li>
@sheressa
sheressa / gist:8388221
Created January 12, 2014 18:07
addins
https://github.com/sheressa/SharpDevelop4.3_Source_Code/tree/addins/src/AddIns
@sheressa
sheressa / TestWebApp
Created January 12, 2014 14:31
TestWeb
<%@ Application Codebehind="Global.asax.cs" Inherits="TestWebApp.MvcApplication" Language="C#" %>
@sheressa
sheressa / README.md
Created January 7, 2014 08:37 — forked from oodavid/README.md

Deploy your site with git

This gist assumes:

  • you have a local git repo
  • with an online remote repository (github / bitbucket etc)
  • and a cloud server (Rackspace cloud / Amazon EC2 etc)
    • your (PHP) scripts are served from /var/www/html/
    • your webpages are executed by apache
  • apache's home directory is /var/www/
# __init__.py
# Entry point for anaconda's storage configuration module.
#
# Copyright (C) 2009 Red Hat, Inc.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions of
# the GNU General Public License v.2, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY expressed or implied, including the implied warranties of