Skip to content

Instantly share code, notes, and snippets.

@emiliano-poggi
emiliano-poggi / get-netstat.ps1
Created May 6, 2011 06:52
POSH: Get network statistics (powershell implementation of netstat command)
Add-Type -TypeDefinition @"
using System;
using System.Net;
using System.Runtime.InteropServices;
public class NetworkUtil
{
[DllImport("iphlpapi.dll", SetLastError = true)]
static extern uint GetExtendedTcpTable(IntPtr pTcpTable, ref int dwOutBufLen, bool sort, int ipVersion, TCP_TABLE_CLASS tblClass, int reserved);
[DllImport("iphlpapi.dll", SetLastError = true)]
@heesienooi
heesienooi / pagination.php
Created September 23, 2014 05:18
Joomla pagination override - Reduce number of displayed pages
<?php
/**
* By default joomla display 10 pages in pagination. This file allows
* us to customize the number of displayed pages.
*
* Simply add this file to $template/html/pagination.php and
* change $displayedPages variable.
*/
defined('_JEXEC') or die('Restricted access');