On Constructed Sentience and Simulated Personalities: Part 1
#AI #ML #LLM #GPT #ChatGPT #OpenAI #SciFi #comedy
Art is Exhausting
#creators #art #artists #perfectionists #iteration #focus #priorities #prioritizing #funny #comedy
Slartboz: Random Monster Encounters & Rage Mobs
#fiction #RPG #CRPG #comedy #funny #parody #satire #DarkComedy #irreverent #monsters #MonsterManual #gamers #gaming #dystopia #SciFi #PostApoc #game #ItchIo #Itch
#ai #ml #llm #gpt #chatgpt #openai #scifi #comedy #creators #art #artists #perfectionists #iteration #focus #priorities #prioritizing #funny #fiction #rpg #crpg #parody #satire #darkcomedy #irreverent #monsters #monstermanual #gamers #gaming #dystopia #postapoc #game #itchio #itch
@allenholub Because I don’t believe that “viability” is the characteristic which influences whether a minimalistic prototype construction will be successful in a market, I reframe it as “MDP” or Most Delightful Product.
#productmanagement #userstories #ux #iteration #delight
Iteration is the oxygen of great product development. Don't get caught up in analysis paralysis or strive for perfection from the get-go. Build, test, learn, and iterate. Embrace the power of feedback loops and continuous improvement. Progress is made one small step at a time!
#Agile #Iteration #ContinuousImprovement
#agile #iteration #continuousimprovement
Meanwhile, lying in bed yesterday I started drafting some words for an Arts Council grant application for the orchestra. Things I can do without being able to go anywhere!
I have some ambivalence about the need to write down plans in advance for grant applications, when really I prefer to work iteratively: try something, improve next time. But if it were to come through, it would make the orchestra startup finances a lot easier. Pluses on both sides.
New Hacking the Grepson podcast episode is out!
Hacking the Grepson 040: MusicDev - Iteration
Matt and Mike discuss the process of iteration over and over and over.
Episode Link: https://www.podbean.com/eas/pb-yei6m-13fad56
Show Feed: https://feed.podbean.com/hackingthegrepson/feed.xml
Show Home: https://hackingthegrepson.com
#HackingTheGrepson #podcast #programming #development #musicdev #iteration
#HackingTheGrepson #Podcast #programming #development #musicdev #iteration
There is one more non-production cutover before production. Which means there is another chance to #rehearse. And another chance to #execute. And another chance to #learn. And another chance to feed the #lessons learned into the next #iteration.
#iteration #lessons #learn #execute #rehearse
💡 #UnityTips for beginners: Create a prototype to test your game idea! 🔬 Create a simple prototype of your game concept to test the mechanics, gameplay, and user experience. Refine and iterate until you have a polished product. #unity #unity3d #gamedev #prototype #iteration #IndieDev #IndieGame
#unitytips #unity #unity3d #gamedev #prototype #iteration #indiedev #indiegame
Starting small doesn't mean you're limiting yourself. It means you're giving yourself the opportunity to iterate and improve along the way. #iteration #startsmall #processimprovement
#iteration #startsmall #processimprovement
One of these cat-newspaper moments for me. #gamedev #iteration #iteration #iteration #iteration #iteration #iteration
One day, one decomposition
A007770: Happy numbers: numbers whose trajectory under iteration of sum of squares of digits map (see A003132) includes 1
3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/Happy_numbers.html
2D #graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/Happy_numbers.html
#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #trajectory #iteration #sum #squares #digits #map #graph
#map #digits #squares #SuM #iteration #trajectory #numbers #3d #php #javascript #oeis #sequence #mathematics #math #decompwlj #graph #webgl #threejs
#ChatGPT is everywhere. Here’s where it came from. #ChatGPT breakout hit was an overnight sensation—but it is built on decades of #research.But OpenAI’s breakout hit did not come out of nowhere. The #chatbot is the most polished #iteration to date in a line of large #languagemodels going back years. This is how we got here. https://www.technologyreview.com/2023/02/08/1068068/chatgpt-is-everywhere-heres-where-it-came-from
#chatgpt #research #chatbot #iteration #languagemodels
'First-Order Algorithms for Nonlinear Generalized Nash Equilibrium Problems', by Michael I. Jordan, Tianyi Lin, Manolis Zampetakis.
http://jmlr.org/papers/v24/22-0310.html
#algorithms #iteration #equilibrium
#algorithms #iteration #equilibrium
Ce matin, les étudiant·e·s #lownum vont présenter sur ce fil leurs projets lowtech&numérique. Ielles attendent les retours de la communauté. #feedback #peerreview #iteration
Petit rappel du contexte par @audrey c'est ici ➡️ https://upload.fedithese.net/@audrey/109783793506596248
#lownum #feedback #PeerReview #iteration
Unser tolles #CoCo Team bei der Jahresausstellung von #CodeAndContext, der #Iteration.
Mitarbeiter*innen und Professor*innen
#coco #codeandcontext #iteration
On #Friendica:
›The extended form of the Common Lisp <loop> macro as a Controlled Natural Language (CNL)‹
🔗 https://libranet.de/display/0b6b25a8-1963-a776-9fb1-d9c503592537
🌺
🏷️ #InterLisp #CommonLisp #ControlledNaturalLanguage #DylanLang #ELSConf #VIM #Emacs #PrettyPrinting #functional #hashtable #iteration #loop #dotimes #dolist #maphash #map #with·hashtable·iterator #Scheme #Macro #CommonLisp #ControlledNaturalLanguage #CNL #ComputerAidedProgramming #CAP
#friendica #interlisp #commonlisp #controllednaturallanguage #dylanlang #ELSCONF #vim #emacs #PrettyPrinting #functional #hashtable #iteration #loop #dotimes #dolist #maphash #map #with·hashtable·iterator #scheme #macro #cnl #computeraidedprogramming #cap
New section in my blog post on the “Iterator Helpers” proposal: “How will this proposal affect future JavaScript APIs?”
https://2ality.com/2022/12/iterator-helpers.html#future-apis #JavaScript #Iteration
My npm package “iterator helpers polyfill” is already at 299 weekly downloads. Not exactly Lodash numbers but I’m surprised that people even found the package.
https://www.npmjs.com/package/@rauschma/iterator-helpers-polyfill
#JavaScript #Iteration #npm
One of the benefits of the new JavaScript iterator methods—filtering and mapping for Sets:
assert.deepEqual(
new Set(
new Set([-5, 2, 6, -3]).values().filter(x => x >= 0)
),
new Set([2, 6])
);
assert.deepEqual(
new Set(
new Set([-5, 2, 6, -3]).values().map(x => x / 2)
),
new Set([-2.5, 1, 3, -1.5])
);
https://2ality.com/2022/12/iterator-helpers.html
#JavaScript #Iteration
For someone who strongly believes product development ought to be a continuous process, it’d be a total mismatch if he thinks the other parts of the PLC are a one-off activity.
#productmanagement #productdevelopment #PLC #iteration #increments
#productmanagement #productdevelopment #plc #iteration #increments