$ mc mb myminio/static
Bucket created successfully ‘myminio/static’.
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
| // Use Microsoft365 username and access token | |
| NetworkCredential credentials = new OAuthNetworkCredential(username, accessToken); | |
| using var client = EWSClient.GetEWSClient("https://outlook.office365.com/EWS/Exchange.asmx", credentials); |
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
| https://coinmarketcap.com/currencies/gala/ | |
| https://coinmarketcap.com/currencies/mina/ | |
| https://coinmarketcap.com/currencies/the-sandbox/ | |
| https://coinmarketcap.com/currencies/near-protocol/ | |
| https://coinmarketcap.com/currencies/vechain/ | |
| https://coinmarketcap.com/currencies/internet-computer/ | |
| https://coinmarketcap.com/currencies/filecoin/ | |
| https://coinmarketcap.com/currencies/uniswap/ | |
| https://coinmarketcap.com/currencies/xrp/ | |
| https://coinmarketcap.com/currencies/chainlink/ |
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
| docker-compose down | |
| docker rm -f $(docker ps -a -q) | |
| docker volume rm $(docker volume ls -q) | |
| docker-compose up -d |
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
| 1) Code behind migration | |
| Add-Migration DbInit | |
| Add-Migration ChangeModuleTable | |
| 2) SQL script generation | |
| Script-DbContext -Output .\Demo\SP.Migrator\Scripts\Dbinit.sql |
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
| How to add Font Awesome @fortawesome/fontawesome-free to an Angular project? | |
| 1) Go to the project directory | |
| 2) Install Font Awesome as said on their website: | |
| https://fontawesome.com/how-to-use/on-the-web/setup/getting-started?using=web-fonts-with-css | |
| through npm: npm install --save @fortawesome/fontawesome-free | |
| Use '--save' not '--save-dev' | |
| 3) Add Font Awesome to 'styles' in 'anguler.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
| { | |
| "assets":[ | |
| "src/config.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
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >=0.7.0 <0.9.0; | |
| contract SimpleAuction { | |
| // Parameters of the auction. Times are either | |
| // absolute unix timestamps (seconds since 1970-01-01) | |
| // or time periods in seconds. | |
| address payable public beneficiary; | |
| uint public auctionEndTime; | |
| // Current state of the auction. |
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
| data:text/html,<html contenteditable> |
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
| constructor(private router: Router) { | |
| router.events.pipe(filter((e: Event): e is RouterEvent => e instanceof RouterEvent)).subscribe((e: RouterEvent) => { | |
| console.log(e); | |
| }); | |
| } |