Henry Basto

 

 

 

Carlos Henrique de Senna Fernandes de Castro Basto#2960

Birth: 27 March 1890, Sé, Macau
Marriage: Ellen Mary Cooper no children
Death: 1 September 1942, Hong Kong, When the Japanese invaded Hong Kong in 1941 the Club Lusitano was turned into a defence centre by the Hong Kong Volunteers. The Japanese were very suspicious of the club’s activities and periodically made surprise visits and took members away for interrogation and imprisonment. On one such visit the then President, Henry Basto, and some friends were whiling away idle time by working out theoretical games of bridge. The Japanese commander saw the notes of the bridge hands and was convinced they were secret code. Henry Basto was tried for espionage, imprisoned and later beheaded.
Details are in the restricted website with ID #2960
1 function special_tooltip_shortcode($atts) { // Default attributes $atts = shortcode_atts(array( 'keyword' => 'Test Tooltip', 'id' => '123', 'items' => '', ), $atts); // Escape output $keyword = esc_html($atts['keyword']); $id = (int) $atts['id']; // Clean items: remove empty lines $lines = preg_split('/\r\n|\r|\n/', $atts['items']); $clean_lines = array_filter(array_map('trim', $lines)); // Trim each line, remove empty $items = ''; foreach ($clean_lines as $line) { $items .= esc_html($line) . '
'; } // Fixed base URL $url = "https://www.macaneselibrary.org/macfams/priv/english/"; // Build output $output = "
{$keyword} #{$id}
{$keyword} #{$id} {$items} Details are in the private website: Already logged in?
Register or login?
"; return $output; } add_shortcode('specialtooltip', 'special_tooltip_shortcode');