OpenDNS (Cisco):
208.67.222.222
208.67.220.220
Cloudflare:
1.1.1.1
1.0.0.1
Google:
8.8.8.8
8.8.4.4
OpenDNS (Cisco):
208.67.222.222
208.67.220.220
Cloudflare:
1.1.1.1
1.0.0.1
Google:
8.8.8.8
8.8.4.4
Example:
//lang=regex
var pattern = "(Mr\\.???\\? |Mrs\\.? |Miss |Ms\\.? )";
//lang=json,strict
var json = """
{
"name": "TONY",
"age": 36,
"books":
[
{"Title": "ABC"},
{"Title": "DEF"}
]
}
""";
JSON002: Probable JSON string detected - Visual Studio (Windows) | Microsoft Learn
See also:
.NET regular expressions
https://learn.microsoft.com/en-us/dotnet/standard/base-types/regular-expressions
ReGex Generator
https://regex-generator.olafneumann.org/
regex101: build, test, and debug regex
https://regex101.com/
These steps and commands are here for my reference.
If just want to clear a series of commits without losing the work that was done on files:
git reset --mixed [Commit-Id]
The commits after CommitId will be removed on your local branch and the files that were on these commits will return to stage area, so now you can create a new commit wich includes the files:
git commit -m "Write your commit message here"
And then send this new history to the server and replace the older one with:
git push --force
HTTP files now support request variables. That is where you can send a request and then use data from the response, or request, in future requests.
When working with HTTP files, a common scenario is calling an endpoint, taking a value from the response, and sending in a subsequent request. For example, you may call an endpoint to authenticate a user and then on later calls you can pass the token that was returned from the login endpoint. Prior to this release this was not possible in Visual Studio. In the snippet below you can see an example of how this works in an HTTP file.
# @name login
POST {{TodoApi_HostAddress}}/users/token
Content-Type: application/json
{
"username": "{{myusername}}",
"password": "{{mypassword}}"
}
###
GET {{TodoApi_HostAddress}}/todos
Authorization: Bearer {{login.response.body.$.token}}
###
On the computer, go to:
https://mysignins.microsoft.com/security-info
Microsoft Authenticator
It will generate a QR code
ON the mobile app, select + Add account
corporative or student
Read a QR Code
Then point the mobile camera to the computer QR code.
...