Proxmox will need to run between version : proxmox-kernel-6.5.13-3-pve ~ 6.8.12-1-pve
Things are currently working using proxmox-kernel-6.8.12-1-pve.
- Clone this repo : https://github.com/strongtz/i915-sriov-dkms
Proxmox will need to run between version : proxmox-kernel-6.5.13-3-pve ~ 6.8.12-1-pve
Things are currently working using proxmox-kernel-6.8.12-1-pve.
Chaining promises in ClojureScript is best done using the thread-first macro, ->. Here's an example of using the fetch API:
(-> (js/fetch "/data")
(.then (fn [r]
(when-not (.-ok r)
(throw (js/Error. "Could not fetch /data")))
(.json r)))| [ | |
| [ | |
| { | |
| "x": 3.5, | |
| "c": "#f7f2ea" | |
| }, | |
| "#\n3", | |
| { | |
| "x": 10.5 | |
| }, |
| import unittest | |
| import asyncio | |
| import inspect | |
| def async_test(f): | |
| def wrapper(*args, **kwargs): | |
| if inspect.iscoroutinefunction(f): | |
| future = f(*args, **kwargs) | |
| else: |
| // ----------------------------------------------------------------------------------------------------------------------- | |
| // // Surfingkeys: https://github.com/brookhong/Surfingkeys#properties-list | |
| // // Dracula Theme: https://github.com/dracula/dracula-theme#color-palette | |
| // ----------------------------------------------------------------------------------------------------------------------- | |
| // ----------------------------------------------------------------------------------------------------------------------- | |
| // Fonts | |
| // ----------------------------------------------------------------------------------------------------------------------- | |
| const SK_FONT = '"JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace'; |
| #cVim-link-container, .cVim-link-hint, #cVim-command-bar, #cVim-command-bar-mode, #cVim-command-bar-input, #cVim-command-bar-search-results, .cVim-completion-item, .cVim-completion-item .cVim-full, .cVim-completion-item .cVim-left, .cVim-completion-item .cVim-right, #cVim-hud, #cVim-status-bar { | |
| font-family: Helvetica, Helvetica Neue, Neue, sans-serif, Arial; | |
| font-size: 9pt !important; | |
| -webkit-font-smoothing: antialiased !important; | |
| border-radius: 4px!important; | |
| } | |
| #cVim-link-container { | |
| position: absolute; | |
| pointer-events: none; |
| #!/usr/bin/env python | |
| """ | |
| How to use it: | |
| 1. Just `kill -2 PROCESS_ID` or `kill -15 PROCESS_ID`, | |
| The Tornado Web Server Will shutdown after process all the request. | |
| 2. When you run it behind Nginx, it can graceful reboot your production server. | |
| """ | |
| import time |
Requirement: Chromebook, Common Sense, Commandline Ablity, 1 hour of time
Dear developers with a spare Chromebook lets inject a little personalization into your Crosh shell with custom fonts, the solarized theme, and extra secure shell options.
Also, keep in mind that the terms Chrosh, Chrosh Window, and Secure Shell all refer to various versions and extentions built around the ChromeOS terminal. Settings that affect the ChromeOS terminal are global.
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm