PLC PLC!

Session 1 – Introduction

  • Acronym of Hypertext Preprocessor
  • Created by Rasmus Lerdorf in 1994
  • Often related with web development
  • HTML-embedded scripting
  • Many syntax derived from C, Java, Perl.
  • Website : https://secure.php.net/
  • The benefit of using PHP:
    • It’s free
    • Easy yet efficient
    • Dynamic
    • Runs on many platforms
    • Compatible with most recent servers
    • Supports variety of databases
    • Very secure
  • PHP abilities:
    • Generate dynamic page content
    • Manipulate files on servers
    • Manipulate data in database
    • Send and receive cookies
    • Can control user-access
    • Encrypt data
  • A lot of websites use PHP, such as facebook, tumblr, Wikipedia, wordpress, google, digg, etc.

 

Session 2 – Language, Syntax, Semantics

  • Syntax : form / arrangement of sentences
  • Semantics : meaning of sentences
  • The terminology:
    • Token : Classification of lexeme
    • Lexeme : Symbols or set of characters
    • Pattern : Rule for Lexeme to be in Token
  • To initiate the PHP, it can be done in two ways:
    • In a separate file, which force server to parse and run html as php script
    • Inside HTML, which is usually between body tag. The tag to open and close php is:
      • Canonical (<?php … ?>)
      • Short-open (<? … ?>)
      • HTML Script (<script language=”php” … ?>)
      • ASP-Style (<% … %>)
      • Script tag and ASP-style tag has been removed from php since php7
    • Syntax rule in php:
      • Always end with a semicolon ( ; )
      • User defined functions, classes, core languages are case-insensitive
      • Variables are no exception case-sensitive
      • Whitespace insensitivity
    • Comment syntax
      • Single line (using // or #)
      • Multi line (using /* … */)

Session 3 – Variable

  • Etymology : Latin word variābilis (able to change)
  • In programming, is a storage location for an information (value)
  • Six important properties
    • Name
      • Represents the title of the information in the variable, symbolic
      • In PHP, there’s no limit in length
      • Suggested that every variable should have an unique name
    • Type
      • Represents what kind of data stored within the variable.
      • Data type includes:
        • String
        • Integer
        • Float / Double
        • Boolean
        • Array
        • Object
        • NULL
        • Resource
      • Value
        • A variable value changes over time
        • Value in variable should be declared
        • Else, default value will be used (depends on the language used)
      • Scope
        • A context within which It is defined.
        • Three different variable scopes:
          • Global
            • A variable stated can be used in any part of the program
            • Usually declared outside a function
            • Ways to access global variables
              • Call it the way like usual
              • In a function:
                • Use global keywords
                • Use $GLOBALS[] array
              • Local
                • A variable stated can be used ONLY in a relevant function.
                • Declared in a function
                • Way to access it is by calling the function
              • Static
                • A local variable will lose its value after a function is executed or leaves the scope
                • To prevent this from happening, we use static scope
                • By using static keyword
              • Lifetime
                • The period in which the variable or object has valid memory
                • Three types of lifetime
                  • Static
                  • Automatic
                  • Dynamic
                • Location (memory)
                  • Variable and its value contained in variable will be stored by the compiler
                  • Different data type uses different memory size
                • Tips on declaring variable
                  • Often in programming language, declaring a variable must starts with a letter
                  • Using number in variable naming is allowed
                  • A variable name can’t have space nor special character
                  • In substitute of space, use underscore ( _ )
                  • Depends on the situation, declare the name wisely.
                • Variable declaring in PHP:
                  • Always starts with $ followed by the name
                  • Name must start with a letter or the underscore (thus means, can’t start with a number)
                  • Name only contain alpha-numeric characters and underscore (no special character)
                  • Case Sensitive
                  • No need to declare data type

 

Session 4 – Data Type

  • In PHP, the supported data type are:
    • String
      • A sequence of characters
      • A string can be any text inside quotes
      • Can use single or double quotes
    • Integer
      • Non-decimal number
      • Range between – 2,147,483,648 and 2,147,483,647
      • Rules for integer:
        • An integer must have at least one digit
        • An integer must not have a decimal point
        • An integer can be either positive or negative
        • Integers can be specified in three formats: decimal (10-based), hexadecimal (16-based – prefixed with 0x) or octal (8-based – prefixed with 0)
      • Float (floating point numbers – also called double)
        • Number with a decimal point or a number in exponential form
      • Boolean
        • Represents two possible states : TRUE or FALSE
      • Array
        • An array stores multiple values in one single variable
        • It can be one-dimension, two-dimension, or even more, by adding the needed indices
      • Object
        • An object is a data type which stores data and information on how to process that data.
        • Must be explicitly declared
        • It is necessary to declare a class of object
      • NULL
        • A special data type which can only have one value, which is NULL
        • Is a variable that has no value assigned to it
      • Resource
        • The special resource type is not an actual data type. It is the storing of a reference to functions and resources external to PHP.
        • A common example of using the resource data type is a database call.

 

Session 5 – Expression & Assignment

  • Arithmetic Expressions
    • Consists of mathematical equations, following the rule PEMDAS.
    • Based on its number of operands:
      • Unary has one operand
      • Binary has two operands
      • Ternary has three operands
    • Binary expression can be combined with ternary
  • Type Conversions
    • Consists of narrowing and widening
      • Narrowing, if the data type cannot include all the value of the original type
        Ex: float to int
      • Widening, if the data type can include all the value of the original type
        Ex: int to float
    • Explicitly can be done, in PHP, by using this syntax:
      <var1> = <datatype>(<var2>);
  • Relational Expressions
    • Consists of relational operators, such as
      • Equal ( == )
      • Not equal ( <> )
      • Bigger than ( > )
      • Smaller than ( < )
    • The result is in boolean (1 / 0)
  • Logical Expressions
    • Consists of logical operators, such as
      • And ( && )
      • Or ( || )
      • Xor
      • Not ( ! )
      • ( && || ) has a higher priority on precedence than ( and or )
    • Bitwise Expressions
      • Consists of bitwise operators, such as
        • & (and)
        • | (or)
        • ^ (xor)
        • ~ (not)
        • << (shift left)
        • >> (shift right)
      • Assignment Statement
        • Usually done by following this syntax:
          <var> <assign_op> <exp>
        • In PHP, we use equal sign ( = ) as our assign operator.
        • Assigning value can be done in unary, binary, and ternary.
        • Multiple assignments in PHP are possible.

 

Session 6 – Control Structure Statements

  • By definition, it’s a control statement and the statements whose execution it controls
  • Divided into two
    • Selection statements
      • Executes a group of statement if and only if one requirement is met.
      • Divided into :
        • Two-way selection statements
          • Uses if else variations:
            • If … then … (If)
            • If … then … else … (If else)
          • Syntax in PHP :
            if (condition)

{statements if condition(s) are met;}
else {statements if condition(s) are not met;}

  • The difference between if and if else statement is that when the conditions are not met, if statement will just break from the selection. This also can be done in if else statement by using break; as their output when the condition are not met
  • In some language, they use then after if (VB.net, for example)
  • Multiple-way selection statements
    • Uses switch case and if elseif else statement
      • If … then … elseif … else … (if elseif else) has a similar syntax to if else.
      • Switch case lists all possible value of a variable (generally programmer-defined) and executes the statement contained only if the value matches.
      • Syntax for if elseif else

if (condition) {

code to be executed if this condition is true;

} elseif (condition) {

code to be executed if this condition is true;

} else {

code to be executed if all conditions are false;

}

  • It is possible to add more elseif, thus adding more and more ways.
  • Syntax for switch case

switch (n) {

case label1:

code to be executed if n=label1;

break;

case label2:

code to be executed if n=label2;

break;

case label3:

code to be executed if n=label3;

break;

default:

code to be executed if n is different from all labels;

}

  • Iterative statements
    • Technically speaking, it’s a loop (repeating action)
    • Divides into:
      • Counter-controlled loop
        • Using counter as a condition
        • Also known as “for”
        • Syntax:
          for (init counter; test counter; increment counter) {
          code to be executed;
          }
          desc : init for initialization (var. starting value)
          test counter : condition of the counter to be met to repeat
          increment counter : increase the loop counter value. Note that using decrement is also possible.
      • Logically controlled loop
        • Pretest execution
          • The conditions are done before condition checking and repeat if the condition(s) are met.
          • Known as “Do While”
          • Syntax :
            do {
            code to be executed;
            } while (condition is true);
        • Posttest execution
          • The conditions are done after condition checking and repeat if the condition(s) are met.
          • Known as “While”
          • Syntax :
            while (condition is true) {
            code to be executed;
            }
        • The difference between pretest and posttest execution is that pretest execution executes the statement(s) AT LEAST once, while posttest execution may not executes at all. This is caused by the time of condition checking.
      • It is possible for these statements to be nested, that is, a compounded statement inside a statement.

 

Session 7 – Subprograms

  • By definition, is a part of a whole program that can work semi-independently.
  • To activate the subprogram, the main function has to call the subprogram.
  • Has three characteristics:
    • Each has a single entry point
    • There can be only one subprogram executed at any given time
    • When the subprogram terminated, it returns a value to the caller
  • In php, the syntax is:
    • To declare
      function funct_name(parameter)
      {instructions go here, between the braces }
    • To call
      funct_name(parameter)
  • Variable in a subprogram
    • Its local is scope
    • Its lifetime is limited only during the execution of the subprogram
    • It is possible to make the variable in a subprogram has a global scope by adding global keyword (in PHP)
  • Local Referencing Environments
    • Can be stack-dynamic
      • Advantages
        • Support for recursion
        • Storage for locals is shared among some subprograms
      • Disadvantages
        • Allocation/de-allocation, initialization time
        • Indirect addressing
        • Subprograms cannot be history sensitive
      • Can be static, with its advantages and disadvantages are the opposite of stack-dynamic’s
    • Parameter-Passing Methods
      • Has three semantic models
        • In mode : Receive data from the corresponding actual parameter
        • Out mode : Transmit data to the actual parameter
        • In-out mode : Combination of in mode and out mode
      • Ways of transmitting data has two conceptual models
        • Physically move the actual value
        • Transmit the access path (usually pointer)
      • Pass by Value
        • The value of the actual parameter is used to initialize the corresponding formal parameter, which then acts as a local variable of the subprogram
        • Needs additional storage for the formal parameter
      • Pass by Result
        • No value transmitted to the subprogram
        • The value is transmitted back to the caller’s actual parameter before the control is transferred back to the caller
        • May cause parameter collision to one another
      • Pass by Value Result
        • Combination of pass by value and pass by result
        • Has a disadvantage of both passing method mentioned
        • The actual values are copied, unlike pass by result. Hence, the name pass by copy is also known for this passing method
      • Pass by Reference
        • Transmits an access path to the called subprogram, usually an address
        • More efficient in both time and space
        • Disadvantages:
          • Access to formal parameters are slow
          • Inadvertent and erroneous changes may be made to the actual parameter
          • Aliases can be created
        • Pass by Name
          • The actual parameter is textually substituted for the corresponding formal parameter in all its occurrences in the subprogram
          • A formal parameter is bound to an access method at the time of the subprogram call, but the actual binding to a value or an address is delayed until the formal parameter is assigned or referenced
          • Not used in any widely used language
        • Subprogram Name as Parameter
          • Occurs if nested subprogram happens
          • Three referencing environment:
            • Shallow binding : It’s the environment of the call statement that enacts the passed subprogram
            • Deep binding : It’s the environment of the definition of the passed subprogram
            • Ad hoc binding : It’s the environment of the call statement that passed the subprogram as an actual parameter (has never been used)
          • Overloaded Subprograms
            • Is a subprogram that has the same name as another subprogram in the same referencing environment
            • If overloaded subprogram occurs, it must have an unique protocol (parameters and the return value)
          • Generic Subprograms
            • Generic (polymorphic) subprogram takes parameters of different types on different activations
            • Overloaded subprograms provide ad hoc polymorphism
            • A subprogram that takes a generic parameter that is used in a type expression that describes the types of the parameters of the subprogram provides parametric polymorphism
          • Control State
            • Closure is basically a subprogram with some variables that persist between function calls
            • Coroutine is a subprogram that save control state between calls

 

Session 8 – Abstract Data Type

  • An abstraction is a view or representation of an entity that includes only the most significant attributes
    • The representation of objects of the type is hidden from the program units that use these objects, so the only operations possible are those provided in the type’s definition
    • The declarations of the type and the protocols of the operations on objects of the type are contained in a single syntactic unit. Other program units are allowed to create variables of the defined type.
  • The concept of abstraction is fundamental in programming (and computer science)
  • Nearly all programming languages support process abstraction with subprograms
  • Nearly all programming languages designed since 1980 support data abstraction
  • The Advantage of Data Abstraction:
    • Advantages the first condition
      • Reliability–by hiding the data representations, user code cannot directly access objects of the type or depend on the representation, allowing the representation to be changed without affecting user code
      • Reduces the range of code and variables of which the programmer must be aware
      • Name conflicts are less likely
    • Advantages of the second condition
      • Provides a method of program organization
      • Aids modifiability (everything associated with a data structure is together)
      • Separate compilation
    • In PHP, this can be done by making class abstraction or methods
      • Classes defined as abstract may not be instantiated, and any class that contains at least one abstract method must also be abstract
      • Methods defined as abstract simply declare the method’s signature – they cannot define the implementation

 

Session 9 – Object-Oriented Programming

  • Three major language features:
    • Abstract data type (Session 8)
    • Inheritance
      • Productivity increases can come from reuse
      • ADTs are difficult to reuse—always need changes
      • All ADTs are independent and at the same level
      • Inheritance allows new classes defined in terms of existing ones, i.e., by allowing them to inherit common parts
      • Inheritance addresses both of the above concerns–reuse ADTs after minor changes and define classes in a hierarchy
Read Users' Comments (0)

HTTP HTTP HTTP!!

1473512222575

Hallo guyss~ jadi hari ini gw mau ceritain pengalaman gw di HTTP kemaren! Sebelumnya gw kasih tau dulu deh HTTP tuh apa. Jadi HTTP itu acara tahunan dari HIMTI a.k.a Himpunan Mahasiswa Tehnik Informatika yang diadain sama mereka buat menyambut anak anak baru di SoCS nya Binus dengan berbagai macam acara acara yang menarik (katanya).

Oke langsung aja jadi kemaren hari sabtu gw dateng ke kampus jem 6 pagi karena gw dpt bus shift 6.45 dimana gw kagum ternyata bus nya enggak ngaret! Jadi pas sampe kita langsung disuruh absen dengan meng input NIM kita di laptop  yang disediain sama kakak kakak dari HIMTI dan kemudian kita dikasih liat application showcase buatan anak anak binus , jujur gw gak nyobain semua karena gw cuma asal mencet mencet dan berharap menemukan bug namun sayang gw gak berhasil menemukannya 🙁 , di application showcase itu yang paling rame adalah booth dimana kita bisa nyobain Virtual Reality! gw gak nyobain sih karena terlalu rame dan kita udah keburu disuruh masuk.

Yak acara dimulai ! Seperti biasa kita disambut sama MC nya dan sponsor sponsor dan lagi lagi pengenalan para petinggi petinggi kampus binus yang memakan waktu sekitar 20 menit dan juga membuat semua mahasiswa disana komplain komplain karena gak sabar pengen cepet cepet mulai acara~ ( gua juga ). Abis selese pengenalan kita langsung disuguhi nyanyian solo dari HIMTI (kayaknya) dan jujur aja suara nya lumayan bagus tapi gak sebagus suara Bisuk ( temen gw pas SMA). Abis denger nyanyian kita ada lagi sesi talkshow sama alumnus binus yang ngajarin kita gimana sih membuat inovasi dan tips tips buat kuliah di binus dengan harapan kita semua sukses perkuliahan dan dunia kerja (amin). Yak akhirnya makan siang! (makan siang nya gak enak btw 🙁 )

Abis makan siang kita nontonin drama dari HIMTI yang jujur aja buat gw gak terlalu menarik (mungkin buat yang lain bagus tapi buat gw engga) yah intiny dari drama itu tuh ngasih tau kita gimana sih rasanya jadi CAVIS HIMTI dan kerja di HIMTI tuh gimana. Abis ini tuh kalo gak salah ada break lagi dan kita makan di Rooftop nya gedung BPPT intinya disana tuh seru seruan aja sama temen temen (Kita juga selfie sambil ada yang kayang loh guys!).

Sesi terakhir dari HTTP tuh DJ tapi DJ nya pake laptop aja 🙁 gw gak kuat ikutan guys pusing! Dah abis DJ acara selesai dan pulang!

Read Users' Comments (0)

Hari – Hari AO Yang Menyenangkan :)

