peeyek | 5 years ago | on: Show HN: Make your own real-time 3D blob using physically based rendering
peeyek's comments
peeyek | 5 years ago | on: Show HN: InstaRoom turns your iPhone into a smart webcam
peeyek | 5 years ago | on: Show HN: A better way to learn Python
peeyek | 5 years ago | on: Show HN: Ektora – Instagram Growth on Autopilot
peeyek | 5 years ago | on: Show HN: Blunt – A CSS framework without all the fluff
You can use it without installing any nodejs stuff.
peeyek | 5 years ago | on: Show HN: Deploy an API Gateway HTTP API Today with AWS CDK
I recommend to watch this session in ServerlessDays Virtual April 2020 https://www.youtube.com/watch?v=H4WoQd2yVJQ&feature=youtu.be...
peeyek | 6 years ago | on: Show HN: TerminusDB – An open source in-memory graph database
peeyek | 6 years ago | on: Thank HN: You helped me get a new job
peeyek | 7 years ago | on: Mobile DApp Browsers – Reviewed and Compared
peeyek | 7 years ago | on: Scala: Understanding implicits
peeyek | 7 years ago | on: Plans for OCaml 4.08
peeyek | 8 years ago | on: Kubernetes 1.10 released
You will use a tool called a “minikube” which is “mini” version of kubernetes that runs on your local machine.
You should focus on to get familiar with kubectl(1) first, it’s a simple CLI tool to manage kubernetes cluster.
If you have any questions & issues you can ask on Stack Overflow #kubernetes and you can also join the Slack channel.
peeyek | 8 years ago | on: Stripe Sigma
peeyek | 9 years ago | on: Ryzen is for Programmers
peeyek | 9 years ago | on: Building and Linking Libraries in C
peeyek | 9 years ago | on: Facebook AI Research Open Sources fastText
peeyek | 9 years ago | on: Const and Optimization in C
peeyek | 9 years ago | on: Const and Optimization in C
void foo(const int *);
...
> The function foo takes a const pointer, which is a promise from the author of foo that it won’t modify the value of x. Given this information, it would seem the compiler may assume x is always zero, and therefore y is always zero.peeyek | 9 years ago | on: Const and Optimization in C
void foo(int *const x);
If you point x to another adress inside foo function, it will not compiled.The author seems think that
void foo(cont int *x);
is function that takes a constant pointer which is wrong, it is a function that takes pointer to constant object. In this case, it is legal if you point x to another address in memory inside foo function.peeyek | 9 years ago | on: Just: A library of dependency-free JS utilities that do just do one thing
There are 10 modules that you need to imports if you are using 10 functions. I think it's unnecesary
Is it open source? I want to learn on how to create it