| Company | % of Assets |
|---|---|
| BMO MSCI EAFE Hedged to CAD Idx ETF | 24.6% |
| BMO S&P 500 Index ETF | 24.4% |
| BMO S&P/TSX Capped Comp Index ETF | 15.0% |
| BMO MSCI EAFE Index ETF | 14.6% |
| BMO MSCI Emerging Markets Index ETF | 7.9% |
| BMO NASDAQ 100 Hedged Index ETF | 5.6% |
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
| using (var connection = new MySqlConnection("Server=localhost;Database=MyDatabaseName;Uid=root;Pwd=;")) | |
| using (var command = connection.CreateCommand()) { | |
| connection.Open(); | |
| command.CommandText = "select id, name from widgets"; | |
| using (var reader = command.ExecuteReader()) | |
| while (reader.Read()) | |
| Console.WriteLine(reader.GetString(0) + ": " + reader.GetString(1)); | |
| } |
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
| for i in {1..20}; do | |
| vim --startuptime start$i.log; | |
| done | |
| find start* -exec grep STARTED {} \; | cut -d' ' -f1 |
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
| Found 61 xstock tokens with mint authority for `S7vYFFWH6BjJyEsdrPQpqpYTqLTrPRK6KW3VwsJuRaS` | |
| https://solscan.io/account/S7vYFFWH6BjJyEsdrPQpqpYTqLTrPRK6KW3VwsJuRaS | |
| ┌────────┬─────────────────────────────────────────────┬───────────────────────────────────────────────────────────────────────┐ | |
| │ SYMBOL │ MINT ADDRESS │ URI │ | |
| ├────────┼─────────────────────────────────────────────┼───────────────────────────────────────────────────────────────────────┤ | |
| │ SPYx │ XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W │ https://xstocks-metadata.backed.fi/tokens/Solana/SPYx/metadata.json │ | |
| │ CRWDx │ Xs7xXqkcK7K8urEqGg52SECi79dRp2cEKKuYjUePYDw │ https://xstocks-metadata.backed.fi/tokens/Solana/CRWDx/metadata.json │ | |
| │ TSLAx │ XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB │ https://xstocks-metadata.backed.fi/tokens/Solana/TSLAx/metadata.json │ |
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
| import os | |
| import asyncio | |
| from datetime import datetime, timedelta, timezone | |
| from mcp_use import MCPClient | |
| async def main(): | |
| client = MCPClient.from_config_file("multi_mcp_config.json") | |
| try: | |
| # compute cutoff ISO timestamp |

