User:NevilleDNZ

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search

AKA NevilleDN2 @ uq - usb

International Travels Brag Sheet

Year+:

File:Civil Ensign of New Zealand.svg File:Flag of New Zealand.svg File:Flag of Singapore.svg File:Flag of Switzerland.svg File:Flag of Australia.svg

Month+:

File:Flag of Malaysia.svg File:Flag of Thailand.svg File:Flag of Hong Kong.svg File:Flag of the People's Republic of China.svg File:Flag of Indonesia.svg File:Flag of Germany.svg File:Flag of the United States.svg File:Flag of the Republic of China.svg

Week+:

File:Flag of France.svg File:Flag of Spain.svg File:Flag of Tibet.svg File:Flag of Italy.svg File:Flag of the United Kingdom.svg File:Flag of Japan.svg File:Flag of Vietnam.svg

Day+:

File:Flag of New Caledonia.svg File:Flag of Portugal.svg File:Flag of Canada.svg File:Flag of South Korea.svg

Hour+:

File:Flag of French Polynesia.svg File:Flag of Myanmar.svg File:Flag of Gibraltar.svg File:Flag of the Vatican City.svg and last - but not least - the Republic of Whangamomona File:F1 chequered flag.svg

Idea hijacked from Thryduulf, from an idea and layout pilfered from Dandelion1, as seen on User:StuffOfInterest's page, who lifted it from Harro5, as seen on Calton's page, who took it from Salsb, who stole it from Guettarda who borrowed it from White Cat.

Languages

Script error: No such module "Babel".

Computer languages
Template:Userbox-level
Template:Userbox-level
Template:User bash-4
Template:Userbox-level
Template:Userbox-level
Template:Userbox-level
Template:Userbox-level
Template:User Lua-4
Template:Userbox-level
Template:Userbox-level
Template:Userbox-level
Template:Userbox-level
Template:Userbox-level
Template:User sql-3
User:Quasar Jarosz/Userboxes/c++-3
Template:User rexx-3
Template:Userbox-level
Template:Userbox-level
Template:Userbox-level
Template:Userbox-level
Template:Userbox-level
Template:Userbox-level
Template:Userbox-level
Script error: No such module "userbox".Template:Template other
Template:Userbox-level
Template:Userbox-level
User:Quasar Jarosz/Userboxes/csharp-0

At last, a barn star for me

File:Barn star free zone.png

Curiously cheerful wikipedia201x contributors I have meet recently

Test for the arrival of GeSHi version ≥ v1.0.8.8.4

Unicode System of Units

c.f. User:NevilleDNZ/Unicode System of Units

ALGOL 68

syntaxhighlight

def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass

par: Parallel processing

ALGOL 68 supports programming of parallel processing. Using the keyword PAR, a collateral clause is converted to a parallel clause, where the synchronisation of actions is controlled using semaphores. In A68G the parallel actions are mapped to threads when available on the hosting operating system. In A68S a different paradigm of parallel processing was implemented (see below).

SyntaxHighlight_GeSHi

PROC
    eat = VOID: ( muffins-:=1; print(("Yum!",new line))),
    speak = VOID: ( words-:=1; print(("Yak...",new line)));
 
INT muffins := 4, words := 8;
SEMA mouth = LEVEL 1;
 
PAR BEGIN
    WHILE muffins > 0 DO
        DOWN mouth;
        eat;
        UP mouth
    OD,
    WHILE words > 0 DO
        DOWN mouth;
        speak;
        UP mouth
    OD
END
‎

vs.

PROC
    eat = VOID: ( muffins-:=1; print(("Yum!",new line))),
    speak = VOID: ( words-:=1; print(("Yak...",new line)));
 
INT muffins := 4, words := 8;
SEMA mouth = LEVEL 1;
 
PAR BEGIN
    WHILE muffins > 0 DO
        DOWN mouth;
        eat;
        UP mouth
    OD,
    WHILE words > 0 DO
        DOWN mouth;
        speak;
        UP mouth
    OD
END