This file contains hidden or 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
    
  
  
    
  | Ring-ding-ding-ding-dingeringeding! | |
| Gering-ding-ding-ding-dingeringeding! | |
| Gering-ding-ding-ding-dingeringeding! | |
| Wa-pa-pa-pa-pa-pa-pow! | |
| Wa-pa-pa-pa-pa-pa-pow! | |
| Wa-pa-pa-pa-pa-pa-pow! | |
| Hatee-hatee-hatee-ho! | |
| Hatee-hatee-hatee-ho! | 
  
    
      This file contains hidden or 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
    
  
  
    
  | <?php | |
| $data = array( | |
| 'data' => array( | |
| 'username' => 'username', | |
| 'password' => 'password', | |
| 'senderName' => 'SndrName', | |
| 'message' => 'The message', | |
| 'recipients' => array( | |
| '+46700000000' | |
| ) | 
  
    
      This file contains hidden or 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
    
  
  
    
  | void Main() | |
| { | |
| var a = new A(); | |
| var b = new B(); | |
| a.One(); | |
| a.Two(); | |
| b.One(); | |
| b.Two(); | 
  
    
      This file contains hidden or 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
    
  
  
    
  | void Main() | |
| { | |
| var a = "1234"; | |
| var b = "abcd"; | |
| Console.WriteLine(IsValid(a)); // True | |
| Console.WriteLine(IsValid(b)); // False | |
| } | |
| bool IsValid(string s) | 
  
    
      This file contains hidden or 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
    
  
  
    
  | <?xml version="1.0" encoding="utf-8"?> | |
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <Target Name="Api_Web:Package"> | |
| <MSBuild | |
| Condition="'%(ProjectReference.Identity)' == '$(SolutionDir)src\Api.Web\Api.Web.csproj'" | |
| Projects="@(ProjectReference)" | |
| Targets="Package" | |
| BuildInParallel="True" | |
| ToolsVersion="4.0" | |
| Properties="BuildingSolutionFile=True; CurrentSolutionConfigurationContents=$(CurrentSolutionConfigurationContents); SolutionDir=$(SolutionDir); SolutionExt=$(SolutionExt); SolutionFileName=$(SolutionFileName); SolutionName=$(SolutionName); SolutionPath=$(SolutionPath)" | 
  
    
      This file contains hidden or 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
    
  
  
    
  | namespace E | |
| { | |
| using System; | |
| public static class Program | |
| { | |
| public static void Main() | |
| { | |
| var random = new Random(); | |
| var response = string.Empty; | 
  
    
      This file contains hidden or 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
    
  
  
    
  | namespace A | |
| { | |
| using System; | |
| using System.Linq; | |
| using System.ComponentModel; | |
| public static class Program | |
| { | |
| public static void Main() | |
| { | 
  
    
      This file contains hidden or 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
    
  
  
    
  | namespace ProjectCompany | |
| { | |
| public class Employee | |
| { | |
| private string firstName; | |
| private string secondName; | |
| private Company company; | |
| private Employee supervisor; | |
| public Employee (string firstName, string secondName, Company company, Employee supervisor) | 
  
    
      This file contains hidden or 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
    
  
  
    
  | <?xml version="1.0" encoding="utf-8" ?> | |
| <log4net> | |
| <appender name="ColoredConsoleAppender" type="log4net.Appender.ColoredConsoleAppender"> | |
| <mapping> | |
| <level value="INFO" /> | |
| <foreColor value="White, HighIntensity" /> | |
| </mapping> | |
| <mapping> | |
| <level value="ERROR" /> | |
| <foreColor value="Red, HighIntensity" /> | 
  
    
      This file contains hidden or 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
    
  
  
    
  | db.createCollection("Folders"); | |
| db.Folders.ensureIndex({ "UserId": 1 }); | |
| db.Folders.insert({ "UserId": 1 }); | |
| db.Folders.update({ "UserId": 1 }, { $set: { "Folders.A": { "Name": "A" } } }); | |
| db.Folders.update({ "UserId": 1 }, { $set: { "Folders.B": { "Name": "B" } } }); | |
| db.Folders.update({ "UserId": 1 }, { $set: { "Folders.C": { "Name": "C" } } }); | |
| db.Folders.update({ "UserId": 1 }, { $set: { "Folders.D": { "Name": "D" } } }); | |
| db.Folders.update({ "UserId": 1 }, { $unset: { "Folders.B" : "" } }); | |
| db.Folders.update({ "UserId": 1}, { $set: { "Folders.A.Folders.A": { "Name": "A" } } }); |