Skip to content

Instantly share code, notes, and snippets.

View KBPsystem777's full-sized avatar
כי על ידי הדרכה נבונה אתה יכול לנהל את המלחמה שלך

Koleen BP KBPsystem777

כי על ידי הדרכה נבונה אתה יכול לנהל את המלחמה שלך
View GitHub Profile
@KBPsystem777
KBPsystem777 / index.html
Created November 20, 2017 13:25
random-quote-machine
<html lang="en">
<head>
<title>KBPsystem | Quote Generator</title>
<link href="style.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Font Awesome-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!--Favicon-->
<link rel="shortcut icon" type="image/x-icon" href="https://kbpsystem777.github.io/Shot/favicon.ico">
@KBPsystem777
KBPsystem777 / license-badges.md
Created August 15, 2018 13:15 — forked from lukas-h/license-badges.md
License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • Badges are made with Shields.io.
  • This badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.  
  • 🇫🇷 Cette liste en français
  • Github has a new autodetection of the LICENSE file, which shows up the license at the repo overview
@KBPsystem777
KBPsystem777 / media-query.css
Created February 18, 2019 19:23 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@KBPsystem777
KBPsystem777 / App.css
Last active May 24, 2020 06:31
Responsive Website using CSS only
/* Responsive Images */
img {
max-width: 100%;
}
/* Tablet Landscape */
@media screen and (max-width: 1060px) {
#primary {
$ solana config set --url https://api.devnet.solana.com
@KBPsystem777
KBPsystem777 / PHDOG_Token.sol
Last active November 23, 2021 13:04
ERC20 Token Template for PH-Dog
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.2;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.1.0/contracts/token/ERC20/ERC20.sol";
contract Token is ERC20 {
constructor () public ERC20("Aspin Dog", "PHDOG") {
_mint(msg.sender, 100000000 * (10 ** uint256(decimals())));
}
}
@KBPsystem777
KBPsystem777 / targaryenNft.json
Created January 2, 2022 07:41
Targaryen-NFT-collection
{
"name": "Targaryen NFT Art",
"description": "Targaryen's three headed dragons",
"image": "https://ipfs.io/ipfs/QmaFMGNzfTfF9bVmhsdmfbzG6Hff1VahwR9EnymZHUku8p",
}
@KBPsystem777
KBPsystem777 / TargaryenNFT.sol
Created January 2, 2022 10:35
Targaryen NFT template
// SPDX-License-Identifier: MIT
pragma solidity 0.8.0;
import "https://github.com/nibbstack/erc721/blob/master/src/contracts/tokens/nf-token-metadata.sol";
import "https://github.com/0xcert/ethereum-erc721/src/contracts/ownership/ownable.sol";
contract newNFT is NFTokenMetadata, Ownable {
constructor() {
nftName = "Targaryen NFTs";
nftSymbol = "TARG";
@KBPsystem777
KBPsystem777 / contracts...1_Storage.sol
Created February 13, 2022 13:07
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.11+commit.d7f03943.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {