Is there any easter egg in Sitecore?












12















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)










share|improve this question




















  • 2





    Point 38 of these release notes. community.sitecore.net/technical_blogs/b/…

    – Mark Cassidy
    Nov 13 '18 at 8:40








  • 1





    Also; Unicorn has a few ;-)

    – Mark Cassidy
    Nov 13 '18 at 8:47






  • 2





    Sounds like the hunt is on for the elusive answer to 38

    – jrap
    Nov 13 '18 at 13:51
















12















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)










share|improve this question




















  • 2





    Point 38 of these release notes. community.sitecore.net/technical_blogs/b/…

    – Mark Cassidy
    Nov 13 '18 at 8:40








  • 1





    Also; Unicorn has a few ;-)

    – Mark Cassidy
    Nov 13 '18 at 8:47






  • 2





    Sounds like the hunt is on for the elusive answer to 38

    – jrap
    Nov 13 '18 at 13:51














12












12








12


1






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)










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 '18 at 11:39







Peter Procházka

















asked Nov 13 '18 at 6:16









Peter ProcházkaPeter Procházka

4,6591840




4,6591840








  • 2





    Point 38 of these release notes. community.sitecore.net/technical_blogs/b/…

    – Mark Cassidy
    Nov 13 '18 at 8:40








  • 1





    Also; Unicorn has a few ;-)

    – Mark Cassidy
    Nov 13 '18 at 8:47






  • 2





    Sounds like the hunt is on for the elusive answer to 38

    – jrap
    Nov 13 '18 at 13:51














  • 2





    Point 38 of these release notes. community.sitecore.net/technical_blogs/b/…

    – Mark Cassidy
    Nov 13 '18 at 8:40








  • 1





    Also; Unicorn has a few ;-)

    – Mark Cassidy
    Nov 13 '18 at 8:47






  • 2





    Sounds like the hunt is on for the elusive answer to 38

    – jrap
    Nov 13 '18 at 13:51








2




2





Point 38 of these release notes. community.sitecore.net/technical_blogs/b/…

– Mark Cassidy
Nov 13 '18 at 8:40







Point 38 of these release notes. community.sitecore.net/technical_blogs/b/…

– Mark Cassidy
Nov 13 '18 at 8:40






1




1





Also; Unicorn has a few ;-)

– Mark Cassidy
Nov 13 '18 at 8:47





Also; Unicorn has a few ;-)

– Mark Cassidy
Nov 13 '18 at 8:47




2




2





Sounds like the hunt is on for the elusive answer to 38

– jrap
Nov 13 '18 at 13:51





Sounds like the hunt is on for the elusive answer to 38

– jrap
Nov 13 '18 at 13:51










2 Answers
2






active

oldest

votes


















14














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.





share|improve this answer



















  • 3





    I wouldn't expect anything else from JSS team than some Easter eggs ;)

    – Peter Procházka
    Nov 13 '18 at 11:44



















16














Maybe not an easter egg, but MainUtil class contains some "useful" methods like:




  1. 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;
}



  1. 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;
}



  1. Very functional:


/// <summary>No-op</summary>
public static void Nop(params object obj)
{
}

/// <summary>Touch</summary>
public static void Touch(params object obj)
{
}



  1. 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()
{
}





share|improve this answer


























  • 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 Procházka
    Nov 13 '18 at 11:43








  • 1





    Interestingly, IsEmpty is basically the same as IsNullOrEmpty

    – Matthew FitzGerald-Chamberlain
    Nov 13 '18 at 16:30






  • 1





    @Geoff Whoops! I'm not sure what was going through my mind, there. You're right.

    – Nic Hartley
    Nov 13 '18 at 18:29











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "664"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















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

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









14














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.





share|improve this answer



















  • 3





    I wouldn't expect anything else from JSS team than some Easter eggs ;)

    – Peter Procházka
    Nov 13 '18 at 11:44
















14














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.





share|improve this answer



















  • 3





    I wouldn't expect anything else from JSS team than some Easter eggs ;)

    – Peter Procházka
    Nov 13 '18 at 11:44














14












14








14







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.





share|improve this answer













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.






share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 13 '18 at 10:13









jflheureuxjflheureux

1,301317




