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
| #include <stdlib.h> | |
| #include <iostream> | |
| class A { | |
| public: | |
| A() { | |
| std::cout << "A ctor" << std::endl; | |
| } | |
| ~A() { |
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
| [alias] | |
| amend-message = "!bash -c ' \ | |
| c=$0; \ | |
| if [ $c == \"bash\" ]; then echo \"Usage: git amend-message <commit>\"; exit 1; fi; \ | |
| saved_head=$(git rev-parse HEAD); \ | |
| commit=$(git rev-parse $c); \ | |
| commits=$(git log --reverse --pretty=format:%H $commit..HEAD); \ | |
| echo \"Rewinding to $commit...\"; \ | |
| git reset --hard $commit; \ | |
| git commit --amend; \ |
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
| #!/usr/bin/ruby | |
| module Kernel | |
| def method_missing(sym, *args, &block) | |
| s = sym.to_s | |
| if s.length > 2 && s[0,2] == 'jt' | |
| real_name = s[2..-1] | |
| send(real_name.to_sym, *args, &block) | |
| end | |
| end |
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
| #include <iostream> | |
| using namespace std; | |
| class A { | |
| public: | |
| A(int val) : m_val(val) {} | |
NewerOlder