full size packets . tcp_retrans_collapse

$cat /proc/sys/net/ipv4/tcp_retrans_collapse 1 $ Try to send full-sized packets during retransmit. This is enabled by default. TCP smart Framing, or TCP-SF for short, enables the Fast Retransmit/Recovery algorithms even when the congestion window is small. Without modifying the TCP congestion control based on the additive-increase/multiplicative-decrease paradigm, TCP-SF adopts a novel segmentation algorithm: while Classic TCP …

Code relating to GIMP – selected color enhancement

/* Color Enhance 0.10 — image filter plug-in for GIMP * * Copyright (C) 1999 Martin Weber * Copyright (C) 1996 Federico Mena Quintero * * You can contact me at martweb@gmx.net * You can contact the original GIMP authors at gimp@xcf.berkeley.edu * * This program is free software; you can redistribute it and/or modify …

Code from GIMP relating to – desaturate based on luminosity

/* GIMP – The GNU Image Manipulation Program * Copyright (C) 1995 Spencer Kimball and Peter Mattis * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, …

Relating inside code which creates a text layer in GIMP

/* GIMP – The GNU Image Manipulation Program * Copyright (C) 1995 Spencer Kimball and Peter Mattis * * GimpTextLayer * Copyright (C) 2002-2004 Sven Neumann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the …