Join us

ContentUpdates and recent posts about Sigstore..
Link
@faun shared a link, 1 year, 1 month ago
FAUN.dev()

OpenAI plans to release a new 'open' AI language model in the coming months

OpenAI's having a change of heart. Picture a reluctant flipper resting on the high-dive, finally plunging into open waters. They're ready to unleash an“open” language model, thanks to pressure from competitors likeDeepSeekandMetawho have been living the open-source dream. CEO Sam Altman has conceded.. read more  

OpenAI plans to release a new 'open' AI language model in the coming months
Link
@faun shared a link, 1 year, 1 month ago
FAUN.dev()

Cloudflare CEO: AI is killing the business model of the web

Google's dominance in search is fading due to AI, leading to a decline in traffic for content creators, threatening the web's sustainability... read more  

Link
@faun shared a link, 1 year, 1 month ago
FAUN.dev()

Foundation Model for Personalized Recommendation

Netflixhas given its recommender system a makeover with a foundation model similar toLLMs. The goal? Turbocharge efficiency and scalability by making member preferences the star of the show. They turned user interactions into tokens, kind of like BPE in NLP, and employedsparse attentionto zero in on.. read more  

Foundation Model for Personalized Recommendation
Link
@faun shared a link, 1 year, 1 month ago
FAUN.dev()

Coding emerges as generative AI’s breakout star

AI coding tools are revolutionizing software development, with many developers already using them for efficiency gains. OpenAI's latest model ranks in the top competitive coders percentile, showing rapid progress in reasoning abilities. AI coding tools are set to support huge context windows, potent.. read more  

Link
@faun shared a link, 1 year, 1 month ago
FAUN.dev()

‘AI is already eating its own’: Prompt engineering is quickly going extinct

AI prompt engineering has vanished as a standalone job, absorbed into general AI roles. New AI roles demand deeper technical expertise and are reshaping the job market quickly... read more  

Link
@faun shared a link, 1 year, 1 month ago
FAUN.dev()

Alibaba’s ‘ZeroSearch’ lets AI learn to google itself — slashing training costs by 88 percent

Alibaba researchers developed ZeroSearch to train large language models (LLMs) to search for information without using real search engines, reducing costs by up to 88%. ZeroSearch outperformed Google in experiments, demonstrating the potential for AI systems to simulate search and reduce reliance on.. read more  

Link
@anjali shared a link, 1 year, 1 month ago
Customer Marketing Manager, Last9

Angular OpenTelemetry Setup and Troubleshooting

Learn how to set up OpenTelemetry in your Angular app and troubleshoot common issues with tracing, instrumentation, and export configuration.

Opentelemetry tracing
Link
@faun shared a link, 1 year, 1 month ago
FAUN.dev()

1.33: Volume Populators Graduate to GA

Kubernetes v1.33unleashesvolume populatorsfor all to enjoy. Custom resources now power data sources. Say goodbye to pesky resource leaks, mishmash configurations, and sleepy metrics. Prepare for a wild ride of flexibility... read more  

Link
@faun shared a link, 1 year, 1 month ago
FAUN.dev()

Anubis and caddy-docker-proxy

CKANfaced a barrage: 60 requests per second, courtesy of some mischief-maker in Brazil. EnterAnubis. With its SHA256 challenge, it cut through the chaos like a hot knife through warm Brazilian pão de queijo. Now, plugging Anubis intocaddy-docker-proxypractically did itself. The proxy auto-configures.. read more  

Link
@faun shared a link, 1 year, 1 month ago
FAUN.dev()

The state of Kubernetes jobs in 2025 Q1

North American Kubernetes salariestook a 6% nosedive, settling at an average$165,288. Meanwhile, Europe enjoyed a tidy 4% uptick. Remote work? Holding steady at68%. No surprise—Pythonremained the darling of coding languages, getting a nod in62%of job posts, whileDockerwasn't far behind, gracing57%of.. read more  

The state of Kubernetes jobs in 2025 Q1
Sigstore is an open source initiative designed to make software artifact signing and verification simple, automatic, and widely accessible. Its primary goal is to improve software supply chain security by enabling developers and organizations to cryptographically prove the origin and integrity of the software they build and distribute.

At its core, sigstore removes many of the traditional barriers associated with code signing. Instead of managing long-lived private keys manually, sigstore supports keyless signing, where identities are issued dynamically using OpenID Connect (OIDC) providers such as GitHub Actions, Google, or Microsoft. This dramatically lowers operational complexity and reduces the risk of key compromise.

The sigstore ecosystem is composed of several key components:

- Cosign: A tool for signing, verifying, and storing signatures for container images and other artifacts. Signatures are stored alongside artifacts in OCI registries, rather than embedded in them.

- Fulcio: A certificate authority that issues short-lived X.509 certificates based on OIDC identities, enabling keyless signing.

- Rekor: A transparency log that records signing events in an append-only, tamper-evident ledger. This provides public auditability and detection of suspicious or malicious signing activity.

Together, these components allow anyone to verify who built an artifact, when it was built, and whether it has been tampered with, using publicly verifiable cryptographic proofs. This aligns closely with modern supply chain security practices such as SLSA (Supply-chain Levels for Software Artifacts).

sigstore is widely adopted in the cloud-native ecosystem and integrates with tools like Kubernetes, container registries, CI/CD pipelines, and package managers. It is commonly used to sign container images, Helm charts, binaries, and SBOMs, and is increasingly becoming a baseline security requirement for production software delivery.

The project is governed by the OpenSSF (Open Source Security Foundation) and supported by major industry players.