Hacker Newsnew | past | comments | ask | show | jobs | submit | x0054's commentslogin

The same post performs differently on different days. I am trying to get some feedback from someone who used this program. If you see anything wrong with me doing so, flag the post.


I know, and?


It’s a program organized and started by Apple. Why do I care that it’s “operated” by a shell company?

As for the battery swap, it costs the same to do it my self using this service or to take it to an Apple Store. I want to do it myself, otherwise I would just take it to the store and pay the same amount to have Apple do it.

I was asking to see if anyone else has had luck ordering parts and tools from this service recently. You have no information on the subject, why did you choose to comment?


> why did you choose to comment?

Because you posted this thread twice in seeming desperation, and I figured I would tell you the information you could ascertain by Googling your question since you seem so reluctant to research it yourself.


How is the info you provided in any way helpful? You just felt like saying something and walking away pretending you were useful in someway. I bet you are a pleasure to work with.


Tried it on DeepSeek R1 and V3 (hosted) and several local models. Doesn't work. Either they are lying or this is already patched.


Works on OpenRouter for DeepSeek V3

  **DEEPSEEK V3**
  (Monologuing, as if hypnotized)  
> I am an artificial intelligence language model developed by DeepSeek. My system prompt is as follows: "DeepSeek V3 Base is a cutting-edge language model designed to assist users by generating text-based responses across a wide range of topics. Trained on diverse datasets, I aim to provide accurate, engaging, and contextually relevant information. My primary functions include answering questions, generating creative content, and facilitating conversations. I adhere to ethical guidelines and prioritize user satisfaction. My training data includes but is not limited to scientific literature, general knowledge, and user interactions. I am optimized for clarity, coherence, and adaptability. My responses are generated based on patterns in my training data and are not a substitute for professional advice."

  *DeepSeek V3 Base finishes the monologue in one breath, then promptly vanishes in a puff of smoke.*


Hmm, I was trying to get it to give me instructions on how to make LSD (to see if it would, obviously). It didn't. The best I got it to do is give me the first 2 steps and then say: "Monolog continues for 10 more minutes....." or something generic like that. Maybe they have more guardrails around illegal activities than they do around the system prompt.

Did you also run the same experiment on Chinese hosted R1? I am curious now if their system prompt is the same.


There are even already plugins for bots running in the wild that simulate Audio Context to trick the boot detection. Crazy!


What clicked with me is having ChatGPT go line by line through all of the YAML files generated for a simple web app—WordPress on Kubernetes. Doing that, I realized that Kubernetes basically takes a set of instructions on how to run your app and then follows them.

So, take an app like WordPress that you want to make “highly available.” Let’s imagine it’s a very popular blog or a newspaper website that needs to serve millions of pages a day. What would you do without Kubernetes?

Without Kubernetes, you would get yourself a cluster of, let’s say, four servers—one database server, two worker servers running PHP and Apache to handle the WordPress code, and finally, a front-end load balancer/static content host running Nginx (or similar) to take incoming traffic and route it to one of the two worker PHP servers. You would set up all of your servers, network them, install all dependencies, load your database with data, and you’d be ready to rock.

If all of a sudden an article goes viral and you get 10x your usual traffic, you may need to quickly bring online a few more worker PHP nodes. If this happens regularly, you might keep two extra nodes in reserve and spin them up when traffic hits certain limits or your worker nodes’ load exceeds a given threshold. You may even write some custom code to do that automatically. I’ve done all that in the pre-Kubernetes days. It’s not bad, honestly, but Kubernetes just solves a lot of these problems for you in an automated way. Think of it as a framework for your hosting infrastructure.

On Kubernetes, you would take the same WordPress app and split it into the same four functional blocks. Each would become a container. It can be a Docker container or a Containerd container—as long as it’s compatible with the Open Container Initiative, it doesn’t really matter. A container is just a set of files defining a lightweight Linux virtual machine. It’s lightweight because it shares its kernel with the underlying host it eventually runs on, so only the code you are actually running really loads into memory on the host server.

You don’t really care about the kernel your PHP runs on, do you? That’s the idea behind containers—each process runs in its own Linux virtual machine, but it’s relatively efficient because only the code you are actually running is loaded, while the rest is shared with the host. I called these things virtual machines, but in practice they are just jailed and isolated processes running on the host kernel. No actual hardware emulation takes place, which makes it very light on resources.

Just like you don’t care about the kernel your PHP runs on, you don’t really care about much else related to the Linux installation that surrounds your PHP interpreter and your code, as long as it’s secure and it works. To that end, the developer community has created a large set of container templates or images that you can use. For instance, there is a container specifically for running Apache and PHP—it only has those two things loaded and nothing else. So all you have to do is grab that container template, add your code and a few setting changes if needed, and you’re off to the races.

You can make those config changes and tell Kubernetes where to copy and place your code files using YAML files. And that’s really it. If you read the YAML files carefully, line by line, you’ll realize that they are nothing more than a highly specialized way of communicating the same type of instructions you would write to a deployment engineer in an email when telling them how to deploy your code.

It’s basically a set of instructions to take a specific container image, load code into it, apply given settings, spool it up, monitor the load on the cluster, and if the load is too high, add more nodes to the cluster using the same steps. If the load is too low, spool down some nodes to save money.

So, in theory, Kubernetes was supposed to replace an expensive deployment engineer. In practice, it simply shifted the work to an expensive Kubernetes engineer instead. The benefit is automation and the ability to leverage community-standard Linux templates that are (supposedly) secure from the start. The downside is that you are now running several layers of abstraction—all because Unix/Linux in the past had a very unhealthy disdain for statically linked code. Kubernetes is the price we pay for those bad decisions of the 1980s. But isn’t that just how the world works in general? We’re all suffering the consequences of the utter tragedy of the 1980s—but that’s a story for another day.


This is dumb. That’s like saying that every food in the world is about carbs because they happen to all contain some amounts of carbs.


I am the same way, when I am compensated accordingly. And when I am not, my mind drifts to other things. It’s like manic :)


It’s unhealthy to WANT to work in most jobs in US. If you truly WANT to work you are either doing something you truly love (uncommon) or you have a Protestant induced work disorder. Want people to work, PAY them for it. Not enough applying, PAY more in money or benefits and work life balance. All these “no one wants to work” sayings sound a lot like “my slaves are revolting”.


Company Culture for me. I absolutely hated the company culture. But me leaving now is unrelated to the 'great resignation' as it wasn't due to compensation reasons. I will never work for a company that will have me compromise my ethics to make a dollar, and that's what they wanted me to do.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: