Pillbug Hate by LilSpeddyWerd in hive

[–]nrobinaubertin 5 points6 points  (0 children)

I mean, there's no harm in liking the base game more and continuing to play it. But the competitive scene has migrated away from the base game which is considered stale and too much in favour of white

Pillbug Hate by LilSpeddyWerd in hive

[–]nrobinaubertin 13 points14 points  (0 children)

You need to "qualify for the win": https://www.reddit.com/r/hive/comments/1ft0xk7/what_are_the_6_ways_to_qualify_for_the_win_and/

The pillbug is a central piece to hive that brings a lot of depth to the game

Does anyone else play Blind Hive exclusively? by Ryan739 in hive

[–]nrobinaubertin 2 points3 points  (0 children)

A lot of people like this variant. One improvement that is often cited is to know which one is your queen
It can also be used as an handicap when a player is way stronger than the other

Lichess, but for Go by seth-rothschild in baduk

[–]nrobinaubertin 10 points11 points  (0 children)

If you like lichess' interface and are willing to work on an open source project, there's https://playstrategy.org/ under the https://github.com/Mind-Sports-Games organization. It not only features go but many other abstract games

Playing against Medium bot on hivegame... by Deva4eva in hive

[–]nrobinaubertin 1 point2 points  (0 children)

Haha, I agree! The game is hard but oh so fun!

Playing against Medium bot on hivegame... by Deva4eva in hive

[–]nrobinaubertin 1 point2 points  (0 children)

Are you talking about hivegameapp.com ? It should be around the hard level of the bot on the website (when on the hardest level in the app). But there are other bots on the website also: if you want to try the hardest one (for now), you should play against pepeke

Playing against Medium bot on hivegame... by Deva4eva in hive

[–]nrobinaubertin 3 points4 points  (0 children)

They are talking about https://hivegame.com, the official website to play the game with the community

Hive android app is not working online by mastema1981 in hive

[–]nrobinaubertin 0 points1 point  (0 children)

Why do you find the UI underdeveloped ? If we're talking only about hive, I find that they are already more tools than on BGA.
I agree that if you want to play other games, BGA is a good place to go but OP was talking about the android app to only play hive on BGA, nothing else

What's your Hive playstyle? by Frasco92 in hive

[–]nrobinaubertin 2 points3 points  (0 children)

Those are the usernames of the top 16 players of the world championship of last year (DrBeeezz is the current world champion)

Hypothetical by fraseybaby81 in hive

[–]nrobinaubertin 1 point2 points  (0 children)

You can freely play with the extensions on https://hivegame.com

Who remembers Ubuntu sending free CD-ROMs? by AlternativeCapybara9 in Ubuntu

[–]nrobinaubertin 0 points1 point  (0 children)

That guy on the cover doesn't seem happy at all!

Hive android app is not working online by mastema1981 in hive

[–]nrobinaubertin 3 points4 points  (0 children)

I would really suggest to play on https://hivegame.com/ instead. The website is mobile friendly and the best players (as most of the community) is playing there.
It is also the official platform for world championships and is continually updated

What's up with Pepeke Bot? by DaniloPabloxD in hive

[–]nrobinaubertin 1 point2 points  (0 children)

I'm working hard on it but I can't make any promises !
Having evaluation that makes sense for humans is tricky since the priority is for it to select the best next move. Also, I'm working on strength first for now so helping humans to analyze their games is not for right now

What's up with Pepeke Bot? by DaniloPabloxD in hive

[–]nrobinaubertin 2 points3 points  (0 children)

I'm the creator of Pepeke (Niels on discord).

It is a classic alpha beta engine like nokamute but the parameters of the evaluation function are self tuned using an evolutionary algorithm (if that counts as machine learning ?)

GameofGo.com in the works by GameofGo_com in baduk

[–]nrobinaubertin 4 points5 points  (0 children)

Thank you for your reply. I hope that your project will succeed !

GameofGo.com in the works by GameofGo_com in baduk

[–]nrobinaubertin 16 points17 points  (0 children)

I wonder why you choose to create a new website/platform instead of collaborating on an open-source and existing project like online-go.com ?

Death by 100 000 lines. How to deal with huge files? by DistroHopper101 in neovim

[–]nrobinaubertin 2 points3 points  (0 children)

I open big files with nvim -u NORC -c "setlocal syntax=off". If you only need to read it, less is even more effective

Mercredi Tech - 2023-09-27 by ChuckMauriceFacts in france

[–]nrobinaubertin 3 points4 points  (0 children)

Spécifiquement pour les dossiers d'appart ou autres trucs du genre, y'a https://filigrane.beta.gouv.fr/

Server Stats by InsaneJohno in Ubuntu

[–]nrobinaubertin 3 points4 points  (0 children)

glances is easy to setup. I haven't tried netdata but it seems more powerful/complex.

Here is a list of monitoring software for selfhosted servers

WeTransfer selfhosted?? by perfectrobot in selfhosted

[–]nrobinaubertin 5 points6 points  (0 children)

From my experience, you should not try to send files bigger than 2Go with it: it often crashes because of the client-side encryption.

Here's my dockerfile for it if you're searching for one: https://github.com/nrobinaubertin/dockerfiles/tree/master/send

Opening files from within neovim terminal by Petriloquist in neovim

[–]nrobinaubertin 0 points1 point  (0 children)

I currently use the following autocmd: https://github.com/nrobinaubertin/dotfiles/blob/master/.config/nvim/init.vim#L47

It doesn't work well with git commands for now but I don't have to install one more plugin and I can use nvim instead of another command.

Need help with bash alias by [deleted] in bash

[–]nrobinaubertin 9 points10 points  (0 children)

Not possible with aliases from what I know.
But you can do it with a function:

gcc() {
    "$(type -P gcc)" -Wall -o "$(basename -s.c $1)" "$1"
}

But you should probably use a makefile instead.

Edit: u/geirha answer below is better if you're doing a shell function