

Also Thursday, Nissan reported a 221.9 billion yen ($1.4 billion) loss for the fiscal first half. It recorded a 19.2 billion yen profit during the same period a year ago.
What the fuck happened to their sales ? Did China kill it ?


Also Thursday, Nissan reported a 221.9 billion yen ($1.4 billion) loss for the fiscal first half. It recorded a 19.2 billion yen profit during the same period a year ago.
What the fuck happened to their sales ? Did China kill it ?


Moldova next because it’s not in NATO. Next Romania with Serbia and Hungary as ally. After that all old Yugoslavia. That can be like 2030 agenda. Many would say that Poland is next but they have big border with Russia, USA military bases and no value other than terrain and Russia have no problem with terrain. It’s easier and more profitable to go just south and gain access to the Mediterranean Sea. That opens up border with Africa with Middle East and cuts down Europe from south Oil and Gas sources.
For people who don’t know, you just buy certificates and your company is clean. https://en.wikipedia.org/wiki/Green_certificate


There is great sci-fi book about shutting down all electronic and how society collapses from perspective of the prepper guy.
Not sure if there is English translation because it’s Swedish author.
Stjärnklart
Author: Lars Wilderäng
https://www.goodreads.com/book/show/22937310-stj-rnklart


I know that if consumers stop buying during Black Friday and Christmas all economy will collapse because it’s around 40-50% of companies income.
There is some data here
https://www.pwc.com/us/en/industries/consumer-markets/library/holiday-outlook-trends.html
https://www.deloitte.com/us/en/insights/industry/retail-distribution/holiday-retail-sales-consumer-survey.html
You can host ollama and open-webui on container. If you want to wire search you can connect open-webui to playwright (also container) and searxng (also container) and llm will search the web for answers
If you do it twice you have 200% chance to win


Because market size for code editors is very small compared to email, games, document viewers and social networks.
from deletion
OpenAI announced they sold $6B worth of it’s shares before that so they probably also bought AMD stocks but I am not form SEC so I don’t know
https://www.cnbc.com/2025/10/02/openai-share-sale-500-billion-valuation.html


web TV ads can be easily blocked but recent advancements in hardware locking added cryptography chip so I imagine it would be some hardware chip you have to remove to get rid of ads that will overlay half of the screen


attend mandatory training


There is still no animation software that can match flash brush style / color or animation techniques.


I’m waiting for free phones / tv with split screen 50% AD 50% your content but only AI generated.


You can open websites in lynx.


this is nginx / openresty config - upstream is just definition of server / bunch of servers if you do loadbalancing - you can specify load balancing strategies and stuff. Or when want to separate server layer from proxy layer.
stream {
upstream something {
server xxx:123;
server yyy:321;
}
server {
listen 666;
proxy_pass something;
}
}
https://docs.nginx.com/nginx/admin-guide/load-balancer/tcp-udp-load-balancer/
I use openresty with autossl, it renews certificates automatically. The only problem is maintaining subdomain allowance otherwise bots will ddos letsencrypt with random domain names, after some quota they will soft ban you for a week to create certificates for new domains / subdomains.


you can reverse proxy other ports than 443 and ex. upstream ssh, the advantage of having reverse proxy over everything is to have traffic in one place so you can manage it, that’s why for example kubernetes have ingress server, example nginx / openresty upstream ssh, you can restrict traffic to limited amount of IP etc.
stream {
upstream ssh {
server 127.0.0.1:22;
}
server {
listen 2222;
ssl_preread on;
proxy_pass ssh;
}
}
it’s called microservice
Those are amateur problems, real problems start when you are unable to run it or you don’t have source code. Bonus, it’s written in the in house language made by developer who left job or died - true story.