Skip to content

Instantly share code, notes, and snippets.

@slofurno
slofurno / tabs.java
Created April 5, 2015 19:16
w2w gist
package com.github.slofurno.myapplication;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.StringReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.ArrayList;
@slofurno
slofurno / gist:c0f04641374623cc2e48
Last active August 29, 2015 14:17
image slideshow
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="image.aspx.cs" Inherits="WebApplication1.image" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style>
.picture-box{
height:100%;
ALTER PROCEDURE [dbo].getNpiD
@lname nvarchar(40) = null,
@fname nvarchar(40) = null,
@npi bigint = null,
@State nvarchar(40) = null
AS
DECLARE @sql nvarchar(MAX),
@paramlist nvarchar(4000)
SELECT @sql = 'SELECT * FROM NPI3 npi
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Program
{