Skip to content

Instantly share code, notes, and snippets.

View dokkillo's full-sized avatar
🏠
Bug bounty mode!

Gabriel C dokkillo

🏠
Bug bounty mode!
View GitHub Profile
@dokkillo
dokkillo / SytemTime.cs
Created March 24, 2018 10:01
Func for Dates
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NominaWF.Utils.Extension;
namespace NominaWF.Utils
{
public static class SystemTime
{
@dokkillo
dokkillo / Program.cs
Last active August 29, 2017 05:19
Codigo fuente sobre post sobre como crear una clase custom EventArgs, en tallerdeprogramacion.com
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Eventos
{
class Program
{
@dokkillo
dokkillo / worker.cs
Created August 28, 2017 04:12
Clase worker.cs para el post sobre eventos del tallerdeprogramacion.com
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Eventos
{
public delegate int WorkPerformedHandler(int hours, int type);
@dokkillo
dokkillo / testDelegates.cs
Created August 27, 2017 09:22
Codigo de ejemplo del post sobre delegados de la pagina web tallerdeprogramacion.com
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Eventos
{
public delegate void WorkPerformedHandler(int hours, int type);
@dokkillo
dokkillo / dni.cs
Created January 31, 2017 20:46
Generador de DNI
public class DNI
{
public string Generate()
{
int numDNI = GetRandomNumber();
char charDNI = GetCharDNI(numDNI % 23);
return numDNI.ToString().PadLeft(8,'0') + "-" + charDNI;
}
@dokkillo
dokkillo / index.html
Created August 24, 2015 19:04
mJNrVv
<html>
<head>
</head>
<body>
<div id="wrapper">
<div id="sidebar-wrapper">
<ul class="sidebar-nav">