Les Partages de Memiks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 18 / 155
Automate OCC Filescan - support - Nextcloud community https://help.nextcloud.com/t/automate-occ-filescan/35282/15
Tue Apr 14 11:03:56 2020 archive.org
QRCode
thumbnail
nextcloud_scripts/nextcloud-file-sync.sh at master · GAS85/nextcloud_scripts https://github.com/GAS85/nextcloud_scripts/blob/master/nextcloud-file-sync.sh
Tue Apr 14 11:02:41 2020 archive.org
QRCode
thumbnail
Quatre-quarts au chocolat : Recette de Quatre-quarts au chocolat - Marmiton https://www.marmiton.org/recettes/recette_quatre-quarts-au-chocolat_15294.aspx
Tue Apr 14 10:49:19 2020 archive.org
QRCode
artetv-dl · PyPI https://pypi.org/project/artetv-dl/
Tue Apr 14 08:45:05 2020 archive.org
QRCode
thumbnail

Download videos from arte.tv

Rename files in linux / bash using mv command without typing the full name two times https://gist.github.com/premek/6e70446cfc913d3c929d7cdbfe896fef
Tue Apr 14 07:10:36 2020 archive.org
QRCode
thumbnail

Put this function to your .bashrc file.

Usage: mv oldfilename

If you call mv without the second parameter it will prompt you to edit the filename on command line.

Original mv is called when it's called with more than one argument.

It's useful when you want to change just a few letters in a long name.

function mv() {

  if [ "$#" -ne 1 ]; then

    command mv "$@"

    return

  fi

  if [ ! -f "$1" ]; then

    command file "$@"

    return

  fi

  read -ei "$1" newfilename

  mv -v "$1" "$newfilename"

}

Note: /index.php/shaare/G432cQ
Sat Apr 11 23:45:53 2020 archive.org
QRCode

[M] Petz0r and other wasp'ers, we can now dfu via pc, instead of android:
"Hi!

Some people may prefer a desktop solution for OTA DFUing micropython.zip. I found that https://github.com/dingari/ota-dfu-python works well for this:
sudo $HOME/ota-dfu-python/dfu.py -z $HOME/wasp-os/micropython.zip -a D6:62:01:XX:XX:XX
You may want to update your docu accordingly.

BR, piner4711

PS: Great work BTW!"

pinetime
Untangling Microservices, or Balancing Complexity in Distributed Systems https://vladikk.com/2020/04/09/untangling-microservices/
Sat Apr 11 08:23:08 2020 archive.org
QRCode
thumbnail

The microservices-honeymoon period is over. Uber are refactoring thousands of microservices into a more manageable solution [1], according to Kelsey Hightower monoliths are the future [2], and even Sam Newman says that microservices should never be the default choice, but rather a last resort [3].

What is going on here? Why so many projects became unmaintainable, despite the microservices’ promise of simplicity and flexibility? Or maybe monoliths are better, after all? In this post, I want to address these questions. You will learn about common design issues that turn microservices into distributed big balls of mud, and of course, and how you can avoid them.

Steam won't start, glXChoose visual failed :: Steam for Linux Valve Games and Steam for Linux Client https://steamcommunity.com/app/221410/discussions/2/1848072002756331460/
Fri Apr 10 09:20:03 2020 archive.org
QRCode
thumbnail

(repost because my other discussion is dead) So I am using Steam on Linux Mint 18.3 Sylvia, and recently I got this error message when steam starts up: "glXChoose visual failed", and it won't start. If I run steam in terminal: Running Steam on linuxmint 18.3 64-bit STEAM_RUNTIME is enabled automatically Pins up-to-date!

[SOLVED] How to setup Hybrid graphics (intel+AMD) on GNOME+wayland / Newbie Corner / Arch Linux Forums https://bbs.archlinux.org/viewtopic.php?id=224362
Fri Apr 10 08:56:33 2020 archive.org
QRCode
Caddy : un serveur http pour faire la course | blog Bearstech https://bearstech.com/societe/blog/caddy-un-serveur-http-pour-faire-la-course/
Fri Apr 10 00:19:18 2020 archive.org
QRCode
thumbnail
Prestataire-hébergement Infogérance Devops performance sécurité
Podman, un moteur de conteneur "deamon less" | K-7.ch https://k-7.ch/podman-un-moteur-de-conteneur-deamon-less.html
Fri Apr 10 00:14:15 2020 archive.org
QRCode
How to install NVIDIA drivers, CUDA and Bumblebee on Arch Linux / BlackArch - Ethical hacking and penetration testing https://miloserdov.org/?p=4181
Thu Apr 9 21:10:00 2020 archive.org
QRCode
The Power of Prolog https://www.metalevel.at/prolog
Thu Apr 9 21:06:29 2020 archive.org
QRCode

Introduction to modern Prolog

Star Trek (2013) - PCGamingWiki PCGW - bugs, fixes, crashes, mods, guides and improvements for every PC game https://www.pcgamingwiki.com/wiki/Star_Trek_(2013)
Thu Apr 9 10:47:52 2020 archive.org
QRCode
Chapter 32. Offloading Graphics Display with RandR 1.4 http://us.download.nvidia.com/XFree86/Linux-x86/375.26/README/randr14.html
Thu Apr 9 10:40:59 2020 archive.org
QRCode

Chapter 32. Offloading Graphics Display with RandR 1.4

Version 1.4 of the X Resize, Rotate, and Reflect Extension (RandR 1.4 for short) adds a way for drivers to work together so that one graphics device can display images rendered by another. This can be used on Optimus-based laptops to display a desktop rendered by an NVIDIA GPU on a screen connected to another graphics device, such as an Intel integrated graphics device or a USB-to-VGA adapter.

