https://vxtwitter.com/ggerganov/status/1883888097185927311
A PR to prove DeepSeek-R1 is good at optimizing code.
Pull Request
A PR to prove DeepSeek-R1 is good at optimizing code.
Pull Request
Do It by Code
DeepSeek-R1 A competitor to gpt-o1 with MIT license https://github.com/deepseek-ai/DeepSeek-R1 #llm
DeepSeek published a new product:
Janus-Series: Unified Multimodal Understanding and Generation Models
capable of generating images; can do image -> text and text -> image
This new model beats OpenAI's DALL-E 3 and Stable Diffusion across GenEval and DPG-Bench benchmarks.
https://github.com/deepseek-ai/Janus
https://huggingface.co/deepseek-ai/Janus-Pro-7B
Janus-Series: Unified Multimodal Understanding and Generation Models
capable of generating images; can do image -> text and text -> image
This new model beats OpenAI's DALL-E 3 and Stable Diffusion across GenEval and DPG-Bench benchmarks.
https://github.com/deepseek-ai/Janus
https://huggingface.co/deepseek-ai/Janus-Pro-7B
The Forbidden Way Of Making a Game
YouTube video
ShaderEditor 3D game (the source code)
ShaderEditor Dithering shader
Shader Editor app (on google play)
YouTube video
ShaderEditor 3D game (the source code)
ShaderEditor Dithering shader
Shader Editor app (on google play)
Show HN: Perforator – cluster-wide profiling tool for large data centers
Article, Comments
#cpp #go #python
Article, Comments
#cpp #go #python
GitHub
GitHub - yandex/perforator: Perforator is a cluster-wide continuous profiling tool designed for large data centers
Perforator is a cluster-wide continuous profiling tool designed for large data centers - yandex/perforator
Discord Messenger is a free Discord-compatible messaging client that works on almost 30 years of Windows.
Works on windows 98 now, and win 95 with some patches to the OS
http://github.com/DiscordMessenger/dm
#cpp #discord
Works on windows 98 now, and win 95 with some patches to the OS
http://github.com/DiscordMessenger/dm
#cpp #discord
GitHub
GitHub - DiscordMessenger/dm: Discord Messenger is a free Discord-compatible messaging client that works on 30 years of Windows…
Discord Messenger is a free Discord-compatible messaging client that works on 30 years of Windows versions. - DiscordMessenger/dm
Clippy by FireCube (Not by Microsoft) brings back the infamous Clippit into your desktop powered by the OpenAI GPT 3.5 model (OpenAI key required as of this version).
Clippy can be pinned to the screen for quick access to chat or just be left for nostalgia.
https://github.com/FireCubeStudios/Clippy
#csharp #windows
A music programming language for musicians, written in Go.
https://github.com/alda-lang/alda
chunk online IDE: https://chuck.cs.princeton.edu/ide/ (this is another project)
run alda code on your browser:
https://severak.github.io/alda-js/
#go
https://github.com/alda-lang/alda
chunk online IDE: https://chuck.cs.princeton.edu/ide/ (this is another project)
run alda code on your browser:
https://severak.github.io/alda-js/
#go
GitHub
GitHub - alda-lang/alda: A music programming language for musicians. :notes:
A music programming language for musicians. :notes: - alda-lang/alda
Course to get into Large Language Models (LLMs) with roadmaps and Colab notebooks.
https://github.com/mlabonne/llm-course
#colab #llm
https://github.com/mlabonne/llm-course
#colab #llm
GitHub
GitHub - mlabonne/llm-course: Course to get into Large Language Models (LLMs) with roadmaps and Colab notebooks.
Course to get into Large Language Models (LLMs) with roadmaps and Colab notebooks. - mlabonne/llm-course
Components Library for Quickly Building LLM Chat Interfaces.
https://github.com/ant-design/pro-chat
#ui #react
https://github.com/ant-design/pro-chat
#ui #react
GitHub
GitHub - ant-design/pro-chat: 🤖 Components Library for Quickly Building LLM Chat Interfaces.
🤖 Components Library for Quickly Building LLM Chat Interfaces. - ant-design/pro-chat
Telegram to smart tv streamer
https://github.com/andrew-ld/smart-tv-telegram
#python #pyrogram #smart_tv
https://github.com/andrew-ld/smart-tv-telegram
#python #pyrogram #smart_tv
GitHub
GitHub - andrew-ld/smart-tv-telegram: stream movies from telegram to smart tv
stream movies from telegram to smart tv. Contribute to andrew-ld/smart-tv-telegram development by creating an account on GitHub.
what I could get done in Go in less than 2 hours, is taking me longer than 4 hours just to find proper libraries to do it in Cuda
Reverse Engineering: Decompiling Binary Code with Large Language Models
https://github.com/albertan017/LLM4Decompile
https://github.com/albertan017/LLM4Decompile
GitHub
GitHub - albertan017/LLM4Decompile: Reverse Engineering: Decompiling Binary Code with Large Language Models
Reverse Engineering: Decompiling Binary Code with Large Language Models - albertan017/LLM4Decompile
Fixed size 256-bit math library for Golang
This is a library specialized at replacing the big.Int library for math based on 256-bit types, used by both go-ethereum and erigon.
https://github.com/holiman/uint256
#go
This is a library specialized at replacing the big.Int library for math based on 256-bit types, used by both go-ethereum and erigon.
https://github.com/holiman/uint256
#go
The leptos web framework
Leptos is a full-stack, isomorphic Rust web framework leveraging fine-grained reactivity to build declarative user interfaces.
- GitHub: leptos-rs/leptos
- Picture's source
- Examples
- API Docs
#rust
Leptos is a full-stack, isomorphic Rust web framework leveraging fine-grained reactivity to build declarative user interfaces.
- Full-stack: Leptos can be used to build apps that run in the browser (client-side rendering), on the server (server-side rendering), or by rendering HTML on the server and then adding interactivity in the browser (server-side rendering with hydration). This includes support for HTTP streaming of both data (Resources) and HTML (out-of-order or in-order streaming of <Suspense/> components.)
- Isomorphic: Leptos provides primitives to write isomorphic server functions, i.e., functions that can be called with the “same shape” on the client or server, but only run on the server. This means you can write your server-only logic (database requests, authentication etc.) alongside the client-side components that will consume it, and call server functions as if they were running in the browser, without needing to create and maintain a separate REST or other API.
- Web: Leptos is built on the Web platform and Web standards. The router is designed to use Web fundamentals (like links and forms) and build on top of them rather than trying to replace them.
- Framework: Leptos provides most of what you need to build a modern web app: a reactive system, templating library, and a router that works on both the server and client side.
- Fine-grained reactivity: The entire framework is built from reactive primitives. This allows for extremely performant code with minimal overhead: when a reactive signal’s value changes, it can update a single text node, toggle a single class, or remove an element from the DOM without any other code running. (So, no virtual DOM overhead!)
- Declarative: Tell Leptos how you want the page to look, and let the framework tell the browser how to do it.
- GitHub: leptos-rs/leptos
- Picture's source
- Examples
- API Docs
#rust
Dioxus
Fullstack app framework for web, desktop, mobile, and more.
- GitHub: dioxuslabs/dioxus
- Docs: https://dioxuslabs.com/
#rust #native
Fullstack app framework for web, desktop, mobile, and more.
- Cross-platform apps in three lines of code (web, desktop, mobile, server, and more)
- Ergonomic state management combines the best of React, Solid, and Svelte
- Type-safe Routing and server functions to leverage Rust's powerful compile-time guarantees
- Integrated bundler for deploying to the web, macOS, Linux, and Windows
- GitHub: dioxuslabs/dioxus
- Docs: https://dioxuslabs.com/
#rust #native