Jump to content

Talk:Base36

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 88.203.9.16 (talk) at 15:39, 19 March 2008 (hello). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Uses in practice:Dell Express Service Code from the Service Tag {{Fact}}

Re:{{Fact}} -Any one with a Dell Express Service Code can enter the digits here and the result will tally with the Service Tag. Proving thats the system Dell uses.--Trounce 15:29, 11 July 2007 (UTC)[reply]

Your intentions are good, but Wikipedia article pages are not allowed to cite Wikipedia talk pages as references... AnonMoos 01:02, 12 July 2007 (UTC)[reply]

The system id used for installation can be found in C:\DELL\SYSINFO.DAT. This can be viewed remotely via the hidden C$ Administrative share as something like \\Computername\C$\DELL\SYSINFO.DAT .

The system tag with a "D", for Dell, prefix is used as the Computer's default networking name, so a "NET VIEW" command will often show a few Dell System Tags :-) Lent (talk) 18:18, 10 January 2008 (UTC)[reply]


Using Base36 in Java:

   long value = 1854479759125471116L;
   String base36 = Long.toString(value, 36); // "e37y7k86u5xo"
   String base36 = "e37y7k86u5xo";
   long value = Long.parseLong(base36, 36); // 1854479759125471116

-- 74.92.22.18 (talk) hello