This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, body { | |
background-color: #000; | |
color: #e0e0e0; | |
} | |
div.wrap { | |
background-color: #1a1a1a; | |
} | |
div.wrap h1, div.wrap h2, div.wrap h3, div.wrap h4, div.wrap h5 { | |
color: #caaa00; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.cs.umd.edu/~meesh/cmsc411/website/projects/IA64-2/411project.htm | |
https://www.nvidia.com/content/cudazone/cudau/courses/ucdavis/lectures/ilp3.pdf | |
http://www.ai.mit.edu/projects/aries/Documents/vliw.pdf | |
http://www.cse.unsw.edu.au/~cs9244/06/seminars/02-nfd.pdf | |
http://www.ida.liu.se/~TDDI68/lecture-notes/lect8-9.frm.pdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Simple test for using std::function with inheritance | |
#include <functional> | |
#include <iostream> | |
class Base | |
{ | |
public: | |
virtual void do_it(const std::string & s) | |
{ | |
std::cout << "Doing " << s << std::endl; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 99 bottles of beer program for Viua VM Assembler (modified) | |
; Copyright (C) 2015 Marek Marecki | |
; | |
; This program is free software: you can redistribute it and/or modify | |
; it under the terms of the GNU General Public License as published by | |
; the Free Software Foundation, either version 3 of the License, or | |
; (at your option) any later version. | |
; | |
; This program is distributed in the hope that it will be useful, | |
; but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 99 bottles of beer program for Viua VM Assembler | |
; Copyright (C) 2015 Harald Eilertsen | |
; | |
; This program is free software: you can redistribute it and/or modify | |
; it under the terms of the GNU General Public License as published by | |
; the Free Software Foundation, either version 3 of the License, or | |
; (at your option) any later version. | |
; | |
; This program is distributed in the hope that it will be useful, | |
; but WITHOUT ANY WARRANTY; without even the implied warranty of |