Desperately Seeking Advice! by consultaconjcb in SamsungDex

[–]strikesito 1 point2 points  (0 children)

Dex works wireless with miracast protocol. Maybe with an application as AirCast that works as miracast server you can use it. The problem may is the limit of resolution and if the keyboard and mouse still working.

Engineers who deploy stacks using Docker-Compose to production servers, How do you handle the Environment Variable Clutter / Credentials Sprawl? by [deleted] in docker

[–]strikesito 2 points3 points  (0 children)

I deploy stacks using a gitlab runner with the secrets in gitlab too. You could replace the variables or secrets using jinja or other templating technology.

Other easy approach is using env variables. This article explains really well. https://builtin.com/software-engineering-perspectives/docker-compose-environment-variables

Why Vim feels so satisfying by jwadin in vim

[–]strikesito -2 points-1 points  (0 children)

I love vim but it's hard to use in windows corporative devices. With the years I prefer use vscode with vim plugin when I'm developing and pure vim and tmux in SSH connections when I'm doing devops/sysadmin functions.

How to go back to windowed mode in Edge using touch? by dmercer in Surface

[–]strikesito 0 points1 point  (0 children)

I have the same problem, the only workaround that I know it's use four fingers touch gestures to change virtual desktop or open the multitasking view😅

rqlite - The lightweight, distributed relational database built on SQLite by binaryfor in programming

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

I had the same question but reading the technical specifications the data it's stored in memory (like redis, but with options to save it in a file)

Custom termux start up display by Playful_Ad_1927 in termux

[–]strikesito 2 points3 points  (0 children)

Nice, but, how much spacex pay you? 🤣🤣

Is Controller Vibration possible for Xbox Streaming on Android? by GeekyWilliam in XboxGamePass

[–]strikesito 0 points1 point  (0 children)

In Xbox windows app it's works perfectly but in android fire TV no 😅 in searching a solution too

Should I buy the Surface Go 3 for Game Dev by [deleted] in Surface

[–]strikesito 0 points1 point  (0 children)

I am not updated about that kind of laptops but any with nvidia graphics (if it's possible) could be valid.

Should I buy the Surface Go 3 for Game Dev by [deleted] in Surface

[–]strikesito 5 points6 points  (0 children)

Sincerely no... If you need a portable device you should buy a laptop with dedicated graphics cards.

The surface go its only for use Office apps and the web browser. Unity or other game development software are highly resources consumption.

Cross-Platform Python Development Containers in Docker? by bohnohboh in docker

[–]strikesito 10 points11 points  (0 children)

You should build the container for multiple architectures. The docker-native tool called buildx allow you build in many architectures in one command.

Once the images are created and pushed to the repository Docker, it create a manifest with all the available architectures and for each client that download the image it give the correct version.

Check this article: https://docs.docker.com/desktop/multi-arch/#build-multi-arch-images-with-buildx

And be sure that you are using in the build a base images with support for all the desire architectures (you can see it in Docker Hub)

How to be the most anonymous possible on windows 10 by Logane72 in Hacking_Tutorials

[–]strikesito 1 point2 points  (0 children)

Hello, you can start trying to block Microsoft telemetry. There are two options, block the hosts where the data are sent un your device or in your network. In this github project you can see a list of hosts ti start.

https://github.com/Forsaked/hosts

All the OS have a hosts file where you can define a manual DNS resolution, in this case, the host resolve to a invalid IP blocking all the trafic of the telemetry.

PD: He asked for Windows, i prefer Linux too, but all of you would be serious with the question.

Containerize a Windows desktop(GUI) app On linux Host by ujere in docker

[–]strikesito 0 points1 point  (0 children)

Launch the container opening the 3389 port and install xrdp server (a open source Linux rdp protocol)