- Speaking.io - Website with lots of tips for public speaking.
- Toastmasters Clubs in Singapore - International organisation that trains public speaking with large presence in Singapore.
- Toastmasters Guidebook Summary - Summary of the topics covered in the Toastmasters Guidebook.
- Tips for audience engagement - "Rules" for audience engagement
- Moar tips for audience engagement - Audience engagement strategies.
- Simple exercises for public speaking - Simple exercises to practice public speaking.
- [Overcoming Nervousness](http://www.quickanddirtytips.com/business-career/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace FluentCassandra | |
{ | |
/// <summary> | |
/// Used for generating UUID based on RFC 4122. | |
/// </summary> | |
/// <seealso href="http://www.ietf.org/rfc/rfc4122.txt">RFC 4122 - A Universally Unique IDentifier (UUID) URN Namespace</seealso> | |
public static partial class GuidGenerator | |
{ |
any
: magic, ill-behaved type that acts like a combination ofnever
(the proper [bottom type]) andunknown
(the proper [top type])- Anything except
never
is assignable toany
, andany
is assignable to anything at all. - Identities:
any & AnyTypeExpression = any
,any | AnyTypeExpression = any
- Key TypeScript feature that allows for [gradual typing].
- Anything except
unknown
: proper, well-behaved [top type]- Anything at all is assignable to
unknown
.unknown
is only assignable to itself (unknown
) andany
. - Identities:
unknown & AnyTypeExpression = AnyTypeExpression
,unknown | AnyTypeExpression = unknown
- Anything at all is assignable to
- Prefer over
any
whenever possible. Anywhere in well-typed code you're tempted to useany
, you probably wantunknown
.