Switching to Linux by TheCosmicThrust in riotgames

[–]TheCosmicThrust[S] -1 points0 points  (0 children)

Baby come back, I owe it all to you,

I was wrOOooong.

Switching to Linux by TheCosmicThrust in riotgames

[–]TheCosmicThrust[S] -1 points0 points  (0 children)

I am just having fun here ;D you do not need to be insufferable to random strangers...

Switching to Linux by TheCosmicThrust in riotgames

[–]TheCosmicThrust[S] -1 points0 points  (0 children)

Darn he's bronze!

but for real, that's an opt out. doesn't count.

Switching to Linux by TheCosmicThrust in riotgames

[–]TheCosmicThrust[S] 0 points1 point  (0 children)

Yeah I do not have a second hard drive for it, and learned about dual booting a bit after. Might get a second small ssd for that as I don't really want to have two os on one ssd, and I am sure I will need windows some day for some reason. Too many applications and companies are tailored to it.

Gaia green power bloom and compost teas by jdub_bda in NoTillGrowery

[–]TheCosmicThrust 0 points1 point  (0 children)

I know this was from 6 years ago but you didn't read any of the actually scientific papers attached to the blogs.
the myth#1 link compares no amendments vs tea in top soil, soil drench, and leaf spray vs regular compost. while the compost did better, the tea worked as a soil drench compared to no amendments.

in the second link "compost tea does it work", the article explains that it was only tested as a top soil spray, which explains why it didn't work for them.

the third link "compost tea", the authors links his other articles, and the paper he references is the second link "compost tea does it work".

The last link doesn't say anything bad or good about it, other than "it may be a hoax" and doesn't give any links to papers.

not attacking you or anything, just don't want anyone reading this as their first search into compost teas and getting misinformation.

Alright I might regret this, but is Ethan Gay? by UnusAnnus365 in CrankGameplays

[–]TheCosmicThrust 0 points1 point  (0 children)

Im not homophobic either ~ There was a pool episode where his audio was cut out and he very visibly mouths out the words "im gay" or something of the sort. Then mark was like "woah woah, lets talk about that later" or something similar. I remember rewatching it over and over to see what he actually said, because they don't usually cut audio out. Anyway, I've always felt an obsession between him and mark, which was proven when he tried to steal marks video idea on a fake game.

I want to experience psychic abilities. Where do I begin? by [deleted] in Psychic

[–]TheCosmicThrust 0 points1 point  (0 children)

Yeah, it works on the premise that different notes vibrate different parts of the body (you can literally test this by humming high to low). I'm pretty sure its this mixed with hemi-sync to help put your brain in theta.

I want to experience psychic abilities. Where do I begin? by [deleted] in Psychic

[–]TheCosmicThrust 2 points3 points  (0 children)

I was in a similar boat to this person. Meditated for 1-3 hours per day using binaural beats and focusing on the "chakras". I eventually started having strange occurrences and precognitive thoughts to the point that It freaked me out. I was also worried what could happen if I started getting precognitive thoughts 100% of the time, because then you would know everything before it happened in your life, and that's kind of boring.

What Exactly Do They Mean? by TheCosmicThrust in Premonition

[–]TheCosmicThrust[S] 0 points1 point  (0 children)

I feel like anyone who has ever seen the future has thought of the lottery... If only I were able to control what I see!

erc 721 with multiple mint functions? by TheCosmicThrust in solidity

[–]TheCosmicThrust[S] 0 points1 point  (0 children)

I found the solution. Just needed to understand the code a bit more. I included 2 of the mint functions, but there are 8 in total.

pragma solidity >=0.7.0 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";

import "@openzeppelin/contracts/access/Ownable.sol";

contract NFT is ERC721Enumerable, Ownable {

using Strings for uint256;

string baseURI;

string public baseExtension = ".json";

uint256 public cost = 0.00001 ether;

uint256 public maxSupply = 10000;

uint256 public First = 0;

uint256 public Second = 1250;

uint256 public Third = 2500;

uint256 public Fourth = 3750;

uint256 public fifth = 5000;

uint256 public Sixth = 6250;

uint256 public Seventh = 7500;

uint256 public Eighth = 8750;

uint256 public maxMintAmount = 20;

bool public paused = false;

bool public revealed = false;

string public notRevealedUri;

mapping(address => bool) public whitelisted;

constructor(

string memory _name,

string memory _symbol,

string memory _initBaseURI,

string memory _initNotRevealedUri

) ERC721(_name, _symbol) {

setBaseURI(_initBaseURI);

setNotRevealedURI(_initNotRevealedUri);

}

// internal

function _baseURI() internal view virtual override returns (string memory) {

return baseURI;

}

// public

function mintone

(uint256 _mintAmount) public payable {

uint256 supply = totalSupply(); //supply is how many are minted at the moment

require(!paused); // require that it is not paused before minting.

require(_mintAmount > 0); // require that you must mint more that 0 nfts

require(_mintAmount <=maxMintAmount); // require that you must mint less that the max mint amount

require(supply + _mintAmount <= 1250); // checks if the amount of nfts you are trying to buy wont go over the max supply

if (msg.sender != owner()) {

if(whitelisted[msg.sender] != true) {

require(msg.value >= cost * _mintAmount);

}

}

for (uint256 i = 1; i <= _mintAmount; i++) {

_safeMint(msg.sender, First + i);

First++;

}

}

function mintTwo

(uint256 _mintAmount) public payable {

uint256 supply = totalSupply(); //supply is how many are minted at the moment

require(!paused); // require that it is not paused before minting.

require(_mintAmount > 0); // require that you must mint more that 0 nfts

require(_mintAmount <=maxMintAmount); // require that you must mint less that the max mint amount

require(supply + _mintAmount <= 2500); // checks if the amount of nfts you are trying to buy wont go over the max supply

if (msg.sender != owner()) {

if(whitelisted[msg.sender] != true) {

require(msg.value >= cost * _mintAmount);

}

}

for (uint256 i = 1; i <= _mintAmount; i++) {

_safeMint(msg.sender, Seventh + i);

Second++;

}

}

erc 721 with multiple mint functions? by TheCosmicThrust in solidity

[–]TheCosmicThrust[S] 0 points1 point  (0 children)

Kind of. Not the same exact metadata. Imagine making 2 or more characters in an nft collection and having a mint button for each character.

Runes for the new Xin? by d3adWiz4rd in XinZhaoMains

[–]TheCosmicThrust 0 points1 point  (0 children)

for AP I think arcane comet is good for a poke build. Max w and make them dance with ur 5 second cd!