- 10 Years AnniversaryFreak! It’s been 10 years already….
- Add permanent route for VPN connections on Windows 10Add-VpnConnectionRoute -ConnectionName “YPC” -DestinationPrefix “10.1.1.0/24” -PassThru
- Fix! Unable to Remove bluetooth devices/mouse/keyboard/speaker issue for Windows 10This is the only working solution for me. Enjoy. My symptoms: – Previously working bluetooth speaker (UE BOOM 2 in my case) stops connecting – Windows 10 ‘Bluetooth and other devices’ menu shows the device as Paired – Pressing connect makes it attempt to connect but fails then it goes back to Paired – Remove … Continue reading Fix! Unable to Remove bluetooth devices/mouse/keyboard/speaker issue for Windows 10
- Example of Sending SMS in PHP Using AWS SNS$client = AWS::createClient(‘Sns’); $sms = [ ‘Message’ => ‘sms_content’, ‘PhoneNumber’ => ‘sms_recipient’, ‘MessageAttributes’ => [ ‘AWS.SNS.SMS.SenderID’ => [ ‘DataType’ => ‘String’, ‘StringValue’ => ‘AD’ ], ‘AWS.SNS.SMS.SMSType’ => [ ‘DataType’ => ‘String’, ‘StringValue’ => ‘Transactional’ ], ] ]; $result = $client->publish($sms);
- [CI] Bulb SwitcherThere are n bulbs that are initially off. You first turn on all the bulbs. Then, you turn off every second bulb. On the third round, you toggle every third bulb (turning on if it’s off or turning off if it’s on). For the nth round, you only toggle the last bulb. Find how … Continue reading [CI] Bulb Switcher