Is there any easter egg in Sitecore?
up vote
10
down vote
favorite
I am just curious whether there is an easter egg - inside joke, hidden message (image) or secret feature - that you have found in Sitecore in various versions.
Are there any?
Easter egg -> https://en.wikipedia.org/wiki/Easter_egg_(media)
experience-editor content-editor experience-analytics
add a comment |
up vote
10
down vote
favorite
I am just curious whether there is an easter egg - inside joke, hidden message (image) or secret feature - that you have found in Sitecore in various versions.
Are there any?
Easter egg -> https://en.wikipedia.org/wiki/Easter_egg_(media)
experience-editor content-editor experience-analytics
2
Point 38 of these release notes. community.sitecore.net/technical_blogs/b/…
– Mark Cassidy♦
Nov 13 at 8:40
1
Also; Unicorn has a few ;-)
– Mark Cassidy♦
Nov 13 at 8:47
2
Sounds like the hunt is on for the elusive answer to 38
– jrap
Nov 13 at 13:51
add a comment |
up vote
10
down vote
favorite
up vote
10
down vote
favorite
I am just curious whether there is an easter egg - inside joke, hidden message (image) or secret feature - that you have found in Sitecore in various versions.
Are there any?
Easter egg -> https://en.wikipedia.org/wiki/Easter_egg_(media)
experience-editor content-editor experience-analytics
I am just curious whether there is an easter egg - inside joke, hidden message (image) or secret feature - that you have found in Sitecore in various versions.
Are there any?
Easter egg -> https://en.wikipedia.org/wiki/Easter_egg_(media)
experience-editor content-editor experience-analytics
experience-editor content-editor experience-analytics
edited Nov 13 at 11:39
asked Nov 13 at 6:16
Peter Prochazka
4,2211836
4,2211836
2
Point 38 of these release notes. community.sitecore.net/technical_blogs/b/…
– Mark Cassidy♦
Nov 13 at 8:40
1
Also; Unicorn has a few ;-)
– Mark Cassidy♦
Nov 13 at 8:47
2
Sounds like the hunt is on for the elusive answer to 38
– jrap
Nov 13 at 13:51
add a comment |
2
Point 38 of these release notes. community.sitecore.net/technical_blogs/b/…
– Mark Cassidy♦
Nov 13 at 8:40
1
Also; Unicorn has a few ;-)
– Mark Cassidy♦
Nov 13 at 8:47
2
Sounds like the hunt is on for the elusive answer to 38
– jrap
Nov 13 at 13:51
2
2
Point 38 of these release notes. community.sitecore.net/technical_blogs/b/…
– Mark Cassidy♦
Nov 13 at 8:40
Point 38 of these release notes. community.sitecore.net/technical_blogs/b/…
– Mark Cassidy♦
Nov 13 at 8:40
1
1
Also; Unicorn has a few ;-)
– Mark Cassidy♦
Nov 13 at 8:47
Also; Unicorn has a few ;-)
– Mark Cassidy♦
Nov 13 at 8:47
2
2
Sounds like the hunt is on for the elusive answer to 38
– jrap
Nov 13 at 13:51
Sounds like the hunt is on for the elusive answer to 38
– jrap
Nov 13 at 13:51
add a comment |
2 Answers
2
active
oldest
votes
up vote
13
down vote
accepted
I have previously found 2 secret CLI commands in Sitecore JSS:
elephant-in-the-room:
> jss elephant-in-the-room
JSS CLI is running in global mode because it was not installed in the local node_modules folder.
_.-- ,.--.
.' .' /
| @ |'..--------._
/ ._/ '.
/ .-.-
( /
\ '. | #
\ -. /
: | )._____.'
" | / | )
| |./' :__ .-'
'--'
Won't someone please address me?
whats-the-password:
> jss whats-the-password
JSS CLI is running in global mode because it was not installed in the local node_modules folder.
Why it's b, of course.
3
I wouldn't expect anything else from JSS team than some Easter eggs ;)
– Peter Prochazka
Nov 13 at 11:44
add a comment |
up vote
16
down vote
Maybe not an easter egg, but MainUtil
class contains some "useful" methods like:
- My favorites:
/// <summary>Returns false.</summary>
/// <returns></returns>
public static bool False()
{
return false;
}
/// <summary>
/// Returns <c>true</c>.
/// </summary>
/// <returns></returns>
public static bool True()
{
return true;
}
- Method used by every single Sitecore developer:
/// <summary>Determines whether the specified string is empty.</summary>
/// <param name="s">The s.</param>
/// <returns>
/// <c>true</c> if the specified string is empty; otherwise, <c>false</c>.
/// </returns>
public static bool IsEmpty(string s)
{
if (s != null)
return s.Length == 0;
return true;
}
- Very functional:
/// <summary>No-op</summary>
public static void Nop(params object obj)
{
}
/// <summary>Touch</summary>
public static void Touch(params object obj)
{
}
- The one I cannot live without:
/// <summary>
/// Method to call when doing silent catches. Causes the Resharper warning to disappear.
/// </summary>
public static void SilentCatch()
{
}
I think that these can be classified as Easter eggs as Easter eggs are also secret feature and these are definitely those kind of "features" :) Thanks for sharing
– Peter Prochazka
Nov 13 at 11:43
1
Interestingly, IsEmpty is basically the same as IsNullOrEmpty
– Matthew FitzGerald-Chamberlain
Nov 13 at 16:30
1
@Geoff Whoops! I'm not sure what was going through my mind, there. You're right.
– Nic Hartley
Nov 13 at 18:29
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
13
down vote
accepted
I have previously found 2 secret CLI commands in Sitecore JSS:
elephant-in-the-room:
> jss elephant-in-the-room
JSS CLI is running in global mode because it was not installed in the local node_modules folder.
_.-- ,.--.
.' .' /
| @ |'..--------._
/ ._/ '.
/ .-.-
( /
\ '. | #
\ -. /
: | )._____.'
" | / | )
| |./' :__ .-'
'--'
Won't someone please address me?
whats-the-password:
> jss whats-the-password
JSS CLI is running in global mode because it was not installed in the local node_modules folder.
Why it's b, of course.
3
I wouldn't expect anything else from JSS team than some Easter eggs ;)
– Peter Prochazka
Nov 13 at 11:44
add a comment |
up vote
13
down vote
accepted
I have previously found 2 secret CLI commands in Sitecore JSS:
elephant-in-the-room:
> jss elephant-in-the-room
JSS CLI is running in global mode because it was not installed in the local node_modules folder.
_.-- ,.--.
.' .' /
| @ |'..--------._
/ ._/ '.
/ .-.-
( /
\ '. | #
\ -. /
: | )._____.'
" | / | )
| |./' :__ .-'
'--'
Won't someone please address me?
whats-the-password:
> jss whats-the-password
JSS CLI is running in global mode because it was not installed in the local node_modules folder.
Why it's b, of course.
3
I wouldn't expect anything else from JSS team than some Easter eggs ;)
– Peter Prochazka
Nov 13 at 11:44
add a comment |
up vote
13
down vote
accepted
up vote
13
down vote
accepted
I have previously found 2 secret CLI commands in Sitecore JSS:
elephant-in-the-room:
> jss elephant-in-the-room
JSS CLI is running in global mode because it was not installed in the local node_modules folder.
_.-- ,.--.
.' .' /
| @ |'..--------._
/ ._/ '.
/ .-.-
( /
\ '. | #
\ -. /
: | )._____.'
" | / | )
| |./' :__ .-'
'--'
Won't someone please address me?
whats-the-password:
> jss whats-the-password
JSS CLI is running in global mode because it was not installed in the local node_modules folder.
Why it's b, of course.
I have previously found 2 secret CLI commands in Sitecore JSS:
elephant-in-the-room:
> jss elephant-in-the-room
JSS CLI is running in global mode because it was not installed in the local node_modules folder.
_.-- ,.--.
.' .' /
| @ |'..--------._
/ ._/ '.
/ .-.-
( /
\ '. | #
\ -. /
: | )._____.'
" | / | )
| |./' :__ .-'
'--'
Won't someone please address me?
whats-the-password:
> jss whats-the-password
JSS CLI is running in global mode because it was not installed in the local node_modules folder.
Why it's b, of course.
answered Nov 13 at 10:13
jflheureux
1,261316
1,261316
3
I wouldn't expect anything else from JSS team than some Easter eggs ;)
– Peter Prochazka
Nov 13 at 11:44
add a comment |
3
I wouldn't expect anything else from JSS team than some Easter eggs ;)
– Peter Prochazka
Nov 13 at 11:44
3
3
I wouldn't expect anything else from JSS team than some Easter eggs ;)
– Peter Prochazka
Nov 13 at 11:44
I wouldn't expect anything else from JSS team than some Easter eggs ;)
– Peter Prochazka
Nov 13 at 11:44
add a comment |
up vote
16
down vote
Maybe not an easter egg, but MainUtil
class contains some "useful" methods like:
- My favorites:
/// <summary>Returns false.</summary>
/// <returns></returns>
public static bool False()
{
return false;
}
/// <summary>
/// Returns <c>true</c>.
/// </summary>
/// <returns></returns>
public static bool True()
{
return true;
}
- Method used by every single Sitecore developer:
/// <summary>Determines whether the specified string is empty.</summary>
/// <param name="s">The s.</param>
/// <returns>
/// <c>true</c> if the specified string is empty; otherwise, <c>false</c>.
/// </returns>
public static bool IsEmpty(string s)
{
if (s != null)
return s.Length == 0;
return true;
}
- Very functional:
/// <summary>No-op</summary>
public static void Nop(params object obj)
{
}
/// <summary>Touch</summary>
public static void Touch(params object obj)
{
}
- The one I cannot live without:
/// <summary>
/// Method to call when doing silent catches. Causes the Resharper warning to disappear.
/// </summary>
public static void SilentCatch()
{
}
I think that these can be classified as Easter eggs as Easter eggs are also secret feature and these are definitely those kind of "features" :) Thanks for sharing
– Peter Prochazka
Nov 13 at 11:43
1
Interestingly, IsEmpty is basically the same as IsNullOrEmpty
– Matthew FitzGerald-Chamberlain
Nov 13 at 16:30
1
@Geoff Whoops! I'm not sure what was going through my mind, there. You're right.
– Nic Hartley
Nov 13 at 18:29
add a comment |
up vote
16
down vote
Maybe not an easter egg, but MainUtil
class contains some "useful" methods like:
- My favorites:
/// <summary>Returns false.</summary>
/// <returns></returns>
public static bool False()
{
return false;
}
/// <summary>
/// Returns <c>true</c>.
/// </summary>
/// <returns></returns>
public static bool True()
{
return true;
}
- Method used by every single Sitecore developer:
/// <summary>Determines whether the specified string is empty.</summary>
/// <param name="s">The s.</param>
/// <returns>
/// <c>true</c> if the specified string is empty; otherwise, <c>false</c>.
/// </returns>
public static bool IsEmpty(string s)
{
if (s != null)
return s.Length == 0;
return true;
}
- Very functional:
/// <summary>No-op</summary>
public static void Nop(params object obj)
{
}
/// <summary>Touch</summary>
public static void Touch(params object obj)
{
}
- The one I cannot live without:
/// <summary>
/// Method to call when doing silent catches. Causes the Resharper warning to disappear.
/// </summary>
public static void SilentCatch()
{
}
I think that these can be classified as Easter eggs as Easter eggs are also secret feature and these are definitely those kind of "features" :) Thanks for sharing
– Peter Prochazka
Nov 13 at 11:43
1
Interestingly, IsEmpty is basically the same as IsNullOrEmpty
– Matthew FitzGerald-Chamberlain
Nov 13 at 16:30
1
@Geoff Whoops! I'm not sure what was going through my mind, there. You're right.
– Nic Hartley
Nov 13 at 18:29
add a comment |
up vote
16
down vote
up vote
16
down vote
Maybe not an easter egg, but MainUtil
class contains some "useful" methods like:
- My favorites:
/// <summary>Returns false.</summary>
/// <returns></returns>
public static bool False()
{
return false;
}
/// <summary>
/// Returns <c>true</c>.
/// </summary>
/// <returns></returns>
public static bool True()
{
return true;
}
- Method used by every single Sitecore developer:
/// <summary>Determines whether the specified string is empty.</summary>
/// <param name="s">The s.</param>
/// <returns>
/// <c>true</c> if the specified string is empty; otherwise, <c>false</c>.
/// </returns>
public static bool IsEmpty(string s)
{
if (s != null)
return s.Length == 0;
return true;
}
- Very functional:
/// <summary>No-op</summary>
public static void Nop(params object obj)
{
}
/// <summary>Touch</summary>
public static void Touch(params object obj)
{
}
- The one I cannot live without:
/// <summary>
/// Method to call when doing silent catches. Causes the Resharper warning to disappear.
/// </summary>
public static void SilentCatch()
{
}
Maybe not an easter egg, but MainUtil
class contains some "useful" methods like:
- My favorites:
/// <summary>Returns false.</summary>
/// <returns></returns>
public static bool False()
{
return false;
}
/// <summary>
/// Returns <c>true</c>.
/// </summary>
/// <returns></returns>
public static bool True()
{
return true;
}
- Method used by every single Sitecore developer:
/// <summary>Determines whether the specified string is empty.</summary>
/// <param name="s">The s.</param>
/// <returns>
/// <c>true</c> if the specified string is empty; otherwise, <c>false</c>.
/// </returns>
public static bool IsEmpty(string s)
{
if (s != null)
return s.Length == 0;
return true;
}
- Very functional:
/// <summary>No-op</summary>
public static void Nop(params object obj)
{
}
/// <summary>Touch</summary>
public static void Touch(params object obj)
{
}
- The one I cannot live without:
/// <summary>
/// Method to call when doing silent catches. Causes the Resharper warning to disappear.
/// </summary>
public static void SilentCatch()
{
}
edited Nov 13 at 7:13
answered Nov 13 at 7:06
Marek Musielak
8,89811034
8,89811034
I think that these can be classified as Easter eggs as Easter eggs are also secret feature and these are definitely those kind of "features" :) Thanks for sharing
– Peter Prochazka
Nov 13 at 11:43
1
Interestingly, IsEmpty is basically the same as IsNullOrEmpty
– Matthew FitzGerald-Chamberlain
Nov 13 at 16:30
1
@Geoff Whoops! I'm not sure what was going through my mind, there. You're right.
– Nic Hartley
Nov 13 at 18:29
add a comment |
I think that these can be classified as Easter eggs as Easter eggs are also secret feature and these are definitely those kind of "features" :) Thanks for sharing
– Peter Prochazka
Nov 13 at 11:43
1
Interestingly, IsEmpty is basically the same as IsNullOrEmpty
– Matthew FitzGerald-Chamberlain
Nov 13 at 16:30
1
@Geoff Whoops! I'm not sure what was going through my mind, there. You're right.
– Nic Hartley
Nov 13 at 18:29
I think that these can be classified as Easter eggs as Easter eggs are also secret feature and these are definitely those kind of "features" :) Thanks for sharing
– Peter Prochazka
Nov 13 at 11:43
I think that these can be classified as Easter eggs as Easter eggs are also secret feature and these are definitely those kind of "features" :) Thanks for sharing
– Peter Prochazka
Nov 13 at 11:43
1
1
Interestingly, IsEmpty is basically the same as IsNullOrEmpty
– Matthew FitzGerald-Chamberlain
Nov 13 at 16:30
Interestingly, IsEmpty is basically the same as IsNullOrEmpty
– Matthew FitzGerald-Chamberlain
Nov 13 at 16:30
1
1
@Geoff Whoops! I'm not sure what was going through my mind, there. You're right.
– Nic Hartley
Nov 13 at 18:29
@Geoff Whoops! I'm not sure what was going through my mind, there. You're right.
– Nic Hartley
Nov 13 at 18:29
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsitecore.stackexchange.com%2fquestions%2f14891%2fis-there-any-easter-egg-in-sitecore%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
Point 38 of these release notes. community.sitecore.net/technical_blogs/b/…
– Mark Cassidy♦
Nov 13 at 8:40
1
Also; Unicorn has a few ;-)
– Mark Cassidy♦
Nov 13 at 8:47
2
Sounds like the hunt is on for the elusive answer to 38
– jrap
Nov 13 at 13:51