forked from mikeizbicki/ucr-cs100
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
16a3419
commit 020de7b
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
what we've learned | ||
* git / version control subversion, mercurial, darcs | ||
* git not just for source code | ||
* linux programming | ||
* syscalls | ||
* reading manpages | ||
* other tools | ||
* Makefiles | ||
* gdb, valgrind, cppcheck | ||
|
||
|
||
what you need to do before graduating | ||
* know 5 different programming languages | ||
* imperative programming / procedural languages | ||
* c/c++, Java, python, ruby, php, perl | ||
* scripting languages | ||
* python, ruby, php, perl, bash, matlab | ||
* functional programming languages | ||
* lisp, scheme, haskell | ||
* web based languages: | ||
* html/css/javascript, elm, coffeescript | ||
* different | ||
* SQL, VHDL | ||
* AVOID AT ALL COSTS: | ||
* languages not open source, swift, objective c | ||
|
||
* resumes are not important | ||
* what is your portfolio? | ||
* what have actually done/built? | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#define MKSTRUCT(x,y) \ | ||
struct y \ | ||
{ \ | ||
x *a; \ | ||
} | ||
|
||
MKSTRUCT(char,C_char); |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
template <typename T=char> class C { T a; }; | ||
|
||
|
||
|
||
int main() | ||
{ | ||
C<> a; | ||
return 0; | ||
} | ||
|