HN user

rymate1234

147 karma
Posts3
Comments58
View on HN

Disney created the character and was able to profit from it for years, but Disney has equally profited over characters it didn't create but instead created their own adaptations. Why should other companies be denied the same thing Disney had access to?

Depends imo. If it's purely just a few static pages then yeah I can see this happening but as soon as you have anything like a blog you're going to want some sort of content management system surely to manage it?

What I see this more doing is eliminating the need for someone to code the glue between the CMS and the website -- you can just ask the AI to add code to get your blogs from Contentful

ChatGPT Enterprise 3 years ago

They probably just call the public API same as everyone else using it outside Microsoft.

The exclusive license refers to having access to the models, which is probably why they were able to finetune Bing AI.

Probably why, like the article says, they're planning to add that

In an attempt to address the issues with open-source licensing, GitHub plans to introduce a new Copilot feature that will “provide a reference for suggestions that resemble public code on GitHub so that you can make a more informed decision about whether and how to use that code,” including “providing attribution where appropriate.” GitHub also has a configurable filter to block suggestions matching public code.

It's been clearly displayed that these tools are emitting verbatim copies of existing code (and its comments) in their input.

Which makes sense when you consider that the sort of code that is getting reproduced verbatim is usually library functions which developers may copy and paste verbatim comments and all into their project, especially when you prompt the AI with the header of a function that has been copied and pasted often, so the weightings will in that instance be heavily skewed towards reproducing that function

See, maybe this is just a cultural difference but I definitely know unionized people who have taken on responsibility outside their formal JD

And I've definitely heard of non unionised companies with rigid roles like that where the middle managers liked having defined roles with little room for taking on additional responsibilities.

The difference between the two IMO is if the union has shit representatives you _can_ work with colleagues to get a different union rep as it's democratic when implemented correctly, whereas with a crap management you only have the option of moving job, so at least with a more unionised workforce you can do both.

The "left" is no more immune to controlling thought than the right -- just look at China or the USSR

The danger is authoritarianism and centralisation, and in terms of centralisation big tech companies like Spotify have in spades. You could also feasibly argue they're authoritarian as no-one outside the company can influence policy outside of free market forces, but centralisation can make these companies somewhat immune to said forces, for instance Spotify being the exclusive distributor of Joe Rogan podcasts means those interested in his content have no choice but to continue using Spotify, even though some of his podcasts have been removed.

Because you know what happens when private property is abolished? Spoiler, only the well connected and powerful will hold private property

If only a few people can own private property then you haven't abolished private property, you've just limited who can own it.

This was the main issue caused by the massive state control of Marxist Leninist countries like the Soviet Union -- by centralizing all control within one single political party you essentially just replace an economic elite with a political elite. Couple that with the democratic centralism you often find in these single party ML countries and suddenly you have something that's a lot less like the communal living the OP was referring to.

I'm not saying abolishing private property will be some magical fix all, but I also don't think using the soviet union as an example of why it won't work is a good example. You could have a society where usage of resources is governed by consensus rather than "lol stalin said so" but consensus is obviously a lot harder to do on a global scale than a small communal village

Main difference with Vercel / ZEIT is that unlike Netlify, it can more easily have SSR pages.

So like if you're using NextJS for instance, on Netlify you can only really use the static site generation features of NextJS, whereas with Vercel you have SSR pages as well as the API functions.

Also Vercel _can_ do full standard servers if needed, including for NodeJS https://vercel.com/docs/runtimes#advanced-usage/advanced-nod... or Python https://vercel.com/docs/runtimes#advanced-usage/advanced-pyt...

There's a true platform framework for Windows, and that's either WPF if you need to target Windows pre 10, and WinUI / UWP for targeting Windows 10

People do this all the time, there's native mobile applications using the true platform frameworks for both operating systems

They have some legitimate reasons for the Gatsby specific CSS -- specifically because everything needs to be available at build time, and I assume the prismjs library depends on browser APIs that may not exist at build time.

It's also not too surprising to hear that it doesn't support code highlighting out of the box in React given it's a plugin for Gatsby's remark plugin.

However, because we added prismjs as a dependency, you can still use it in React without hacking it with `dangerouslySetInnerHtml` so no idea where you got that idea from: https://pathof.dev/blog/code-highlighting-in-react-using-pri...

React still has a "component lifecycle" -- it's just with hooks the way you interact with that lifecycle is different [1].

Hooks are a more direct way to use the React features you already know — such as state, lifecycle, context, and refs. They don’t fundamentally change how React works, and your knowledge of components, props, and top-down data flow is just as relevant.

And if you like functional components, VueJS has them as well [2]

[1] https://reactjs.org/docs/hooks-faq.html#how-much-of-my-react... [2]: https://vuejs.org/v2/guide/render-function.html#Functional-C...

Netlify Dev 7 years ago

Yeah but with Zeit Now the serverless functions can actually serve the application, so if you need SSR with dynamic data you're able to, whereas with netlify it's static html being served with optional AWS style lambda functions.

For instance Zeit can host a standard node server to serve your application if necessary https://zeit.co/docs/v2/deployments/official-builders/node-j...