This is content converted from Markdown!
Here's a JSON sample:
{
"foo": "bar"
}
<html> | |
<head> | |
<style> | |
h1 { | |
font-family: Calibri; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Hello World!</h1> |
package main | |
import ( | |
"crypto/aes" | |
"encoding/base64" | |
"fmt" | |
"github.com/andreburgaud/crypt2go/ecb" | |
"github.com/andreburgaud/crypt2go/padding" | |
) |
msvs_version=2017 | |
//pkgs.dev.azure.com/{org}/_packaging/{org}/npm/registry/:username=VssSessionToken | |
; This is an unencrypted authentication token. Treat it like a password. DO NOT share this value with anyone, including Microsoft support. | |
//pkgs.dev.azure.com/{org}/_packaging/{org}/npm/registry/:_password={pat} | |
; The npm client won't use username and _password without an email set, but the service doesn't use the email value. The following is an arbitrarily made-up address. | |
//pkgs.dev.azure.com/{org}/_packaging/{org}/npm/registry/:[email protected] |
import "../styles/globals.css"; | |
import { LocalAppProps } from "../interfaces"; | |
import ErrorBoundary from "../components/ErrorBoundary"; | |
import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; | |
import Controller from "../components/Controller"; | |
const queryClient = new QueryClient(); | |
export default function MyApp({ Component, pageProps }: LocalAppProps) { | |
return ( |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace PassPropertyTests | |
{ | |
public class BaseObject | |
{ | |
public string Name { get; set; } | |
public string Email { get; set; } |
git add . | |
git commit --date='2020-10-09 00:00:00' -m "initial commit" | |
git filter-branch --env-filter 'export GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE"' | |
git push -f |
function myCoolFetch(url: string): Promise<Response> { | |
// Simulating an asynchronous operation | |
return new Promise<Response>((resolve, reject) => { | |
// Simulating a delay before resolving the promise | |
setTimeout(() => { | |
// Create a mock response object | |
const response: Response = { | |
status: 200, | |
statusText: "OK", | |
ok: true, |
{ | |
"main": "dist/index.js", | |
"scripts": { | |
"build": "npx tsc && node dist/index.js" | |
}, | |
"devDependencies": { | |
"typescript": "^4.9.5" | |
} | |
} |