Skip to main content

I forgot to ask a question about this Blog

I set this up so I receive an e-mail whenever a post or a comment was left by me or anyone else. Do you guys get that option. I know you get the option of subscribing to a particular post/thread, but do you have the option to subscribe to any post or any comment globally and get e-mail?
I cannot tell because I'm an Admin and an Author but I made all of you Authors as well.
Please could someone let me know.
Also, can you guys just let me know if you think this is better than the course info dicussion board or not?
TIA

Comments

  1. In the "Followers" section to the right, next to my name I clicked on 'options' then 'site settings' , which brings me to a settings page. On that page I clicked on 'messaging' and it gave the following checkbox options:

    Messaging options for this site:
    Allow site members to send messages to your email address.
    Receive site newsletters and communication from Youssef's Blog

    So, I'll see if I get an email when someone posts or comments...

    ReplyDelete
  2. oh! I wanna check that cause i dont receive emails... I just randomly check everyday to see if someone has post something new.

    ReplyDelete
  3. I feel like this is a lot cleaner than the discussion board. It doesn't quite highlight new messages as well, but the subject matter can be chunked, tagged, and sorted easier.

    ReplyDelete

Post a Comment

Popular posts from this blog

Save All/Format All Documents in Visual Studio

Sub FormatAll()    For Each proj As Project In DTE.Solution.Projects      FormatFileRecur(proj.ProjectItems())    Next End Sub Sub FormatFileRecur(ByVal projectItems As EnvDTE.ProjectItems)    For Each pi As EnvDTE.ProjectItem In projectItems      If pi.Collection Is projectItems Then        Dim pi2 As EnvDTE.ProjectItems = pi.ProjectItems        Try          If pi.Name.EndsWith(".cs") Then            If Not (pi.Name.EndsWith("Designer.cs")) Then               If Not pi.IsOpen Then pi.Open(Constants.vsViewKindCode)             pi.Document.Activate()             DTE.ExecuteCommand("Edit.FormatDocum...

WCF Dos and Don'ts

Do not inherit interfaces from other interfaces. Interfaces are contracts. Contracts must be explicit, otherwise the flexibility and maintainability of your design would run into issues. An interface is a pure contract definition and should remain explicit and pure. Consider the following example: [ServiceContract] public interface IMyService1 { [OperationContract] void Test1(); } [ServiceContract] public interface IMyService2 : IMyService1 { [OperationContract] void Test2(); } [ServiceBehavior(…)] class MyService : IMyService2, IMyService1 { #region IMyService2 Members public void Test2() { } #endregion #region IMyService1 Members public void Test1() { } #endregion } What happens when you Publish your Service and open its communication channels. If you do the following: ServiceHost serviceHost = new ServiceHost(typeof(MyService, …) ServiceEndpoint ep = serviceHost.AddServiceEndpoint(typeof(IMyService1), typeof(IMyService2)); You will get...