Tokyo area Meiji Jingu Shrine Sushi Ni Midori (Shibuya City) Observatory at the Tokyo Metropolitan Government Office (Views of Tokyo) teamLab Planets - Sensory experience Enoshima - observatory - Nice views
Gluten Free Tea
Celestial Seasonings - Some teas are GFCO Certified. They will label each tea either ‘gluten free’ or ‘contains gluten’. Republic of Tea - Some teas are GFCO certified. Choice Organics - Claim that all of their trees are gluten-free and are made in a gluten free facility. Not certified. Traditional Medicinals - Claim that all their ingredients including tea bags are naturally gluten free and they don’t process gluten in their facility.
Wake on Lan
Sending a magic packet using PowerShell The WOL magic packet is a byte array with 6 bytes of value 255 and then 16 repetitions of the MAC address. $mac = '01-23-45-67-89-AB'; [System.Net.NetworkInformation.NetworkInterface]::GetAllNetworkInterfaces() | Where-Object { $_.NetworkInterfaceType -ne [System.Net.NetworkInformation.NetworkInterfaceType]::Loopback -and $_.OperationalStatus -eq [System.Net.NetworkInformation.OperationalStatus]::Up } | ForEach-Object { $networkInterface = $_ $localIpAddress = ($networkInterface.GetIPProperties().UnicastAddresses | Where-Object { $_.Address.AddressFamily -eq [System.Net.Sockets.AddressFamily]::InterNetwork })[0].Address $targetPhysicalAddress = [System.Net.NetworkInformation.PhysicalAddress]::Parse(($mac.ToUpper() -replace '[^0-9A-F]','')) $targetPhysicalAddressBytes = $targetPhysicalAddress.GetAddressBytes() $packet = [byte[]](,0xFF * 102) 6..101 | Foreach-Object { $packet[$_] = $targetPhysicalAddressBytes[($_ % 6)] } $localEndpoint = [System.Net.IPEndPoint]::new($localIpAddress, 0) $targetEndpoint = [System.Net.IPEndPoint]::new([System.Net.IPAddress]::Broadcast, 9) $client = [System.Net.Sockets.UdpClient]::new($localEndpoint) try { $client.Send($packet, $packet.Length, $targetEndpoint) | Out-Null } finally { $client.Dispose() } } Code originally found at this StackOverflow answer. ...