System Requirements

X.Org X server version 1.13 or higher.

A Linux kernel, version 3.13 or higher, with CONFIG_DRM enabled.

Version 1.4.0 of the xrandr command-line utility.

Using the NVIDIA Driver as a RandR 1.4 Output Source Provider

To use the NVIDIA driver as an RandR 1.4 output source provider, the X server needs to be configured to use the NVIDIA driver for its primary screen and to use the “modesetting” driver for the other graphics device. This can be achieved by placing the following in /etc/X11/xorg.conf:

Section "ServerLayout"
Identifier "layout"
Screen 0 "nvidia"
Inactive "intel"
EndSection

Section "Device"
Identifier "nvidia"
Driver "nvidia"
BusID ""
EndSection

Section "Screen"
Identifier "nvidia"
Device "nvidia"
Option "AllowEmptyInitialConfiguration"
EndSection

Section "Device"
Identifier "intel"
Driver "modesetting"
EndSection

Section "Screen"
Identifier "intel"
Device "intel"
EndSection

See “What is the format of a PCI Bus ID?” for information on determining the appropriate BusID string for your graphics card.

The X server does not automatically enable displays attached to the non-NVIDIA graphics device in this configuration. To do that, use the xrandr command line tool:

$ xrandr --setprovideroutputsource modesetting NVIDIA-0
$ xrandr --auto

This pair of commands can be added to your X session startup scripts, for example by putting them in $HOME/.xinitrc before running startx.

Use the

$ xrandr --listproviders

command to query the capabilities of the graphics devices. If the system requirements are met and the X server is configured correctly, there should be a provider named NVIDIA-0 with the Source Output capability and one named modesetting with the Sink Output capability. If either provider is missing or doesn't have the expected capability, check your system configuration.

Synchronized RandR 1.4 Outputs

When running against X.Org X server with video driver ABI 23 or higher, synchronization is supported with compatible drivers. At the time of writing, synchronization is compatible with the “modesetting” driver with Intel devices on Linux version 4.5 or newer. If all requirements are met, synchronization will be used automatically.

X.Org X server version 1.19 or newer is required to support synchronization. Without synchronization, displays are prone to “tearing”. See Caveats for details.

If synchronization is being used but is not desired, it can be disabled with:

$ xrandr --output --set "PRIME Synchronization" 0

and re-enabled with:

$ xrandr --output --set "PRIME Synchronization" 1

See Vblank syncing for information on how OpenGL applications can synchronize with sink-provided outputs.

===

What is the format of a PCI Bus ID?

Different tools have different formats for the PCI Bus ID of a PCI device.

The X server's "BusID" X configuration file option interprets the BusID string in the format "bus@domain:device:function" (the "@domain" portion is only needed if the PCI domain is non-zero), in decimal. More specifically,

"%d@%d:%d:%d", bus, domain, device, function

in printf(3) syntax. NVIDIA X driver logging, nvidia-xconfig, and nvidia-settings match the X configuration file BusID convention.

The lspci(8) utility, in contrast, reports the PCI BusID of a PCI device in the format "domain:bus:device.function", printing the values in hexadecimal. More specifically,

"%04x:%02x:%02x.%x", domain, bus, device, function

in printf(3) syntax. The "Bus Location" reported in the information file matches the lspci format. Also, the name of per-GPU directory in /proc/driver/nvidia/gpus is the same as the corresponding GPU's PCI BusID in lspci format.

On systems where both an integrated GPU and a PCI slot are present, setting the "BusID" option to "AXI" selects the integrated GPU. By default, not specifying this option or setting it to an empty string selects a discrete GPU if available, the integrated GPU otherwise.

nvidia dual screen archlinux
Japanese Sweet Potato スイートポテト • Just One Cookbook https://www.justonecookbook.com/japanese-sweet-potato/
Wed Apr 8 15:49:46 2020 archive.org
QRCode
thumbnail
proton-ge-custom/README.md at proton-ge-5 · GloriousEggroll/proton-ge-custom · GitHub https://github.com/GloriousEggroll/proton-ge-custom/blob/proton-ge-5/README.md
Sun Apr 5 16:13:36 2020 archive.org
QRCode

Compatibility tool for Steam Play based on Wine and additional components - GloriousEggroll

Latest Manjaro ARM topics - Manjaro Linux Forum https://forum.manjaro.org/c/manjaro-arm/78
Sun Apr 5 00:15:22 2020 archive.org
QRCode
thumbnail

Manjaro ARM brings the simplicity of Manjaro to common ARM based devices, like the Raspberry Pi 3.

Manjaro ARM Alpha4 for PinePhone and PineTab - Manjaro ARM / Releases - Manjaro Linux Forum https://forum.manjaro.org/t/manjaro-arm-alpha4-for-pinephone-and-pinetab/127684
Sat Apr 4 23:40:46 2020 archive.org
QRCode
thumbnail

Manjaro ARM Alpha4 for PinePhone and PineTab! The Manjaro ARM project is proud to announce the fourth ALPHA release for the PinePhone and the PineTab! This image are running the 5.5 kernel from gitlab.com/pine64-org/linux, which is designed for the PinePhone and PineTab devices. We strongly suggest flashing this image, instead of updating the Alpha3 image. Thanks for @Spikerguy for putting in all this work! Changes since Alpha3: Phonebook app can now save contacts Power button now locks th...

Latest pinephone topics - Manjaro Linux Forum https://forum.manjaro.org/tag/pinephone
Sat Apr 4 15:59:53 2020 archive.org
QRCode
thumbnail

Topics tagged pinephone

page 18 / 155
4769 links, including 1683 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn