View erc20-token-as-coin-example.sol
This file contains 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
// Dieser Smart Contract erstellt einen Token mit dem Namen "My Token", | |
// dem Symbol "MYT" und 18 Dezimalstellen. Die Gesamtmenge des Token | |
// wird auf 100000000 festgelegt und der Besitzer des Smart Contracts | |
// wird automatisch als Besitzer des Token gesetzt. | |
// Der Smart Contract enthält auch die Funktionen "transfer", "approve" | |
// und "transferFrom", die es ermöglichen, Token an andere Adressen zu | |
// senden, die Übertragung von Token zu genehmigen und Token von einer | |
// Adresse auf eine andere zu übertragen. |
View html-js-notification.html
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Notification Test</title> | |
</head> | |
<body> | |
<button id="btn">Test</button> |
View one-million-passwords-list.txt
This file has been truncated, but you can view the full file.
This file contains 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
123456 | |
password | |
12345678 | |
qwerty | |
123456789 | |
12345 | |
1234 | |
111111 | |
1234567 | |
dragon |
View languages.sql
This file contains 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
CREATE TABLE `common_languages` ( | |
`id` int(11) NOT NULL, | |
`language_code` varchar(10) NOT NULL, | |
`language_name` varchar(100) NOT NULL, | |
`status` varchar(255) NOT NULL DEFAULT 'draft' | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
INSERT INTO `common_languages` (`id`, `language_code`, `language_name`, `status`) VALUES | |
(1, 'af', 'Afrikaans', ''), |
View continents.sql
This file contains 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
CREATE TABLE `common_continents` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`code` char(2) NOT NULL DEFAULT '', | |
`name` varchar(30) NOT NULL DEFAULT '', | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
insert into common_continents (code,name) values ('AF','Africa'); | |
insert into common_continents (code,name) values ('AN','Antarctica'); | |
insert into common_continents (code,name) values ('AS','Asien'); |
View ch-kantone.sql
This file contains 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
CREATE TABLE `common_ch_kantone` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`code` char(2) NOT NULL DEFAULT '', | |
`name` varchar(30) NOT NULL DEFAULT '', | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
insert into common_ch_kantone (code,name) values ('AG','Aargau'); | |
insert into common_ch_kantone (code,name) values ('AR','Appenzell Ausserrhoden'); | |
insert into common_ch_kantone (code,name) values ('AI','Appenzell Innerrhoden'); |
View us-states.sql
This file contains 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
CREATE TABLE `common_us_states` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`code` char(2) NOT NULL DEFAULT '', | |
`name` varchar(50) NOT NULL DEFAULT '', | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
insert into common_us_states (code,name) values ('AL','Alabama'); | |
insert into common_us_states (code,name) values ('AK','Alaska'); | |
insert into common_us_states (code,name) values ('AS','American Samoa'); |
View de-bundeslaender.sql
This file contains 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
CREATE TABLE `common_de_bundeslaender` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`code` char(2) NOT NULL DEFAULT '', | |
`name` varchar(30) NOT NULL DEFAULT '', | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
insert into common_de_bundeslaender (code,name) values ('BW','Baden-Württemberg'); | |
insert into common_de_bundeslaender (code,name) values ('BY','Bayern'); | |
insert into common_de_bundeslaender (code,name) values ('BE','Berlin'); |
View useDarkMode.js
This file contains 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
const matchDark = '(prefers-color-scheme: dark)' | |
function useDarkMode() { | |
const [isDark, setIsDark] = React.useState( | |
() => window.matchMedia && window.matchMedia(matchDark).matches | |
) | |
React.useEffect(() => { | |
const matcher = window.matchMedia(matchDark) | |
const onChange = ({ matches }) => setIsDark(matches) |
View useClickOutside.js
This file contains 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
function useClickOutside(elRef, callback) { | |
const callbackRef = React.useRef() | |
callbackRef.current = callback | |
React.useEffect(() => { | |
const handleClickOutside = e => { | |
if (elRef?.current?.contains(e.target) && callbackRef.current) { | |
callbackRef.current(e) | |
} |
NewerOlder