1,301317








  • 3





    I wouldn't expect anything else from JSS team than some Easter eggs ;)

    – Peter Procházka
    Nov 13 '18 at 11:44














  • 3





    I wouldn't expect anything else from JSS team than some Easter eggs ;)

    – Peter Procházka
    Nov 13 '18 at 11:44








3




3





I wouldn't expect anything else from JSS team than some Easter eggs ;)

– Peter Procházka
Nov 13 '18 at 11:44





I wouldn't expect anything else from JSS team than some Easter eggs ;)

– Peter Procházka
Nov 13 '18 at 11:44











16














Maybe not an easter egg, but MainUtil class contains some "useful" methods like:




  1. 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;
}



  1. 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;
}



  1. Very functional:


/// <summary>No-op</summary>
public static void Nop(params object obj)
{
}

/// <summary>Touch</summary>
public static void Touch(params object obj)
{
}



  1. 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()
{
}





share|improve this answer


























  • 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 Procházka
    Nov 13 '18 at 11:43








  • 1





    Interestingly, IsEmpty is basically the same as IsNullOrEmpty

    – Matthew FitzGerald-Chamberlain
    Nov 13 '18 at 16:30






  • 1





    @Geoff Whoops! I'm not sure what was going through my mind, there. You're right.

    – Nic Hartley
    Nov 13 '18 at 18:29
















16














Maybe not an easter egg, but MainUtil class contains some "useful" methods like:




  1. 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;
}



  1. 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;
}



  1. Very functional:


/// <summary>No-op</summary>
public static void Nop(params object obj)
{
}

/// <summary>Touch</summary>
public static void Touch(params object obj)
{
}



  1. 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()
{
}





share|improve this answer


























  • 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 Procházka
    Nov 13 '18 at 11:43








  • 1





    Interestingly, IsEmpty is basically the same as IsNullOrEmpty

    – Matthew FitzGerald-Chamberlain
    Nov 13 '18 at 16:30






  • 1





    @Geoff Whoops! I'm not sure what was going through my mind, there. You're right.

    – Nic Hartley
    Nov 13 '18 at 18:29














16












16








16







Maybe not an easter egg, but MainUtil class contains some "useful" methods like:




  1. 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;
}



  1. 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;
}



  1. Very functional:


/// <summary>No-op</summary>
public static void Nop(params object obj)
{
}

/// <summary>Touch</summary>
public static void Touch(params object obj)
{
}



  1. 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()
{
}





share|improve this answer















Maybe not an easter egg, but MainUtil class contains some "useful" methods like:




  1. 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;
}



  1. 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;
}



  1. Very functional:


/// <summary>No-op</summary>
public static void Nop(params object obj)
{
}

/// <summary>Touch</summary>
public static void Touch(params object obj)
{
}



  1. 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()
{
}






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 13 '18 at 7:13

























answered Nov 13 '18 at 7:06









Marek MusielakMarek Musielak

9,67011035




9,67011035













  • 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 Procházka
    Nov 13 '18 at 11:43








  • 1





    Interestingly, IsEmpty is basically the same as IsNullOrEmpty

    – Matthew FitzGerald-Chamberlain
    Nov 13 '18 at 16:30






  • 1





    @Geoff Whoops! I'm not sure what was going through my mind, there. You're right.

    – Nic Hartley
    Nov 13 '18 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 Procházka
    Nov 13 '18 at 11:43








  • 1





    Interestingly, IsEmpty is basically the same as IsNullOrEmpty

    – Matthew FitzGerald-Chamberlain
    Nov 13 '18 at 16:30






  • 1





    @Geoff Whoops! I'm not sure what was going through my mind, there. You're right.

    – Nic Hartley
    Nov 13 '18 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 Procházka
Nov 13 '18 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 Procházka
Nov 13 '18 at 11:43






1




1





Interestingly, IsEmpty is basically the same as IsNullOrEmpty

– Matthew FitzGerald-Chamberlain
Nov 13 '18 at 16:30





Interestingly, IsEmpty is basically the same as IsNullOrEmpty

– Matthew FitzGerald-Chamberlain
Nov 13 '18 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 '18 at 18:29





@Geoff Whoops! I'm not sure what was going through my mind, there. You're right.

– Nic Hartley
Nov 13 '18 at 18:29


















draft saved

draft discarded




















































Thanks for contributing an answer to Sitecore Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














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





















































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







這個網誌中的熱門文章

Hercules Kyvelos

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud