Ljunggren.net [Google] *  [FB] *   [ChatGPT]  

Welcome to Ljunggren.net

The time in Sweden is approximately 2025-04-04 12:50:21
 
Search Engines
- Google
- Perplexity
- Webcrawler

News services [SE]
- Aftonbladet
- Expressen
- Dagens Industri
- NY Times

About this site
This site is made by me, Andreas Ljunggren.
It is made up with information that I find interesting, and there is some info about myself.
It is powered by an apache, one of the most powerfull webservers out there.
It is ported to a wide variety of platforms ranging from Windows to BSD and Linux
The server also incorporates PHP functionality to aid rapid development and editing. And for those curious, there is no WordPress, Joomla, MySQL or any other CMS or DB to hack.

If you find a link or content with the [SE] sign near it, it stands for (mostly) Swedish content, or Swedish edition.

Privacy notice



big2si

A simple php program that converts all big numbers from its standard in, into more human readable text.

I often use it to find big directories & files, typical usage:

du -bx /var/log | sort -n | tail | big2si

Or track rsync syncing a large set of files:

watch -d 'du -bx rsync_target | sort -n | tail -30 | big2si'

 

 

#!/usr/bin/php

<?php

function si($v,$dec=1) {

 $six=array('K','M','G','T','P','E','Are you nuts?');

 $sis='';

 while ($v>800) {

  $v=$v/1024.0;

  $sis=array_shift($six);

 }

 return (round($v*pow(10,$dec))/pow(10.0,$dec)).$sis;

}

 

function sicb($m) {

 return si($m[1],2);

}

 

$fp = fopen("php://stdin", "r") or die("can't read stdin");

while (!feof($fp)) {

    $line = fgets($fp);

    $line = preg_replace_callback('/([0-9]{3,})/','sicb',$line);

        echo "$line";

}

Andreas Ljunggren's homepage various information ranging from hacking movie projectors to cyber security.


Copyright © 1996-2025 Andreas Ljunggren, This page was last modified 2024-10-07 14:51:19