/* * This file is part of the Symfony package. * * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\String; if (!\function_exists(u::class)) { function u(?string $string = ''): UnicodeString { return new UnicodeString($string ?? ''); } } if (!\function_exists(b::class)) { function b(?string $string = ''): ByteString { return new ByteString($string ?? ''); } } if (!\function_exists(s::class)) { /** * @return UnicodeString|ByteString */ function s(?string $string = ''): AbstractString { $string = $string ?? ''; return preg_match('//u', $string) ? new UnicodeString($string) : new ByteString($string); } } Meet the BlueHat Content Advisory Board | MSRC Blog – OWASP Jakarta

Meet the BlueHat Content Advisory Board | MSRC Blog

We couldn’t do BlueHat without the Content Advisory Board, the brain trust reviewing submissions to the CFP. Representing both Microsoft and other parts of security community, the CAB applies their industry and speaker experience to create the BlueHat agenda that’s the right mix of topics and perspectives. We really appreciate the time these people take to review every submission and find the right talks.

A bio for each person is on the BlueHat site at https://www.microsoft.com/bluehat. Remember—you have until 9/20/2019 to submit your talk to the BlueHat CFP so this talented group of people can review it for inclusion in the program. Visit aka.ms/bhcfp today!

Laura Wolf, Senior Program Manager, MSRC

[ad_2]


0 Comments

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *