All Projects → lostjared → cplusplus11.Examples

lostjared / cplusplus11.Examples

Licence: Unlicense license
C++11 Examples

Programming Languages

C++
36643 projects - #6 most used programming language
HTML
75241 projects
Makefile
30231 projects

Labels

Projects that are alternatives of or similar to cplusplus11.Examples

evolution
Evolution process of The Falco Project
Stars: ✭ 37 (-28.85%)
Mutual labels:  examples
jsstore-examples
This repo contains examples of jsstore for different frameworks & tools
Stars: ✭ 31 (-40.38%)
Mutual labels:  examples
gradle-demos
A collection of sample builds demonstrating how to do different things in Gradle
Stars: ✭ 29 (-44.23%)
Mutual labels:  examples
nav-docker-examples
Examples and use-cases for MS Dynamics NAV on Docker
Stars: ✭ 21 (-59.62%)
Mutual labels:  examples
nuxtjs-examples
Example apps of Nuxt.js framework
Stars: ✭ 51 (-1.92%)
Mutual labels:  examples
optuna-examples
Examples for https://github.com/optuna/optuna
Stars: ✭ 238 (+357.69%)
Mutual labels:  examples
ros2 examples
Examples for individual ROS2 functionalities inc. Subscribers, Publishers, Timers, Services, Parameters. ...
Stars: ✭ 46 (-11.54%)
Mutual labels:  examples
gnuplot-examples
GNUPlot Examples
Stars: ✭ 50 (-3.85%)
Mutual labels:  examples
jsfiddle-github
JSFiddle implementation for interactive JavaScript examples.
Stars: ✭ 16 (-69.23%)
Mutual labels:  examples
Examples
Smaller or bigger examples that I've written or will write in the future in C++.
Stars: ✭ 14 (-73.08%)
Mutual labels:  examples
denobyexample
Deno by example - short examples showcasing how to use Deno
Stars: ✭ 72 (+38.46%)
Mutual labels:  examples
Examples Qt
Shows how to use Qt widgets only by programming code (c++17).
Stars: ✭ 38 (-26.92%)
Mutual labels:  examples
Sandbox
KumbiaPHP sandbox with examples
Stars: ✭ 16 (-69.23%)
Mutual labels:  examples
neeo-sdk-examples
NEEO Brain SDK Examples
Stars: ✭ 19 (-63.46%)
Mutual labels:  examples
kubernetes-examples
A bunch of examples of how to deploy things on kubernetes
Stars: ✭ 34 (-34.62%)
Mutual labels:  examples
go-learning
My Golang training material for testing smaller Go concepts and ideas.
Stars: ✭ 27 (-48.08%)
Mutual labels:  examples
cloud-game-servers-examples
Collection of examples for using Google Cloud Game Servers.
Stars: ✭ 28 (-46.15%)
Mutual labels:  examples
examples
Examples from the AIMMS Modeling Book, Functional examples demonstrating particular AIMMS features, AIMMS-style application examples including an end-user UI, Practical examples, including references to the articles on which each example is based.
Stars: ✭ 16 (-69.23%)
Mutual labels:  examples
weaviate-examples
Weaviate vector search engine – examples
Stars: ✭ 79 (+51.92%)
Mutual labels:  examples
90 Python Examples
The best way to learn Python is by practicing examples. The repository contains examples of basic concepts of Python. You are advised to take the references from these examples and try them on your own.
Stars: ✭ 190 (+265.38%)
Mutual labels:  examples
Jared Bruni's C++11 Examples 

I have created a series of C++ Tutorials in video form on YouTube
You can find them here: https://www.youtube.com/playlist?list=PLUgo--lX2kmqPQ5C8jRfy6RZVKHFqN7Zz

I am just going through and writing stuff to help me remember and practice
some of the new features of C++11. I will create a new repo for C++14.

Most of the examples do not do anything 
useful except to demonstrate those specific features. Some of the examples solve problems
like generating m3u playlist or outputting html for a cgi program.

There is also a calculator for parsing expressions that is similar to
the one from "The C++ Programming Language" 4th Edition. 

To build from Makefiles use 

on MacOS X:

$ make

on Linux:

$ make -f Makefile.linux

Note:
To compile make sure your compiler supports C++11 with clang I use:
say for sourcefile.cc

clang++ -std=c++11 sourcefile.cc -o sourcefile 

For Linux use libstdc++ instead of libc++ and g++ 4.8 or greater
Each program only requires one line to compile it. 

g++ -std=c++11 sourcefile.cc -o sourcefile 

- Jared Bruni

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].