Day  1 : Senin – 5 – Septemer – 2016

Sebut aja ini hari pertama gw AO dimana jadwalnya jem 7 pagi dan gw semaleman gak bisa tidur gara-gara baper akibat menyadari bahwa liburan sudah usai dan akan memulai lagi kehidupan baru di kampus yang berbeda dengan kehidupan di sekolah 🙁

Jadi singkat aja sesi 7-11 itu di Auditorium yaitu ngebahas basic algorithm,apa sih algorithm itu dan bla-bla. Apesnya ada di belakang gw sekelompok cewek yang ngobrol dari awal sesi sampe selese sesi gak selese selese dan kalo boleh jujur gw lebih ngerti omongan mereka dibandingin dosen  nya 🙁

Setelah sesi di auditorium gw lanjutin sesi di kelas kecil yah ngebahas reading,writing,presentasi,dan kawan kawannya gak banyak yang bisa diceritain karena sesi ini memang datar datar aja. Waktu menunjukan pukul 5 sore waktunya pulang

Oh iya gw jg inget kalo ternyata AO di kasih tugas juga dan nanti ada ujiannya 🙁 #RIPMyPeacefullAODays

 

Day 2: Rabu – 7 – September – 2016

Jadi sesi hari ini kita cuma ngebahas kurikulum di auditorium,seperti biasa masuk auditorium nya ngaret lagi dan mesin tapping nya tidak berfungsi dengan baik yang akhirnya bikin macet. Jadi di sesi ini gua bener bener dengerin dengan baik apa yang dijelasin oleh pembicara dengan harapan gw mendapat pencerahan apa aja yang nanti aja gw bakal pelajarin selama 4 taun di bangku kuliah , so far dari sesi ini gw dapet banyak banget pencerahan dan gw gak bingung lagi nanti gw pelajarin apa aja 😀

 

