| Symbol | Name | Code |
|---|---|---|
| & | Ampersand | & |
| < | Open angle brackets or less than | < |
| > | Close angle brackets or greater than | > |
| " | Double quotes | " |
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
| [ | |
| { | |
| "logo": "https://www.car-logos.org/wp-content/uploads/2011/09/abarth1.png", | |
| "name": "Abarth" | |
| }, | |
| { | |
| "logo": "https://www.car-logos.org/wp-content/uploads/2011/09/ac-cars.png", | |
| "name": "AC" | |
| }, | |
| { |
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
| # WebApi web.config configuration when working behind a proxy | |
| ## Approach 1 | |
| ```xml | |
| <system.net> | |
| <defaultProxy enabled="false"></defaultProxy> | |
| </system.net> | |
| ``` | |
| ## Approach 2 |
TabAuto-complete file and folder namesCtrl + AGo to the beginning of the line you're currently typing onCtrl + EGo to the end of the line you're currently typing onCtrl + UClear the line before the cursorCtrl + KClear the line after the cursorCtrl + WDelete the word before the cursorCtrl + TSwap the last two characters before the cursorEsc + TSwap the last two words before the cursor
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
| Reference to the principal github repository: https://github.com/AndreiMisiukevich/HotReload | |
| Nuget Packages: https://www.nuget.org/packages/Xamarin.HotReload | |
| using Xamarin.Forms; | |
| namespace YourNamespace | |
| { | |
| public partial class App : Application | |
| { | |
| public App() | |
| { |
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 System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| namespace ReadProcessAndWriteFile | |
| { |
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
| <?php | |
| include_once('utilities.php'); | |
| include_once('db/database_utilities.php'); | |
| $result = run_query(); | |
| ?> | |
| <!doctype html> | |
| <html class="no-js" lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> |