Breaking news from the land of paywalls: Microsoft, OpenAI’s biggest investor, plans to integrate ChatGPT into Bing search by March 2023. Microsoft already has plans in place for a DALLE-2 integration through “Bing Image Creator” as seen here: https://
bing.com/create
SOFTWARE
-
Microsoft to Integrate ChatGPT and DALL-E 2 into Bing Search
By
–
-
Microsoft Bing to Integrate OpenAI’s ChatGPT for Search Functionality
By
–
OpenAI ChatGPT to be added to Microsoft Bing search results, creating a ChatGPT-based version of what http://
Perplexity.ai does today. Unclear if this implies the existence of a ChatGPT API vs. Bing just using GPT-3.5 to create their own chatbot. -

Prompting GPT-3 with Python for Precise Text and JSON Generation
By
–

Prompting GPT-3 to reliably generate text and JSON data in a precise format using Python assertions, f‑strings, and variables declared only in our imaginations.
-
Developer’s Commitment: Daily GitHub Contributions
By
–
GF: You have commitment issues.
BF: What are you talking about?? I commit everyday on GitHub!! -
Fujitsu UI Detects Hand Gestures Bridging Virtual Real Worlds
By
–
#UI detects hand gestures, transfers #Data between #Virtual and real world >>> @Fujitsu_Global via @MikeQuindazzi >>> #AR #VR #IoT pic.twitter.com/WpHX4yCEv6
— Mike Quindazzi (@MikeQuindazzi) 4 janvier 2023#UI detects hand gestures, transfers #Data between #Virtual and real world >>> @Fujitsu_Global via @MikeQuindazzi >>> #AR #VR #IoT
-

Mobile Shopping Surge: 76% of Americans Buy Online via Smartphone
By
–
76% of Americans report buying things #Online using a #Smartphone >>> How is your #mobile game? >>> @pewresearch via @MikeQuindazzi >>> #ecommerce #fintech #DX >>> http://
shorturl.at/moCM9 -
A1111 folder structure changes with Stable Diffusion 2
By
–
Ohh interesting, does folder struct of A1111 change w/ SD2?
-
AUTOMATIC1111 Stable Diffusion 2.1 macOS CLIP ViT-H Error
By
–
Anyone know why AUTOMATIC1111 web ui doesn't let me run SD2.1 on MacOS? Trying v2-1_768-ema-pruned.ckpt and 768-v-ema.ckpt: FileNotFoundError: [Errno 2] No such file or directory: '/Users/dep/.cache/huggingface/hub/models–laion–CLIP-ViT-H-14-laion2B-s32B-b79K/refs/main'
-
MAML Meta-Learning and Software Architecture Design Principles
By
–
reminds me of MAML meta-learning (
https://
arxiv.org/abs/1703.03400) where the objective is to find weights of a network such that any new task finetunes fast. In Software 1.0 land, equivalent is writing code such that any new desired functionality is simple and doesn't need a refactor. -
Designing Software: Balancing Optimization with Future Flexibility
By
–
Hardest part about designing good software is pricing in potential future needs. Easy to optimize a piece of code while making it impossible to change the spec, or design clean abstractions that will be circumvented once you add a new concept. Anticipating possible futures is key