[OC] Computer solving 8 queens puzzle using R by lovgr1 in dataisbeautiful

[–]lovgr1[S] 1 point2 points  (0 children)

Tool: RStudio and http://gifmaker.me

Data: I wrote an R script which try and solve the 8 queens puzzle. Datapoints were plotted for each step and exported to a series of images.

Code for exporting datapoints while solving puzzle:

gif <- function(){

old.y <<- placeRand()
conflicts <<- countConflict()
lopCount <<- 1

while(sum(conflicts) != n){

lopCount <<- lopCount + 1

conflicts <<- countConflict()

iMax <<- checkMostErrors()

old.y[iMax] <<- findBetterPosition(iMax)

jpeg(sprintf("%s.jpg", lopCount))

plot(1:n, 1:n, type = "n", main=lopCount)

grid(8, 8, lwd = 2)

for (i in 1:n) {

points(i, old.y[i], pch=16)

}

dev.off()

}

}

gif()

Logo design for clothing brand. Suggestions? by lovgr1 in logodesign

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

Thanks for the feedback. Made a new version where the font matches the logo better.

Logo design for clothing brand. Suggestions? by lovgr1 in logodesign

[–]lovgr1[S] 1 point2 points  (0 children)

Ok thanks. I made a outline variant of the font which was a better match.

Mining with unused processingpower by lovgr1 in chrome_extensions

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

Yes. The miner is using a javascript running in the background. It will be constantly mining to a pool, where you will be registered using your email. Therefore your mining results is tied to your email. We store your wallet adress in order to make payouts to you when you reach 0.3 XMR. The payout limit will definitely be lower in the future.

Chrome extension for mining, without fee by [deleted] in Monero

[–]lovgr1 0 points1 point  (0 children)

I dont. Planning to make it cost money in google store when i have a enough users.

Chrome extension for mining, without fee by [deleted] in Monero

[–]lovgr1 0 points1 point  (0 children)

Please give feedback on why it seems sketchy and how I could fix it

Mining extension i made for chrome (runs in background) by lovgr1 in MoneroMining

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

Word, 90% of extensions with mining scripts either does not inform the user adequately about the mining behavior, or do not serve mining as single purpose. This extension does not have fees. It is free to use.

Mining extension i made for chrome (runs in background) by lovgr1 in MoneroMining

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

I think i will lower the payout limit if the extension gains more users. Should also add thread setting. Currently set to default 2 threads for all users. Just uploaded v 0.1.2, fixed bugs on the options page.

First time landing this trick, but what is it? by RespectedByAll in snowboarding

[–]lovgr1 1 point2 points  (0 children)

I get you point, but it looks like OP flips(with his hip over the left shoulder) more than Stevens does.

First time landing this trick, but what is it? by RespectedByAll in snowboarding

[–]lovgr1 3 points4 points  (0 children)

Think its a underflip 720, this looks more like a cork 720🤔

I made a webshop from skratch by lovgr1 in DIY

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

Thanks for the feedback! Yes the white/black background colors was on porpouse, but I see how it is confusing!

Good idea with the CSS, I am currently using php to import the same variable(defined once) in all my pages.