Sponsored Content
The Lounge What is on Your Mind? Football / Soccer World Cup 2018 draw. Post 303008441 by rbatte1 on Friday 1st of December 2017 10:46:24 AM
Old 12-01-2017
Football / Soccer World Cup 2018 draw.

What is on Your Mind?

2018 FIFA World Cup - Wikipedia


I'm hoping that England are drawn into positions B2, D3, G3 or G4 so that all their games will be outside usual UK office hours and people will not desert the office with mystery illnesses to watch the games.

Expecting failure, so I can't be disappointed but I'd prefer to ignore the whole thing altogether because the media keep banging on about it and then the fallout from the inevitable early exit or good run. Let's hope they don't win it because the press coverage will be unbearable.

I'm not anti-England, not really anti-football/soccer; it's just that in the UK it's just so overbearingly talked about to the exclusion of major world events or any other sport all year round even when they're not playing.


Anyone else boycotting it? (Personally I'd prefer to Boycott it another way if I could afford to retire)



Robin
 

7 More Discussions You Might Find Interesting

1. What is on Your Mind?

Which team do you think will win the World Cup 2010?

Well, I'm going to free myself a bit from Unix-ish stuff. :D Which is your favorite team? Are you supporting your local team? IMO, I think Italy and Spain have great chances. Both teams have a great formation and players; Recently I was watching some of their matches and their gameplay is... (0 Replies)
Discussion started by: verdepollo
0 Replies

2. What is on Your Mind?

Which team will win the 2010 World Cup final?

Spain or the Netherlands? (12 Replies)
Discussion started by: Neo
12 Replies

3. What is on Your Mind?

Place your bits - ICC World Cup Twenty20 (Cricket)

Who will win ICC World Cup Twenty20 These are the last four teams. Sri Lanka Pakistan Australia West Indies There is an open event in the Event Prediction Forum. The event closes on 6th October 2012. ICC World Cup Twenty20 (0 Replies)
Discussion started by: ni2
0 Replies

4. What is on Your Mind?

Place your bits - IRB Sevens World Series Draw (Dubai, United Arab Emirates) - Rugby

Hi, Any rugby fans out there. Sevens rugby is really exciting to watch. The final is only about 20mins give or take, but its fast paced and very exciting. The IRB Sevens World Series, is a series of international rugby union sevens tournaments. The tournaments, run by the IRB, feature... (0 Replies)
Discussion started by: ni2
0 Replies

5. What is on Your Mind?

Mad World Remix of Moby Video (Are You Lost In The World Like Me)

This is an excellent video comment on modern society and the remix is good too: https://www.youtube.com/watch?v=5DU1B_XkyIk 5DU1B_XkyIk Watch the video above and post your comments. (3 Replies)
Discussion started by: Neo
3 Replies

6. What is on Your Mind?

The most common passwords this year, 2018.

/Me shakes my head. I went to my old workplace on Wednesday last, 12-12-2018, and one of the passwords on a laptop used was amongst the 25 displayed. Sadly I am unable to post the URL, garbage comes up... I can't delete the post either... --- Post updated at 08:34 PM --- Try again... (6 Replies)
Discussion started by: wisecracker
6 Replies

7. What is on Your Mind?

Holiday Thoughts for the End of 2018

Happy Holidays. Here are my randoms thought at the end of 2018 in no particular order. You Are Truly Blessed IT people are lucky. We get to use our brains extensively to solve complex and challenging computer-technology related problems. This is very good for our brains. Programming,... (2 Replies)
Discussion started by: Neo
2 Replies
code(n) 							    [incr Tcl]								   code(n)

__________________________________________________________________________________________________________________________________________________

NAME
code - capture the namespace context for a code fragment SYNOPSIS
itcl::code ?-namespace name? command ?arg arg ...? _________________________________________________________________ DESCRIPTION
Creates a scoped value for the specified command and its associated arg arguments. A scoped value is a list with three elements: the "@scope" keyword, a namespace context, and a value string. For example, the command namespace foo { code puts "Hello World!" } produces the scoped value: @scope ::foo {puts {Hello World!}} Note that the code command captures the current namespace context. If the -namespace flag is specified, then the current context is ignored, and the name string is used as the namespace context. Extensions like Tk execute ordinary code fragments in the global namespace. A scoped value captures a code fragment together with its namespace context in a way that allows it to be executed properly later. It is needed, for example, to wrap up code fragments when a Tk widget is used within a namespace: namespace foo { private proc report {mesg} { puts "click: $mesg" } button .b1 -text "Push Me" -command [code report "Hello World!"] pack .b1 } The code fragment associated with button .b1 only makes sense in the context of namespace "foo". Furthermore, the "report" procedure is private, and can only be accessed within that namespace. The code command wraps up the code fragment in a way that allows it to be exe- cuted properly when the button is pressed. Also, note that the code command preserves the integrity of arguments on the command line. This makes it a natural replacement for the list command, which is often used to format Tcl code fragments. In other words, instead of using the list command like this: after 1000 [list puts "Hello $name!"] use the code command like this: after 1000 [code puts "Hello $name!"] This not only formats the command correctly, but also captures its namespace context. Scoped commands can be invoked like ordinary code fragments, with or without the eval command. For example, the following statements work properly: set cmd {@scope ::foo .b1} $cmd configure -background red set opts {-bg blue -fg white} eval $cmd configure $opts Note that scoped commands by-pass the usual protection mechanisms; the command: @scope ::foo {report {Hello World!}} can be used to access the "foo::report" proc from any namespace context, even though it is private. KEYWORDS
scope, callback, namespace, public, protected, private itcl 3.0 code(n)
All times are GMT -4. The time now is 12:54 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy