Skip to content

Instantly share code, notes, and snippets.

View denysvitali's full-sized avatar

Denys Vitali denysvitali

View GitHub Profile
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - Removed DRI and Gallium3D drivers/packages for chipsets that don't exist in our ARM devices (intel, radeon, VMware svga).
# - disable assembly and rip out VC4 forced NEON for v6/v7
# - remove makedepend on valgrind, -Dvalgrind=false
pkgbase=mesa
pkgname=('libva-mesa-driver' 'mesa-vdpau' 'mesa')
pkgdesc="An open-source implementation of the OpenGL specification"
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd071]
[ 0.000000] Linux version 5.2.0-rc7+ (dvitali@denvit-ws1) (gcc version 9.1.0 (GCC)) #1 SMP Sat Jul 20 09:03:38 CEST 2019
[ 0.000000] Machine model: Google Pixel C
[ 0.000000] cma: Reserved 16 MiB at 0x00000000f5400000
[ 0.000000] On node 0 totalpages: 747008
[ 0.000000] DMA32 zone: 7576 pages used for memmap
[ 0.000000] DMA32 zone: 0 pages reserved
[ 0.000000] DMA32 zone: 484864 pages, LIFO batch:63
[ 0.000000] Normal zone: 4096 pages used for memmap
[ 0.000000] Normal zone: 262144 pages, LIFO batch:63
([A-z0-9]+)\.hasOwnProperty\(([A-z0-9]+)\)
Object.prototype.hasOwnProperty.call($1, $2)
Entry (0) DL:
7C-3A
Entry (1) UL:
7A
Entry (2) UL:
3A
Entry (3) DL:
7C
Entry (4) UL:
7C

Keybase proof

I hereby claim:

  • I am denysvitali on github.
  • I am denvitnanos (https://keybase.io/denvitnanos) on keybase.
  • I have a public key ASCMJvlTjmuCxja7OCL9u-zQpZUg_CAnI8YHmSk4EOUIBwo

To claim this, I am signing this object:

https://flatfox.ch/en/flat/pfandwiesenstrasse-19-8152-opfikon/128995/, 1476 CHF, 100 m², 14 CHF/m² - 10 minutes away https://flatfox.ch/en/flat/8152-opfikon/128993/, 1300 CHF, 16 m², 81 CHF/m² - 27 minutes away https://flatfox.ch/en/flat/hagenholzstrasse-3-8302-kloten/128979/, 552 CHF, 13 m², 42 CHF/m² - 24 minutes away https://flatfox.ch/en/flat/hegger-3-8603-schwerzenbach/128977/, 1580 CHF, 70 m², 22 CHF/m² - 15 minutes away https://flatfox.ch/en/flat/wallisellerstrasse-141-8152-opfikon/128853/, 1610 CHF, 71 m², 22 CHF/m² - 19 minutes away https://flatfox.ch/en/flat/nansenstrasse-8050-zurich/128742/, 1135 CHF, 74 m², 15 CHF/m² - 5 minutes away https://flatfox.ch/en/flat/wallisellerstrasse-172-8152-opfikon/128725/, 1715 CHF, 79 m², 21 CHF/m² - 19 minutes away https://flatfox.ch/en/flat/riedwiesenstrasse-12-8602-wangen/128722/, 1760 CHF, 90 m², 19 CHF/m² - 25 minutes away

import sys
import numpy as np
def clamp_py(my_value, min_value, max_value):
return min(max(my_value, min_value), max_value)
vec3 = [0.0, -1.0, 0.0]
x = round(clamp_py(0.0, -1, 1) * 511.0)
y = round(clamp_py(-1.0, -1, 1) * 511.0)
z = round(clamp_py(0.0, -1, 1) * 511.0)
package main
import (
"github.com/denysvitali/gc_log"
"math"
)
type vec struct {
x float64
y float64
#include <stdio.h>
int main(){
int i = 0;
int a = 23;
int b = 3;
i += a;
i = i << 5;
i += b;