This file contains hidden or 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
{"lastUpload":"2021-06-04T04:31:44.165Z","extensionVersion":"v3.4.3"} |
This file contains hidden or 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
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.6.8; | |
contract LongNight{ | |
address payable public admin; | |
constructor() public{ | |
admin = msg.sender; | |
} | |
struct Game{ |
This file contains hidden or 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
{"[email protected]":{"/org/gnome/shell/extensions/gamemode/":"[/]\nactive-color='rgb(115,210,22)'\nactive-tint=false\nalways-show-icon=false"},"[email protected]":{"/org/gnome/shell/extensions/caffeine/":"[/]\nuser-enabled=true"},"[email protected]":{"/org/gnome/shell/extensions/user-theme/":""},"[email protected]":{},"[email protected]":{"/org/gnome/shell/extensions/window-corner-preview/":""},"music-integration@brianrobles204":{"/org/gnome/shell/extensions/musicintegration/":""},"[email protected]":{"/org/gnome/shell/extensions/screenshot/":""},"[email protected]":{},"[email protected]":{},"[email protected]":{"/org/gnome/shell/extensions/dash-to-panel/":"[/]\nappicon-margin=2\nappicon-padding=2\nhotkeys-overlay-combo='TEMPORARILY'\nisolate-workspaces=true\npanel-size=36"},"[email protected]":{"/org/gnome/shell/extensio |
This file contains hidden or 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
{"lastUpload":"2021-06-04T04:34:35.922Z","extensionVersion":"v3.4.3"} |
This file contains hidden or 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
@mixin respond($breakpoint) { | |
@if $breakpoint==mobile { | |
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) { | |
@content; | |
} | |
} | |
@if $breakpoint==tab { | |
@media (min-device-width: 668px) and (max-device-width: 1024px) { | |
@content; | |
} |
This file contains hidden or 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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
#source /home/denny/.bashrc | |
#source /home/YOUUSERNAME/.profile | |
# Path to your oh-my-zsh installation. | |
export NODE_HOME=/opt/node | |
export PATH=$PATH:$NODE_HOME/bin |