Test Snippet

Tags:
code, css, snippet
Posted by:
Chris Rault about 1 year ago

Testing out the code snippets.

/* advert 1,2,3 positions
***************************************/
#advert1 h3,
#advert2 h3,
#advert3 h3 {
border-bottom: 3px solid #24373c;
font-size: 1.4em;
font-weight: normal;
line-height: 23px;
margin-bottom: 6px;
}

aaa

Tags:
a
Posted by:
Radhika Patil about 1 year ago

aa

aaaa

s

Tags:
s
Posted by:
Radhika Patil about 1 year ago
ss

Test

Tags:
test
Posted by:
Radhika Patil about 1 year ago

TEST

aaaa

Matlab terminate

Tags:
Matlab
Posted by:
Scott Cook about 1 year ago

call to terminate MatLab

mclTerminateApplication()

matlab init

Tags:
Matlab, JVM
Posted by:
Scott Cook about 1 year ago

Initialize Matlab w/o JVM

    const char *ops = "-nojvm";  // disable jvm

    m_bInitComplete = mclInitializeApplication(&ops, 1);

c++ Derivation

Posted by:
Ping Yu about 1 year ago
class Base {
public:
  int a,b;
};

class Derived : public Base {
public:
  int c;
};

int main() {
  Derived d;
  d.a = 1;    // Base::a
  d.b = 2;    // Base::b
  d.c = 3;    // Derived::c
}