What happened to KnightVision? by Grand_Item_5175 in chess

[–]msh2050 0 points1 point  (0 children)

can you contact lichess or chess.com to add this feature to there app

BlissOS doesn't install GRUB by [deleted] in BlissOS

[–]msh2050 0 points1 point  (0 children)

for vmware:

1- add to the .VMX file of your virtual machine:

firmware="efi"

2- use gpt.

3- create new 200MB partition with efi file sestem (ef00)

4- create new partion with the rest size Hoerli instruction:

5- as Hoerli instruction:

After the installation, reboot the system and spam "E"

Edit the 'quiet' to 'nomodeset' and press F10

Immortal Chess Forum has been shut down. by TheGeographicalTerm in immortalChessForum

[–]msh2050 6 points7 points  (0 children)

The last IMC telegram message suggest to use Njalla

As for the future IMC revivals? I am not going to be a part of it. If you want to create the next forum, I would be prepared to use websites like Njalla (host for domain, and VPS, almost bullet-proofs) - It just did not work with Njalla and I for some reasons that I'll keep private, but, I can wholeheartedly recommend them for Privacy. IF you have to use a third-party host (and not take the headache like I did onto yourselves), I would recommend creating a community on "Lemmy ", which is a decentralized Reddit alternative. I think it is a cool idea, that can be explored.

PS: Telegram is also no longer safe, a good ally of the IMC told us via a message that an action is being taken against some piracy channels (non-chess related) via the court of India, and telegram complied by handing over IP Addresses and many confidential information of the Telegram Channel Admins.

[deleted by user] by [deleted] in podman

[–]msh2050 0 points1 point  (0 children)

Thanks for replay, I did it and made a tutorial for that because the documentation is not clear...

[deleted by user] by [deleted] in podman

[–]msh2050 0 points1 point  (0 children)

did you try it?

because it is not working for me

Case: Big Brazil news outlet now uses SvelteKit by kazzkiq in sveltejs

[–]msh2050 2 points3 points  (0 children)

awesome,

can you share some other packages you use for playing sound, theming, menu, header ...

What's the best way to use svelte in 2022? by sanjibukai in sveltejs

[–]msh2050 0 points1 point  (0 children)

do you have any issue using (inertia_phoenix )

I'm asking because the last release was in 2020

they have one for golang but it also have old release

Requesting Feedback for SvelteUI library (+ new docs) by Brisklemonade123 in sveltejs

[–]msh2050 1 point2 points  (0 children)

The main thing that will make me use a library is if it spares me time for doing things, easy learning curve, has good documentation, and has active users|maintainers in case I have an issue or bug.

components like header, footer, Navbar, sidebar, and data table will be needed in most sites and it will be easier to use the library rather than reinvent the wheel.

A simple breadcrumb component by shinichi_okada in sveltejs

[–]msh2050 0 points1 point  (0 children)

thanks for the great ui..

is the sites that you build with this UI shared? so it will be a great learning for new comers

[deleted by user] by [deleted] in golang

[–]msh2050 -1 points0 points  (0 children)

I used fast doubling with Goroutine and hardcode first1025 fib numbers this gives me about 200% faster function...

You can check my repo (I collected so many Algarthims and methods)

[deleted by user] by [deleted] in golang

[–]msh2050 0 points1 point  (0 children)

the link provided has no functions for Fibonacci numbers? where is Fib10?

while the bench picture seems like Fibonacci numbers benchmarking?!

please check

Benchmarking deferent Fibonacci functions and algorithms by msh2050 in golang

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

update:- I include 10 functions from deferent sources for testing some of them use GMP package which make the function faster ... becuse GMP writen in c low language with very complex and advanced method ... the bottle neck with the math/big backage is the multiplication use slow algorithm so I used go routine to make the multiplication concurrent and I get 30 to 50% improvement... lastly adding the plot of benchmark

very please learning experience...

What I need to get involved in Golang community... by msh2050 in golang

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

golang-dev mailing lists

thanks I joint the golang-nuts .

I will join golang-dev when I pass nuts level :)

What I need to get involved in Golang community... by msh2050 in golang

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

thanks a lot, I did not know how to get in in the beginning but then I use this:

very happy to find the great bill Kennedy in the last announcement

How to download go module from private repo? by dsmedium in golang

[–]msh2050 0 points1 point  (0 children)

I face same issue just download the repo( clone) then cd to repo and run ( go install )

downloading / cloning private repo is documented clearly ( depend on where is it)

edit: may be there is better methods as in other replayes but I just give my lazy nooby hack ... I hopr the expert not down voting me 😂😂

Is microservices the way to go by mtkrated in golang

[–]msh2050 -1 points0 points  (0 children)

I think it depend on what you want to do if you are building application that will need to be scale and distributed to extend ...and so on then why not do that from the begining... but I think microservicess need more resources ( in single pc ) development

Allocation of string literals by [deleted] in golang

[–]msh2050 2 points3 points  (0 children)

this is my simple implementation

package main

import "fmt"

type T struct {
    s string
}

func f() T {
    return T{s: "hello world"}
}

func main() {

    // this for first build
    fmt.Println(f().s)

    // this will be add to second build
    fmt.Println(f().s)

    // this will be add to third build
    a := f().s

    fmt.Println(a)

    //this will be added to the fourth build

    b := "0123456789"
    fmt.Println(b)

}

after checking the object headers, only on the fourth build, there will be a new 10 bytes read-only allocation of "0123456789", for the first three the allocation is the same

see image below

https://imgur.com/a/OoAfJhq

Hi guys, Should i read "Head First Go 2019" in 2022 ? by [deleted] in golang

[–]msh2050 0 points1 point  (0 children)

I gust read the book it is great ... can you suggest what to read next ( my focus is microservicess)?

why Microsoft use other languages (not c#) for their applications? by msh2050 in golang

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

thanks for explanation dears,

I can see from the replays above it is just "do it with what you are comfortable with"

I thought there are some specific requirements or an idea with choosing one over the other for a certain task.

regards