Skip to content

Instantly share code, notes, and snippets.

View n8osapi's full-sized avatar

Nate Kelley n8osapi

  • Cellular Sales
  • Knoxville, TN
  • X @n8osapi
View GitHub Profile
Burks, Supervisor, January 2022 - November 2022
Managed a team of associates, providing coaching, training, and support to improve performance and achieve sales goals
Oversaw cash handling procedures, ensuring accuracy and compliance with company policies and procedures
Provided exceptional customer service, resolving issues and answering questions to ensure a positive shopping experience
Maintained an organized and clean store appearance, delegating tasks and monitoring progress to meet standards
Collaborated with upper management to implement new initiatives and improve store operations
@n8osapi
n8osapi / gist:2941445
Last active October 6, 2015 05:08
Three Virtues of a Programmer
Three Virtues of a Programmer
How to make Laziness, Impatience, and Hubris Work for You.
Many would consider laziness, impatience, and hubris to be qualities that are better left checked at the door in a professional environment. Others consider them virtues and core components of the most efficent programmers and IT people. What is it that makes these qualities virtuous? How do they relate to each other? And how can we wield them in a way that helps us succeed? We will entertain how these qualities will help us become more productive, more useful, and more awesome in general.
About Nathan
Nathan Kelley has been passionately writing software since his early years of 10/20/30 BASIC on a Tandy TRS-80 Model III, in 1983, when he was 6. Since then he has developed software as an in-house-developer for companies of many shapes and sizes in many different industries. He is currently a Senior Application Developer / Release Manager / DevOps Reactor for Cellular Sales of Knoxville, Inc. One of the fastest growing
@n8osapi
n8osapi / xdate_extending_parser.js
Created March 6, 2012 23:08 — forked from arshaw/xdate_extending_parser.js
XDate: Extending the Parser
// You can extend the parser by adding a new parsing function to the `XDate.parsers` array.
// This function is given a single string argument and should return an XDate if parsing was successful.
function parseMDY(str) {
// this example parses dates like "month/date/year"
var parts = str.split('/');
if (parts.length == 3) {
return new XDate(
parseInt(parts[2]), // year
@n8osapi
n8osapi / Factory.cs
Created February 14, 2012 18:41 — forked from bfriesen/Factory.cs
Yo dawg, I heard you like dependency injection, so I injected a ninject factory that uses a ninject kernel into your controller using the same ninject kernel so you can inject multiple dependencies without having to inject each one individually.
public class NinjectFactory : IFactory
{
private readonly IKernel kernel;
public Factory(IKernel kernel)
{
this.kernel = kernel;
}
public T Get<T>()
@n8osapi
n8osapi / about.md
Created August 11, 2011 02:36 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer