Syra's Techbinder
627 subscribers
608 links
News and resources on programming, technology, security.

Use @techbinderbot to send us interesting contents, feedback us and subscribe to your favorite topics.

What is techbinder? Read it here: https://goo.gl/rMAz3z
Download Telegram
https://www.cs.umd.edu/class/sum2003/cmsc311/Notes/BitOp/pointer.html

"It's perhaps too harsh a judgement of C, but certainly one of the reasons the language was invented was to write operating systems. Writing such code requires the ability to access addresses in memory in an efficient manner. This is why pointers are [...]"

Tags: #C #pointers #programming
www.cs.yale.edu/homes/aspnes/pinewiki/C(2f)Graphs.html

"A graph consists of a set of nodes or vertices together with a set of edges or arcs where each edge joins two vertices. Unless otherwise specified, a graph is undirected: each edge is an unordered pair {u,v} of vertices, and we don't regard either of the two vertices as having a distinct role from the other. [...]"

Tags: #programming #C
http://www.phpinternalsbook.com/index.html

This book, a collaborative effort between several PHP developers primarily targeted at C lang experienced programmers, document and describe how PHP internals work, how to extend the language with extension and how to interact with the community to develop PHP itself.

Tags: #webdev #PHP #C #programming
https://nikic.github.io/2015/05/05/Internal-value-representation-in-PHP-7-part-1.html

"This article, divided in two parts, will take a look at the new representation of PHP values in general: this part will describe how the zval (Zend value) implementation differs between PHP 5 and PHP 7."

Tags: #programming #PHP #C
https://nikic.github.io/2014/12/22/PHPs-new-hashtable-implementation.html

"A Hashtable is an ubiquitous data structure whereas programmers often use strings or other complex types as keys."

Tags: #php #webdev #programming #C
http://nullprogram.com/blog/2014/10/21/

"C Object Oriented Programming"

Tags: #C #OOP
http://www.phpinternalsbook.com/

A resourceful guide to PHP internals, now updated to PHP 7.

Tags: #programming #php #c
https://nullprogram.com/blog/2018/11/15/

A JIT Compiler Skirmish with SELinux

Tags: #programming #c