Day 3 : Kamis – 8 – September – 2016

Hari ini kita belajar algoritma guys dan jujur aja semaleman gw ngebacain resources nya yang ada di binus maya gw gak ngerti apa apa :(. Untungnya dosen ny menjelaskan dengan baik walaupun sangat disayangkan dia pelit banget sama suaranya,gw duduk di paling depan aja masih ga terdengar jelas omongan dia :(.

Singkat aja di sesi ini tuh kita belajar Pseudo code dan simple algorithm dimana karna masih pertemuan pertama gw masih belum terlalu nangkep 🙁 (sampai blog ini ditulis gw masih merenungkan ajaran pak dosen). Curhat dikit aja yah jadi setelah belajar tadi gw malah takut kalo gw fail di kuliah nanti :(.

 

Day 4 :  13 – September – 2016

hari ini apa ya..gak tau sih gw..yang gw inget hari ini cuma coding coding coding 🙁

Day 5 :  14 – September – 2016

Hari ini akhirnya kita gak coding lagi tpi kita pengenalan sama dunia komputer heheheheh. tapi yang paling gw inget ya hari ini ada presentasi gitu.

Day 6 :  15 – September – 2016

Kita ujian coding hari ini..dan jujur aja gw ngerasa down hahahah.

gak cuma coding ada soal essay nya juga yang yah..bikin cape nulis 🙁

setelah ujian kita kenalan jg sama dosen pembimbing kuliah kita.

itu aja sih buat hari ini XD

Read Users' Comments (0)

Kisah-Kisah FEP 2020 :D

102266

Hi guys. Gw Ari dari jurusan Teknik Informatika. gw sekarang bakal  berbagi pengalaman FEP yang baru aja gw lewati. Tapi pastinya, berikan gw kesempatan buat jelasin apa sih FEP itu . Menurut kamus gw, FEP itu program khusus buat maba dari Binus Univeristy  yang tujuannya buat ngenalin kita fasilitas di binus kayak UKM,Support Center dan lain lain yang buat gw itu ajaib. FEP ada 3 bagian (kalo gw gak salah inget ya) , yaitu GO, General Orientation, Inagurasi(Peresmian),AO, Academic Orientation (2 Minggu kurang sih sebenernya LOL), dan CLO, Campus Life Orientation. Sekarang lanjut aja ngebahas FEP FEP yang sudah gw lewati ini. 😀

General Orientation (GO)

Day 1 : 1 agustus 2016

Jadi,ini hari pertama gw jadi maba di binus. Jujur aja pas pertama kali dateng ke binus gw dateng kepagian (jem 7 pagi guys,yap kalian gak salah baca) karena terbiasa jadi anak teladan di sekolah dengan selalu datang lebih pagi dari jam yang diharuskan :p. Gw inget banget gw pake kaos item celana item sepatu item semuanya serba item untungnya gw gak item juga :D. Nyampe di kampus Syahdan yang jelas gw lakukan pertama kali adalah gw tersasar dan setelah berkeliling 12 menit akhirnya gw menemukan satpam yang cukup baik mengantarkan gw ke kelas gw (jujur gw ud lupa kelas gw dimana). Singkat cerita akhirnya gua masuk kelas dan disambut oleh BC yang surprisingly itu ternyata cowo semua dan setelah gw melihat sekeliling kelas gw,gw hanya menemukan 4 cewe dikelas gw,YAP 4 CEWE GUYS! Gw lgsg merasa wah ini kelas gersang bener :(.

Kalo gak salah kita pertama tama kenalan dlu lah satu satu ,BC nya juga,seperti biasa hari pertama semuanya masih alim alim (busuknya belum keluar). Kalo gak salah inget terus kita ada games dari BC yang menurut gw absurd abis. Kemudian kita juga nerima binder FEP yang ternyata isinya banyak banget kartu kartu yang isinya itu info info binus yang Eye-Catchy banget (*tepuk tangan buat designer nya :D*) dan dilanjuti oleh penjelasan beragam kegiatan FEP yang akan kita jalani selama seminggu kedepan , apa aja yang harus kita bawa , seragam kita yang harus dipake seminggu kedepan. Yah gak lama lama banget karena setelah bincang bincang singkat kita balik kerumah~

 

Day 2 : 2 agustus 2016

Gw tiba di binus Syahdan seperti biasa kepagian maklum anak teladan. Hari ini kalo gak salah adalah  sesi Binusian Journey .  Di sesi ini kita dijelaskan sama BC kita yang cowo semua dan enak dipandang itu mengenai semua materi yang ada di binder kita. Well, jujur aja hari ini singkat banget. Ketika materi udah selesai dijelaskan, kita mengisi waktu yang tersisa (baca= waktu lebih)  dengan pelatihan mars binus dan mars binusian.Setelah tenggorokan sakit dan otak keram karna kesulitan menghapal mars binus dan mars binusian  kita dipersilahkan pulang ke rumah.

 

Day 3: 3 agustus 2016

Jadi hari ini kalo di jadwal kita masuk jem 9 dan seperti biasa gw dateng lagi jem 7 karena gw takut telat :(. Jadi menurut buku panduan dan jadwal yang disediain binus hari ini kita bakal dijelasin gimana sih perkuliahan di binus,ujian,dan registrasi . Sejujurnya yang gw bener bener merhatiin dari hari ini itu cuma satu yaitu aturan ujian di binus yang ternyata ribet banget pake acara harus print KMK 🙁  (duh gw jadi kangen kalo ujian di sekolah tuh tinggal bawa diri dan mental aja 😀 ) anyway hari ini cuma 2 jem jadi gak terlalu berasa lah 🙂

 

Day 4: 4 agustus 2016

Hari ini ketika gw liat jadwal dan gw menyadari bahwa hari ini pulang sore yaitu pukul 17.00 gw merasa sangat sedih 🙁 dan masuknya juga pagi dimana gw masih setengah sadar berangkat ke binus. Sesi pertama kita belajar menggunakan binus maya yang baik dan benar! Jujur aja secara kita gak mau lama lama dan penasaran dengan coding mengcoding ( siapa tau abis belajar coding doi bisa peka ? ) BC kita menjelaskan dengan singkat jelas dan sangat padat (Jadi cuma dijelasin apa aja sih yang harus kita perhatiin dan bakal sering kita pake di binus maya itu).

Selanjutny ada sesi Binus way yang dibawakan oleh rektor binus itu sendiri! dimana gw punya perasaan “Wah rektor nih pasti orangnya killer galak galak sensian gitu!” dan ternyata dugaan gw salah total dimana ternyata Rektor binus itu orangnya fun banget dan penyampaian materi oleh beliau mudah banget dimengerti (Kata beliau sih dia main pokemon go juga ,tpi gua memutuskan untuk gak percaya)

Abis Binus Way ada sesi Bunga Rampai kalo lo pada bingung apa itu bunga rampai?gw jelasin singkat aja Bunga Rampai itu saatny para UKM binus show show perform gitu lah kelebihan mereka apa aja dan jujur aja banyak banget gw sampe galau mikirin mau ikut UKM apa , dan gw sampai doa ke yang Maha Kuasa biar dibukakan jalan  🙁 menurut gw sendiri ini sesi paling fun soalnya kita bener bener dikasih performance yang gak nanggung nanggung contohnya grup padus binus “Buset deh nadanya gak ada yang nyasar sedikitpun” Tapi jelas UKM paling heboh disini itu B-Voice gak bisa lupa deh gw hebohnya mereka,tapi sayang aku menambatkan hatiku pada BNCC 🙂 .

 

Day 5: 5 agustus 2016

Hore hari kelima GO artinya satu hari lagi dimana gw bisa bangun siang lagi 🙁 . Hari ini kita digiring kakak BC kita ke ruang dimana kita milih almamater gitu dan gw merasa bahagia gw bisa make ukuran XL 😀 ( My Greatest Achievment  so far 😀 ) abis almamater kita masuk kelas lagi dengan sesi Sukses Kuliah & Aturan Tata Tertib Kehidupan Kampus yah simpel aja ini sesi cuma dikasih wejangan wejangan gimana caranya nanti lu pada bisa sukses dan tata tertib binus dari narasumbernya cuma satu : Gak usah aneh aneh deh di binus pasti sukses!.

Gak lupa juga ada sesi Kerohanian secara jujur aja gw orangny gak terlalu religius jadi sesi ini gw gak bisa ngomong banyak 🙁

Oh iya sebelum pulang kita juga sempet latian yel yel juga loh buat acara kebersamaan 😀

 

Day 6: 6 Agustus 2016

Jadi hari ini kita nampilin tuh yel yel  yang kita uda buat yah walaupun kelas gw pada lupa lirik 🙁 tapi so far gw cukup menikmati sesi ini karena yel yel dari kelas lain gak kalah hebohny. Literally i LOLed so hard during this session 😀

Abis kebersamaan sampailah kita di sesi terakhir yaitu EXPO , kita dibawa keliling kampus sama BC kita yang baik hati buat liat liat kelas kelas pada UKM bernaung sekalian juga kita daftar daftar ke UKM dimana kita menambatkan hati kita 😀 so far acaranya seru karena ada aja konser atopun dance dance yang keren keren. Jujur aja gw tadinya juga mau ikut UKM budaya jepang cuma biayanya mahal 🙁

Setelah EXPO waktunya perpisahan , jadi di perpisahan ini kita buat surat surat buat BC kita yg uda membimbing kita selama 6 hari ini.

Yap EXPO selesai dan gw kembali kerumah ke pelukan guling gw tercinta .

 

Organization Skill

Jadi selama GO BC kita bilang kalo ntr kerja kita gak cuma butuh hard skill aja tapi kita juga butuh softskill yah katanya sih cara melatihnya cukup ikut organisasi aja katanya sih ya kalo softskill itu yang bikin kita keterima kerja sedangkan IPK kita cuma nganterin kita ke tempat interview aja 🙁

 

Inaugurasi / Inagurasi ?

Ini adalah acara peresmian kita sebagai mahasiswa/i di binus yang diadain di JCC *ciyee di JCC* kece banget gak tuh Binus, singkat aja jadi gw dateng ke JCC jem 6 pagi (kepagian lagi) lengkap dengan atribut GO gw dan disana gw sibuk mencari BC gw yang katanya uda jalan duluan ternyata belum sampai (cape dehh) .

Gak butuh waktu lama sebelum kita digiring masuk ke Hall peresmian. Di sesi peresmian mahasiswa ini , kita semua, maba, dilantik secara SAH! menjadi mahasiswa Binus *horeee~* . Setelah pelantikan, kita dimanjain dengan hiburan yang disuguhkan oleh UKM yang bertugas untuk menghibur para maba maga ini . Kalo gak salah inget ada juga performance dari maba binus yang gak kalah bagusnya dari UKM 😀 . Acara ini kalo gak salah selese jem 11 dan gw keujanan sampai rumah 🙁

Read Users' Comments (0)

Hello world!

Welcome to Binusian blog.
This is the first post of any blog.binusian.org member blog. Edit or delete it, then start blogging!
Happy Blogging 🙂

Read Users' Comments (1)