Kernel virtual address space
The Kernel Virtual Address Space is the virtual memory area in which all Linux kernel threads reside. The second part of the virtual address space is occupied by the User Virtual Address Space which contain user threads.
Lsmod
lsmod is a command on Linux systems. It shows which loadable kernel modules are currently loaded. Abridged example output: # lsmod Module Size Used by af_packet 27392 2 8139too 30592 0 snd_cs46xx 96872 3 snd_pcm_oss 55808 1 snd_mixer_oss 21760 2 ...
Optware
Optware is a free software package manager for embedded systems. Originally developed as a distribution mechanism for the Unslung Linux distribution for the Linksys NSLU2, Optware has been adopted by a variety of hobbyist communities and device d ...
Scratchbox
Scratchbox is a Linux embedded application development toolkit which also provides cross compilation support for Linux distributions. The project has been initially developed by Movial and sponsored by Nokia. It is licensed under the GNU General ...
BlackBerry Mobile
Blackberry Mobile is a trading name used by TCL Communication to sell BlackBerry branded devices in all world markets, excluding Indonesia, India, Bangladesh, Sri Lanka and Nepal. BlackBerry Limited, the creator of the BlackBerry brand, decided i ...
Windows 7 editions
Windows 7, a major release of the Microsoft Windows operating system, was available in six different editions: Starter, Home Basic, Home Premium, Professional, Enterprise and Ultimate. Only Home Premium, Professional, and Ultimate were widely ava ...
Windows 8 editions
Windows 8 was released with four editions, with varying feature sets. The editions each with varied features are called Core, Pro, Enterprise, and RT. There are versions of these that features modified for legal or marketing reasons.
Windows 10 editions
Windows 10 has twelve editions, all with varying feature sets, use cases, or intended devices. Certain editions are distributed only on devices directly from an original equipment manufacturer, while editions such as Enterprise and Education are ...
Development of Windows 95
The initial design and planning of Windows 95 can be traced back to around March 1992, just after the release of Windows 3.1. At this time, Windows for Workgroups 3.1 and Windows NT 3.1 were still in development and Microsofts plan for the future ...
Windows Deployment Services
Windows Deployment Services is a server technology from Microsoft for network-based installation of Windows operating systems. It is the successor to Remote Installation Services. WDS is intended to be used for remotely deploying Windows Vista, W ...
Windows Hardware Error Architecture
Windows Hardware Error Architecture is an operating system hardware error handling mechanism introduced with Windows Vista and Windows Server 2008 as a successor to Machine Check Architecture on previous versions of Windows. The architecture cons ...
Development of Windows Vista
Development of Windows Vista occurred over the span of five and a half years, starting in earnest in May 2001, prior to the release of Microsofts Windows XP operating system, and continuing until November 2006. Microsoft originally expected to sh ...
Windows Vista editions
Windows Vista - a major release of the Microsoft Windows operating system - was available in six different product editions: Starter, Home Basic, Home Premium, Business, Enterprise, and Ultimate. On September 5, 2006, Microsoft announced the USD ...
Windows Imaging Component
Windows Imaging Component is a Component Object Model based imaging codec framework introduced in Windows Vista for working with and processing digital images and image metadata. WIC enables application developers to perform image processing oper ...
Windows Workflow Foundation
Windows Workflow Foundation is a Microsoft technology that provides an API, an in-process workflow engine, and a rehostable designer to implement long-running processes as workflows within.NET applications. The current version of WF was released ...
Development of Windows XP
Development of Windows XP started in 1999 as a successor to the Windows Neptune and Windows Odyssey projects. Neptune was originally going to be the successor of Windows Me, though based on the NT kernel. Microsoft merged the teams working on Nep ...
Enhanced Write Filter
Enhanced Write Filter is a component of Windows XP Embedded and Windows Embedded Standard 7 which stores volume changes on another medium instead of applying them to the original volume. EWF allows the writes to be discarded or committed to the o ...
Windows XP editions
Windows XP has been released in several editions since its original release in 2001. Windows XP is available in many languages. In addition, add-ons translating the user interface are also available for certain languages.
Windows XP visual styles
Windows XP visual styles are customizations of the graphical user interface of Windows XP. "Luna", "Royale", "Zune", and "Embedded" are codenames of the official visual styles designed for Windows XP by Microsoft. Since Windows XP, themes include ...
C alternative tokens
C alternative tokens refer to a set of alternative spellings of common operators in the C programming language. They are implemented as a group of macro constants in the C standard library in the iso646.h header. The tokens were created by Bjarne ...
Impulse C
Impulse C is a subset of the C programming language combined with a C-compatible function library supporting parallel programming, in particular for programming of applications targeting FPGA devices. It is developed by Impulse Accelerated Techno ...
Interactive C
Interactive C is a program which uses a modified version of ANSI C with several libraries and features that allow hobbyists to program small robotics platforms.
Painted blue
Blue paint refers to the mark given to preprocessing tokens by the C preprocessor that temporarily disables expansion of those tokens. A token is said to be painted blue when it has been disabled in this way. While the original author of the term ...
The Power of 10: Rules for Developing Safety-Critical Code
The Power of 10 Rules were created in 2006 by Gerard J. Holzmann of the NASA/JPL Laboratory for Reliable Software. The rules are intended to eliminate certain C coding practices which make code difficult to review or statically analyze. These rul ...
Restrict
In the C programming language, restrict is a keyword that can be used in pointer declarations. By adding this type qualifier, a programmer hints to the compiler that for the lifetime of the pointer, only the pointer itself or a value directly der ...
Struct (C programming language)
A struct in the C programming language is a composite data type declaration that defines a physically grouped list of variables under one name in a block of memory, allowing the different variables to be accessed via a single pointer or by the st ...
Type qualifier
In the C, C++, and D programming languages, a type qualifier is a keyword that is applied to a type, resulting in a qualified type. For example, const int is a qualified type representing a constant integer, while int is the corresponding unquali ...
Typedef
typedef is a reserved keyword in the C and C++ programming languages. It is used to create an alias name for another data type. As such, it is often used to simplify the syntax of declaring complex data structures consisting of struct and union t ...
Variadic macro
A variadic macro is a feature of some computer programming languages, especially the C preprocessor, whereby a macro may be declared to accept a varying number of arguments. Variable-argument macros were introduced in 1999 in the ISO/IEC 9899:199 ...
page 71
|
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
|
X Macro |
List of applications using Lua |
Lua-scriptable hardware |
Concurrent Pascal |
|
Vector Pascal |
Articles with example Pascal code |
Pascal compilers |
ActivePython |
|
Numba |
Articles with example Python code |
Python implementations |
Bogus (Ruby) |
Factory Bot (Rails Testing) |
HotRuby |
RubyKaigi |
28 Weeks Later (video game) |
Necropolis (browser game) |
Flash games ported to consoles |
CometBird |
Tor Browser |
Live Session (Josh Kelley EP) |
Live Session (The Blakes EP) |
|
Managed code |
Common Language Infrastructure |
|
Script.NET |
NClass |
.NET object-relational mapping tools |
List of Almost Naked Animals episodes |
List of The Amazing Spiez! episodes |
List of Animal Mechanicals episodes |
List of Annedroids episodes |
List of Atomic Betty episodes |
List of Babar and the Adventures of B .. |
List of Babar episodes |
List of Beat Bugs episodes |
List of The Berenstain Bears (2003 TV .. |
List of Braceface episodes |
List of Bubble Guppies episodes |
List of Camp Lakebottom episodes |
List of Class of the Titans episodes |
List of Cloudy with a Chance of Meatb .. |
List of Conan the Adventurer episodes |
List of Cyberchase episodes |
List of Daniel Tigers Neighborhood ep .. |
List of Detentionaire episodes |
List of Di-Gata Defenders episodes |
List of Dinosaur Train episodes |
|
List of Doki episodes |
List of Donkey Kong Country episodes |
List of Dragon Booster episodes |
List of Dragon Tales episodes |
List of Eek! The Cat episodes |
List of Handy Manny episodes |
List of Hotel Transylvania: The Serie .. |
List of Inspector Gadget (2015 TV ser .. |
List of Jacob Two-Two (TV series) epi .. |
List of Jimmy Two-Shoes episodes |
List of Justin Time episodes |
|
List of Kid vs. Kat episodes |
List of League of Super Evil episodes |
List of Little Charmers episodes |
List of The Little Lulu Show episodes |
List of Maggie and the Ferocious Beas .. |
List of Max Steel (2013 TV series) ep .. |
List of Mega Babies episodes |
List of Nature Cat episodes |
List of Neds Newt episodes |
List of Numb Chucks episodes |
List of Postcards from Buster episodes |
List of Ready Jet Go! episodes |
List of Rocket Monkeys episodes |
List of Rolie Polie Olie episodes |
List of Scaredy Squirrel episodes |
List of Sidekick episodes |
List of Slugterra episodes |
List of Spider Riders episodes |
|
List of Stoked episodes |
List of Storm Hawks episodes |
List of Super Why! episodes |
List of Toad Patrol episodes |
List of Top Wing episodes |
List of Whats with Andy? episodes |
List of Wild Kratts episodes |
List of Animals episodes |
List of Archer episodes |
|
List of The Awesomes episodes |
List of Brickleberry episodes |
List of China, IL episodes |
|
List of The Cleveland Show episodes |
List of The Critic episodes |
|
List of Drawn Together episodes |
|
List of Home Movies episodes |
List of Mike Tyson Mysteries episodes |
List of Mr. Pickles episodes |
List of Our Cartoon President episodes |
List of The PJs episodes |
List of Squidbillies episodes |
|
List of Superjail! episodes |
List of SuperMansion episodes |
|
List of Ugly Americans episodes |
no need to download or install
Pino - logical board game which is based on tactics and strategy. In general this is a remix of chess, checkers and corners. The game develops imagination, concentration, teaches how to solve tasks, plan their own actions and of course to think logically. It does not matter how much pieces you have, the main thing is how they are placement!
online intellectual game →