Nice explanation of unicast, multicast, RTP and much more:
Computer network technologies and services/VoIP – Wikibooks, open books for an open world.
–jeroen
Posted by jpluimers on 2015/12/25
Nice explanation of unicast, multicast, RTP and much more:
Computer network technologies and services/VoIP – Wikibooks, open books for an open world.
–jeroen
Posted in Communications Development, Development, Internet protocol suite, TCP | Leave a Comment »
Posted by jpluimers on 2015/12/24
Dat is toch niet meer van deze tijd: De helpdesk is op werkdagen bereikbaar van 10.00 tot 12.00 uur en van 13.00 tot 16.00 uur.
Source: HUMAX service, HUMAX – Nederland
Posted in Uncategorized | Leave a Comment »
Posted by jpluimers on 2015/12/24
Ons huist staat er nog maar 20 jaar. Sommige andere al veel langer…
Wilt u weten hoe uw omgeving er 50, 100 of zelfs 200 jaar geleden uitzag? Hoe het land om u heen is veranderd door verkaveling en andere ingrepen? Dat kan eenvoudig op topotijdreis.nl, de website van het Kadaster die 200 jaar topografie ontsluit.
Source: Tijdreis, over 200 jaar topografie
via:
Hoe zag Amsterdam er 200 jaar geleden van boven uit? Dat is te zien op een nieuwe website van het Kadaster, waarop topografische kaarten van Nederland door de jaren heen zijn verzameld. Op de website Topotijdreis kun je inzoomen op stadsniveau en met een slider kaarten uit verschillende jaartallen met elkaar vergelijken.
Source: Bestond jouw wijk al in 1815? Bekijk het op deze oude kaarten van Amsterdam – AMSTERDAM – PAROOL
Posted in History, Personal | Leave a Comment »
Posted by jpluimers on 2015/12/24
Command:
ROBOCOPY /MIR /SEC /SECFIX /XJ /W:1 /R:1 source destination
via:
–jeroen
Posted in Power User, RoboCopy, Windows | 2 Comments »
Posted by jpluimers on 2015/12/23
When adding Icons to your Windows applications a few things matter.
The icon selected by the Windows Shell (for modern Windows versions usually Windows Explorer), is the one with the lowest ID. When there is no icon with an ID, it selects the icon with the lowest name.
Icons in Windows can have both IDs and names. Even though API calls like LoadIcon have an lpIconName parameter, you can convert the ID to a name using MAKEINTRESOURCE.
There is a difference between the format of an ICO file and the icon resource (technically two things: RT_GROUP_ICON resource directory and an RT_ICON resource for each image) contains a list of icon images.
The selection process is on the RT_GROUP_ICON, and then within the group on the ICON itself.
For the RT_GROUP_ICON process, modern Windows versions still use the algorithm used by Windows 95 (not that by Windows NT):
Windows NT simply chooses the first resource listed in the application’s RC script. On the other hand, Windows 95’s algorithm is to choose the alphabetically first named group icon if one exists. If one such group resource does not exist, Windows chooses the icon with the numerically lowest identifier.
For a Delphi application the icon shown must be named MAINICON, since the below source fragment has been in TApplication.Create(…) like forever:
FIcon.Handle := LoadIcon(MainInstance, 'MAINICON');
Which means that if you want the Windows Shell (usually Explorer) to select that one, all other icon resources in your executable must have names that sort after MAINICON.
For the individual icon, the process is more complex. Even the summary is. To summarise the summary to select an icon for the requested size:
- Prefer the image closest in size.
- When more images of that size are present, match on the best color depth for the display.
- When no color depth matches, prefer the image with the greatest color depth not exceeding the color depth of the display.
- When all exceed the color depth, prefer the lowest color depth.
For color depth, treat 8 or more bits per pixel as equal. So there is no advantage of including a 16×16 256-color image and a 16×16 16-color image in the same resource — the system will simply choose the first one it encounters. When the display is in 8-bpp mode, the system will choose a 16-color icon over a 256-color icon, and will display all icons using the system default palette.
I’m not completely confident how 32-bit precisely fits in this scheme. If someone knows, please let me know and I’ll include the information.
I usually take 32-bit color images here which are actually True Color 24-bit + alpha channel RGBA images.
Actually there are a lot of sizes that Windows can request, and there are many articles about it, some of which contradict each other.
From what I assembled, these are the sizes you need to run on Windows XP / Server 2003 and up:
I might be wrong, so here are some links:
–jeroen
via:
Posted in .NET, Delphi, Development, Software Development, The Old New Thing, Windows Development | Leave a Comment »
Posted by jpluimers on 2015/12/22
Posted in Uncategorized | Leave a Comment »
Posted by jpluimers on 2015/12/22
Posted in Delphi, Delphi 10 Seattle, Development, Software Development | 1 Comment »
Posted by jpluimers on 2015/12/22
Interesting stuff to play with the next few weeks:
This version of the ESXi Embedded Host Client is written purely in HTML and JavaScript, and is served directly from your ESXi host and should perform much better than any of the existing solutions.
Thanks Paul Braren for sharing this.
Source: ESXi Embedded Host Client – VMware Labs
–jeroen
Posted in ESXi5.5, ESXi6, Power User, Virtualization, VMware, VMware ESXi | Leave a Comment »
Posted by jpluimers on 2015/12/22
Had a co-worker where Skype suddenly failed handle groups. He could not send to nor receive group messages. On his Windows machine, Skype auto-upgraded to 7.17.32.115. On his smartphone, everything worked fine..
Downgrading him to 6.21.0.104 solved the issue.
I got it from https://web.archive.org/web/20141213144457/http://download.skype.com/msi/SkypeSetup_6.21.0.104.msi
–jeroen
via:
Posted in Power User, Skype | Leave a Comment »
Posted by jpluimers on 2015/12/22
Hopefully someone will move this to Github before Google code goes down: paping – Cross-platform TCP port testing, emulating the functionality of ping (port ping) – Google Project Hosting.
Paping (pronounced pah ping) is a computer network administration utility used to test the reachability of a host on an Internet Protocol (TCP/IP) network and to measure the time it takes to connect to a specified port
–jeroen
via:
Posted in *nix, *nix-tools, Communications Development, Console (command prompt window), Development, Internet protocol suite, Power User, TCP, Windows | 1 Comment »