I’m building CodeSkeptic,
a precision-first C/C++ static analyzer.
I test it against real-world open-source codebases.
A few findings so far:
• TensorFlow / TFLite — memory leak in an FFT error path
• shadPS4 — null dereference caused by a missing return
• shadPS4 — incorrect && null-check causing a dereference
All three were accepted upstream and resulted in merged fixes.
CodeSkeptic is still under active development.
Önce hayatta kalalım yarın savaşırız stratejisi.
Devletlerin sizi destekleyici rolü yok.
Doktor olup ekonomik olarak rahatladıktan sonra ancak hayalini kurduğum bilgisayar mühendisliğinin tüm textbooklarını alıp hepsini büyük bir hevesle bitirdim.
Ayrıca bazı noktalar var.
Üniversitelerde çocuklara textbook okuma fırsatı tanınmıyor.
Ders notları çalışmazlarsa sınav geçemiyorlar.
Öğrenme gerçekleşmiyor,
sahada kendinden daha düşük kıdemli elemanlardan öğrenmek zorunda kalıyorlar.
Halbuki kitaplar çok iyi yapılanmış,
çok öğretici.
Sizi en temelden alıp en yukarıya bırakıyor.
Geriye sadece pratik yapmak kalıyor.
(İngilizce kaynaklar için söylüyorum,
çeviriler için bile değil.
Bir iki kitabın çevirisine denk geldim.
Rengarenk orjinal kitabı simsiyah tek renk basmışlar,
bütün sınırlar kaybolmuştu.
Çalışmak öğrenmek mümkün değil.)
Update on rate limits in Codex.
We’ve found (a) some inefficiencies when using images in long sessions with multiple compactions (b) high p95+ usage for Computer History (c) a feature that was meant to generate conversation titles that was draining a bit more usage than intended. And we have a tiger team combing through everything and shipping fixes tomorrow. We also found a novel approach to drive efficiency up significantly that is completely unrelated and we will be working on next week.
As part of some of the fixes tomorrow, we will also do a full reset of the usage for all paid subscriptions.
See you then.
Profilini frontend ve web designer diye okudum.
Eğer profilin doğrultusunda iş yapacaksan işletim sistemi ve veri yapıları ile çok işin olmayabilir diye düşünüyorum.
Ama branş değiştirip backend, sunucu, sistem programlayacağım dersen iş değişir tabi.
***⬇️
Bence direkt derslere dalmak yerine önce projeni anlatıp (AI’a) projenin gerekliliklerini ve bağımlılıklarını çıkarmanı öneririm.
***⬆️
Ormanı tepeden görmek, “ha bu kadarmış” demek insanı en çok rahatlatan şeydir.
Ve insanı en çok zorlayan şey plan kurmaktır.
İyi plan kurmak da doğru soruları sormaktan geçer.
(Çok tecrübe ettim)
@Ramz4ram@MicrosoftLearn Frontend? JavaScript/TypeScript, often React.
Data/ML? Python.
Enterprise backend? Java, C#, Go.
Systems or performance-critical work? C/C++ or Rust.
Pick the domain first.
The language usually follows.
@Taniyatweets_ Programming languages evolved to meet the needs of their time. Each has its own story.
So what does our time need?
A language designed for AI?
I’ll take whatever comes next.
@Arikalabs C++ trusts you.
Static analyzers don’t have to.
The gap between “this compiles” and “this is safe” is exactly why they exist.
Shameless plug: I’m building a precision-first one for C/C++ — CodeSkeptic:
https://t.co/cOw7TCfz7t
@ChShersh -D_GLIBCXX_DEBUG catches this invalid range at runtime,
unlike
-Wall -Wextra -pedantic.
Use with caution:
it changes libstdc++ container ABI,
so all code sharing STL containers must be built with the same setting.
A strict profile should reject this at compile time.