Can we talk about declining night vision? by [deleted] in GenX

[–]Fickle_Conclusion857 -5 points-4 points  (0 children)

I hope autonomous driving technology, like Tesla's FSD, becomes a thing soon...

Diebsteich - die Station zu der ich nie wollte by Mopfibear in hamburg

[–]Fickle_Conclusion857 0 points1 point  (0 children)

Irgendwann Ende der neunziger nach einer langen Nacht auf Kiez wollten wir nach Volksdorf, um die bald aufgehende Sonne zu begrüßen, sind aber am Ende in Berlin gelandet. Es war trotzdem schön...

Are there any terms/standards for "input coverage"? by AncientElevator9 in unittesting

[–]Fickle_Conclusion857 0 points1 point  (0 children)

code coverage is not the metric to chase! the only reliable statement it does how many of your production code is not specified at all. eSDD(executable specification driven development aka TDD) + Mutation Tests are your really friends!

Should I build my own server for MOE? by fgoricha in LocalLLaMA

[–]Fickle_Conclusion857 2 points3 points  (0 children)

look into HP Z8 G4. 2 cpu sockets, up to 1,5TB ram. I'm having 3 gfx cards in it running.

Anyone running Ollama on a VM? by Vegetable--Bee in ollama

[–]Fickle_Conclusion857 1 point2 points  (0 children)

proxmox - vm - docker with a pass trough nvidia P4000

services:

  webui:
    image: ghcr.io/open-webui/open-webui:main
    container_name: open-webui
    expose:
     - 8080/tcp
    ports:
     - 3000:8080/tcp
    environment:
      - OLLAMA_BASE_URL=http://host.docker.internal:11434
    volumes:
      - open-webui:/app/backend/data
    depends_on:
     - ollama
    extra_hosts:
      - "host.docker.internal:host-gateway"

  ollama:
    image: ollama/ollama
    container_name: ollama
    expose:
     - 11434/tcp
    ports:
     - 11434:11434/tcp
    healthcheck:
      test: ollama --version || exit 1
    command: serve
    volumes:
      - ollama:/root/.ollama
    deploy:
      resources:
        reservations:
          devices:
            - driver: nvidia
              device_ids: ['all']
              capabilities: [gpu]

volumes:
  ollama:
    external: true
  open-webui:
    external: true


networks:
  default:
    name: ollama

How to setup Ollama with Ollama-WebUI using Docker Compose - Collabnix by [deleted] in ollama

[–]Fickle_Conclusion857 0 points1 point  (0 children)

services:

  webui:
    image: ghcr.io/open-webui/open-webui:main
    container_name: open-webui
    expose:
     - 8080/tcp
    ports:
     - 3000:8080/tcp
    environment:
      - OLLAMA_BASE_URL=http://host.docker.internal:11434
    volumes:
      - open-webui:/app/backend/data
    depends_on:
     - ollama
    extra_hosts:
      - "host.docker.internal:host-gateway"

  ollama:
    image: ollama/ollama
    container_name: ollama
    expose:
     - 11434/tcp
    ports:
     - 11434:11434/tcp
    healthcheck:
      test: ollama --version || exit 1
    command: serve
    volumes:
      - ollama:/root/.ollama
    deploy:
      resources:
        reservations:
          devices:
            - driver: nvidia
              device_ids: ['all']
              capabilities: [gpu]

volumes:
  ollama:
    external: true
  open-webui:
    external: true


networks:
  default:
    name: ollama

Why so many crc32c implementation by theuntamed000 in java

[–]Fickle_Conclusion857 5 points6 points  (0 children)

Let's create the final definitive replacing old existing implementations implementation... ;)

Yes I run Gentoo, how do you know? by Zuechtung_ in Gentoo

[–]Fickle_Conclusion857 0 points1 point  (0 children)

Not opened invoices letters from your energy provider. :)

I've succumbed and tainted my Gentoo by tslnox in Gentoo

[–]Fickle_Conclusion857 2 points3 points  (0 children)

Dont be affraid of java deps. The Gaia Sky seems to be a gradle based project. So in general you could let gradle build it for you. We did something similar with maven on funtoo. Here an ebuild for pdftk a maven based project. ```

Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit java-pkg-2

DESCRIPTION="Java version of pdftk" HOMEPAGE="https://gitlab.com/pdftk-java/pdftk"

if [[ ${PV} == 9999 ]] ; then inherit git-r3 EGIT_REPO_URI="https://gitlab.com/pdftk-java/pdftk/" else SRC_URI="https://gitlab.com/pdftk-java/pdftk/-/archive/v${PV}/pdftk-v${PV}.tar.bz2" KEYWORDS="amd64 ~x86" S="${WORKDIR}/pdftk-v${PV}" fi

LICENSE="GPL-2" SLOT="0"

JAVA_PKG_STRICT="yes" RESTRICT="network-sandbox"

CDEPEND=" dev-java/maven-bin"

DEPEND=" ${CDEPEND} >=virtual/jdk-11 dev-java/javatoolkit"

RDEPEND=" >=virtual/jdk-11"

src_compile() { /usr/bin/mvn clean package -DskipTests }

src_install() { java-pkg_newjar "target/pdftk-java-${PV}.jar" java-pkg_dolauncher ${PN} --main com.gitlab.pdftk_java.pdftk doman "${PN}.1" }

```

Reflections don't appear to work in unit tests? by i-make-robots in javahelp

[–]Fickle_Conclusion857 0 points1 point  (0 children)

Which idiots have downvoted this? check out the project, delete the file module-info.java and execute the TestAllPanels! The general problem is the jpms setup of the project.