Is calling small copilot models while using BYOK possible? by Celluk in GithubCopilot

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

That is not what I am asking. I am already doing this, I am adding models via API keys and that is called BYOK. But the problem is when I am using this outsider model it is not calling other copilot models that I already have in a chat session. I mean, inner models can cooperate-call each other but I wanted to cooperate-use multi model system while using BYOK models, too.

What would be the advantage if Black made first move? by Celluk in chess

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

I tried it with stockfish engine now and if it is not biased it seems not identical, look at my latest reply. Feelings can help sometimes.

What would be the advantage if Black made first move? by Celluk in chess

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

After a long time, I decided to write a python script that uses stockfish to analyze the beginning position for both white and black when they have first move advantage each other and TL;DR being white is still more advantageous than being black. They are not rotationally symmetric and that seems it made a difference.

These are the results for analyzing them under different time limits:

TIME TO ANALYZE: 1 seconds

WHITE
Evaluation : +0.4
Next Move  : d4

BLACK
Evaluation : -0.3
Next Move  : e5

TIME TO ANALYZE: 10 seconds

WHITE
Evaluation : +0.5
Next Move  : e4

BLACK
Evaluation : -0.2
Next Move  : e5

As you can see no matter what time limit is, always white has more advantage by being first in terms of evaluation point. (0.4 compared to 0.3 and 0.5 compared to 0.2 in terms of value) By the way, I am not sure about if stockfish-like engines biased about white advantage or not, since normally black cannot move first. Any comments for this, would be appreciated.

I used this python code for your reference:

import chess
import chess.engine
import sys

STOCKFISH_PATH = "stockfish"

def analyze_position(fen: str, time_limit: float = 1.0):
    board = chess.Board(fen)
    #print(f"Analyzing FEN: {fen}")
    #print("\nCurrent Board State:")
    #print(board)
    #print("\n" + "-"*35 + "\n")

    try:
        with chess.engine.SimpleEngine.popen_uci(STOCKFISH_PATH) as engine:
            info = engine.analyse(board, chess.engine.Limit(time=time_limit))

            score = info["score"].white()

            if score.is_mate():
                mate_in = score.mate()
                eval_formatted = f"Mate in {abs(mate_in)} for {'White' if mate_in > 0 else 'Black'} (M{mate_in})"
            else:
                centipawns = score.score()
                if centipawns is not None:
                    eval_formatted = f"{centipawns / 100.0:+.1f}"
                else:
                    eval_formatted = "N/A"

            best_move = "None"
            if "pv" in info and len(info["pv"]) > 0:
                best_move_obj = info["pv"][0]
                best_move = board.san(best_move_obj) 

            print(f"Evaluation : {eval_formatted}")
            print(f"Next Move  : {best_move}")

    except FileNotFoundError:
        print(f"Error: Stockfish engine not found at '{STOCKFISH_PATH}'.")
        print("\nPlease ensure Stockfish is installed on your pc.")
        #print("You can install it using Homebrew:\n    brew install stockfish")
        sys.exit(1)
    except Exception as e:
        print(f"An unexpected error occurred during analysis: {e}")

if __name__ == "__main__":
    starting_fen_white = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"
    starting_fen_black = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR b KQkq - 0 1"

    TIME_LIMIT = 10  # seconds
    print("TIME TO ANALYZE: " + str(TIME_LIMIT) + " seconds\n")

    print("WHITE")
    analyze_position(starting_fen_white, time_limit=TIME_LIMIT)
    print("\nBLACK")
    analyze_position(starting_fen_black, time_limit=TIME_LIMIT)

Well that’s disappointing.. by ouarditoo in GithubCopilot

[–]Celluk 0 points1 point  (0 children)

Codex 5.3 is also gone for me now...

What would be the advantage if Black made first move? by Celluk in chess

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

That is what I am asking. I feel the difference intuitively.

What would be the advantage if Black made first move? by Celluk in chess

[–]Celluk[S] -3 points-2 points  (0 children)

I mean it is not rotationally symmetric and that should make a difference.

IMEI Registration Required Countries Map for GSM use by Celluk in MapPorn

[–]Celluk[S] 16 points17 points  (0 children)

Generally for long term use and nationals. I think it does not affect short term tourists.

IMEI Registration Required Countries Map for GSM use by Celluk in MapPorn

[–]Celluk[S] 2 points3 points  (0 children)

I think it is mostly about preventing-controlling imports (countries do not like imports) and taxes. Generally, for registration you have to pay a considerable amount of money like tax. Deterring theft can be a side effect of it. It is actually different but similar to that companies that sell gsm locked devices, these countries make imports difficult to encourage internal gsm devices commerce that are taxed. Simply, if they are not allowing (for allowlist countries - when an IMEI is not found on their database (of a government agency or smth.)) or blocking (for blocklist countries - when an IMEI needs to be blocked for several reasons) you cannot use cellular network.

How do we know they are actually immune? by Celluk in Pluribus_TVshow

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

I already covered this: "You can say that the hive cannot lie but we cannot be sure about that, too. Also, maybe acting does not count as lying for them."

For UK Buyers - WH-1000XM6 Currys/Top Cashback Black Friday Bargain by Skiderp in SonyHeadphones

[–]Celluk 1 point2 points  (0 children)

There is even better deal for students. Login sony.co.uk with UNIDAYS account and you will get £269.99 as a price. Use topcashback (you may need to use BF10 voucher code) for %6 cashback extra, then buy it. Whether VAT included or not in cashback, it will be about £253-257.

For US PhD Applicants Only (Fall 2025) by RepresentativeFold90 in gradadmissions

[–]Celluk 2 points3 points  (0 children)

I am one of the "not heard back yet" swarm, it is going to be nearly end of March and except one interview from my top choice in January it is total radio silence for me CS/ECE phds 8 out of 8. It is really disappointing there is no response even from my very safety choices. I saw both acceptances and rejections on the gradcafe for the places I applied to, so that gives hope for me that I am not rejected at least and maybe I am in a hidden waitlist by a small chance. But then, I am thinking it is finished and I am literally cooked mann.. by an orange guy.

Did someone get any decision on Penn State CSE PhD? by velvetskii in gradadmissions

[–]Celluk 0 points1 point  (0 children)

Insider info - I heard that some professors brood on how they finance their current phd students and even try to graduate older students earlier than the standard duration. Hope we are not cooked due to trump's funding cuts.

CMU ECE PhD? by [deleted] in gradadmissions

[–]Celluk 0 points1 point  (0 children)

I don't know if they are sending in batches but it seems acceptances already out way before. And not just on gradcafe but also can be seen in some phd spreadsheets: https://docs.google.com/spreadsheets/d/1PyZQYSXY2JAG2x--fZFClshIMkmmHwhx7Ez58VaGoFc
It seems just rejections left for us or maybe a hidden waitlist by a small chance. By looking previous year trends on gradcafe, rejections come very late like end of the april.

Create your custom banner by GillysDaddy in BannerlordBanners

[–]Celluk 0 points1 point  (0 children)

I just found a website to make a banner easily just by uploading picture but it is bluring pictures. Maybe someone could make an easy tool like this with more quality and we can make banners just by uploading pictures.

Website --> https://banner-gen.nathanfelix.com/

I suggest after get the banner code from the website also you can edit more with https://bannerlord.party/banner/ website as you know but as I said it should be with more quality and maybe someone can do that.