Explore >> Select a destination


You are here

bazel.build
| | ohadravid.github.io
6.5 parsecs away

Travel
| | How can you build Python code with Bazel? Why would you even want to do that? This is the topic of a lightning talk I gave at PyCon IL this year. Below are the ...
| | www.jeremykun.com
4.3 parsecs away

Travel
| | Back in May of 2022 I transferred teams at Google to work on Fully Homomorphic Encryption (newsletter announcement). Since then I've been working on a variety of projects in the space, including being the primary maintainer on github.com/google/fully-homomorphic-encryption, which is an open source FHE compiler for C++. This article will be an introduction to how to use it to compile programs to FHE, as well as a quick overview of its internals.
| | blog.bazel.build
1.4 parsecs away

Travel
| |
| | www.integralist.co.uk
23.5 parsecs away

Travel
| The following code doesn't do what you might expect: package main import "fmt" func main() { var i *impl fmt.Println("i == nil:", i == nil) what(i) } type impl struct{} func (i *impl) do() {} func what(i interface{ do() }) { fmt.Println("i == nil:", i == nil) } If you expected the what function to print i == nil: true, then keep reading... Typed Nils The behavior observed is due to the way interfaces and nil values interact in Go.