- Transition from solely a copywriter to a hybrid copy/codewriter
- Build a search application to speed funder prospecting
- Add more visuals to my writing products
- Increase work income, but maintain work/life balance
- Achieve 4 paid publications
# this assumes WAN is eth0 and LAN is switch0. Please adjust for your own setup | |
configure | |
# Tunnel first | |
edit interfaces tunnel tun0 | |
set encapsulation sit | |
set local-ip xxx.xxx.xxx.xxx # your WAN IP | |
set remote-ip xxx.xxx.xxx.xxx # HE.net Server IPv4 Address | |
set address xxxx:xxxx:xxxx:xxxx::2/64 # Client IPv6 Address |
// Given a class... | |
class Thing | |
{ | |
public string Value { get; set; } | |
} |
#!/usr/bin/env python | |
import sys | |
keep = {} | |
for line in sys.stdin.readlines(): | |
mountpoint = line.rfind("-") | |
if not line[:3] + line[mountpoint:] in keep: | |
keep[line[:3] + line[mountpoint:]] = line | |
else: |
<script language="JavaScript" type="text/javascript"> | |
// Comcast Cable Communications, LLC Proprietary. Copyright 2012. | |
// Intended use is to display browser notifications for critical and time sensitive alerts. | |
var SYS_URL='/e8f6b078-0f35-11de-85c5-efc5ef23aa1f/aupm/notify.do'; | |
// var image_url='http://servicealerts.comcast.net:8080/images/mt'; | |
var image_url='http://xfinity.comcast.net/constantguard/BotAssistance/notice/images'; | |
var headertext1='<strong>Comcast Courtesy Notice</strong>'; | |
var textline1='You have reached 90% of your <b>monthly data usage allowance</b>.'; | |
var textline2='Please sign in for more information and to remove this alert.'; | |
var acknowledgebutton='<a href=\"#\" onClick="document.location.href=\''+SYS_URL+'?dispatch=redirect&redirectName=login¶mName=bmUid\'" title="Sign in to acknowledge" style="color: #FFFFFF;"><img alt="Sign in to acknowledge" src="'+image_url+'/mt_signin.png"/></a>'; |
#Ideas for PhillyRising Applications
A citizen engagement application (or set of applications) that connects people to the City, empowers them to get involved in their community through volunteering and attending City related events including PhillyRising events and meetings, rewards their efforts through technology and socializes their experience.
Applications should be a mobile (web or native) designed to engage citizens in efforts to improve their City. These apps would serve as resources / tools for locating facilities, learning about events occurring throughout the city, encourage participation in civic events, and connect neighbors. The engagement aspect of these applications is critical – they should link neighbors to other neighbors, and also to individuals from outside the community who are interested in engaging across the city.
The first step for any application is to map city facilities and resources, and then use the phone’s GPS to determine which are nearest to the user’s current location. P
Guess the output: | |
>>> def exec_code_object_and_return_x(codeobj, x): | |
... exec codeobj | |
... return x | |
... | |
>>> co1 = compile("""x = x + 1""", '<string>', 'exec') | |
>>> co2 = compile("""del x""", '<string>', 'exec') | |
>>> exec_code_object_and_return_x(co1, 1) | |
# What do you get here? |
This is a plugin meant for Jekyll.
Example use:
Easily embed a YouTube video. Just drop this file in your _plugins
directory.
{% youtube oHg5SJYRHA0 %}
This is my day-to-day scratchpad of things I want to do
- C# in Depth 2nd Ed.
- CLR via C# 3rd Ed.
- Start Ch2 of Agile Software Development with Scrum
- Finish latest issue of CACM
- Start Ch3 of Applied Cryptography
- Booting an Intel Architecture System
- Algorithms Course Materials