Wednesday, April 9, 2014

Case Formulation Report - Abnormal Psych

For just twenty minutes a year, the world seems like the empty moon. It feels lighter with 1/6th the gravity, like on the moon. I wish the world would freeze like this. So life could be 1/6th lighter. ~ Jung-yeon

Based on the girl main character from the 2009 South Korean movie "Castaway on the Moon."

Contents:
I. Identifying Information and Referral Problem
II. Psychosocial History
III. Medical and Psychiatric History
IV. DSM-IV-TR Multiaxial Axis and DSM-V Diagnostic Criteria and Codes
V. Rationale of Diagnosis
VI. Case Formulation
VII. Recommendation
Citations

Note: The only thing that my professor disagreed on was my diagnosis of Persistent Depressive Disorder (Dysthymia), that the symptoms can be explained by the MC's first two diagnosis - Social Anxiety Disorder (Social Phobia) and Anorexia Nervosa, including her Avoidant Personality Disorder. Avoid over-diagnosis was the advise given to me. I still stand on my diagnosis though. Maybe it just needs better formulation/presentation. Or just ignore that part if you agree with my prof.

Thursday, April 3, 2014

Homo Struct in C

This time I used Syntax Highlighter in posting the code. I still can't decide which is better this or Github. Just check this out for pros and cons. Apparently, SH wins over GH.

//homogeneous structure

#include<stdio.h>


  typedef struct Person {
    char name[100];
    int age_in_years;
    float height_in_cm;
    float weight_in_kg;
    // The pointers have to be of a specific struct type", i.e. the struct name 
    struct Person *mother;
    struct Person *father;
    struct Person *bff;
 } Person;


main() {

  Person mom = {"Emma", 40};
  Person dad = {"Silverio", 45};
  Person bff = {"Lily", 19};
  Person son = {"Hue", 19};
  son.mother = &mom;
  son.father = &dad;
  son.bff = &bff;
  
  
  Person maternal_grandmother = {"Calanday", 90};
  Person maternal_grandfather = {"Melicio", 90};
  Person paternal_grandmother = {"Amada", 90};
  Person paternal_grandfather = {"Manila", 90};
  
  son.mother->mother = &maternal_grandmother;
  son.mother->father = &maternal_grandfather;
  son.father->mother = &paternal_grandmother;
  son.father->father = &paternal_grandfather;
  
  
  
  // To access pointer variables within a struct data typed variable, the -> operator is used. 
  
  printf("Hi, my name is %s. My mother is %s. My father is %s. My BFF is %s.\n", son.name, son.mother->name, son.father->name, son.bff->name);
  
  printf("My grandmothers are %s and %s. ", son.mother->mother->name, son.father->mother->name); 
  printf("My grandfathers are %s and %s.", son.mother->father->name, son.father->father->name);
  
  
}


Wednesday, April 2, 2014

My First Ever GIF, fudge yeah!

I never knew how hard it is to actually make a gif of videos! It took me almost three hours, and I still have issues, the software keeps on crushing, urghh. Even though I've faithfully followed the tutorial here and here.
Making GIF is indeed like what Momiji has said!

I now give my sincerest salute to those who are a master to making GIFs. Now, I'm off to honing my GIFudging-Ninjutsu Technique!

P.S.:
I really believe that Momiji instantly fell in love with Ichiko, as proven in here. I ship them like crazy ~
( ^◡^)っ✂❤Momiji x Ichiko
~Love at first sight, kyah~

File IO Using Main Arguments

First, compile the code. 
Using the command prompt, the first argument is the file name. 
While the second argument is the name of the output file you want.
You may also specify the destination path of the file output on the second argument.

Tuesday, April 1, 2014

Bicycle - the greatest artifact of all time

My beloved bike~
Bicycling makes up a greater part of my childhood memory. Up until now, riding it every now and then helps me relieve all the pressures and worries from school. Just feeling the gush of wind as I ride it makes me feel like flying. Because for me, a bicycle is a better companion than a human person be it for transportation or for leisure purposes. The first-ever bike that I bought using my hard-earned money was my folding bike. It may not be of the “elite” type in terms of quality and design, but my bike has become an extension of me, of my body and senses for through this I can directly experience the realities, the ugliness, the beauty and the mystery of everyone and everything around me.