June 6 - 22, 2012 Open Source Summer School
Differences

This shows you the differences between two versions of the page.

Link to this comparison view

participants:ioan-stan [2012/06/11 23:36]
istan
participants:ioan-stan [2012/06/11 23:45] (current)
istan
Line 1: Line 1:
 = Ioan-Mihail Stan = = Ioan-Mihail Stan =
-{{:participants:dscf2978.jpg?300}} 
  
-* **Nume complet**: Stan Ioan-Mihail+{{ :participants:dscf2978.jpg?350|}} 
 + 
 +* **Nume complet**: Stan Ioan-Mihail                                
 * **Alias-uri**: John * **Alias-uri**: John
 * **Data/Locul naşterii**: 7 iunie 1992, Bucureşti * **Data/Locul naşterii**: 7 iunie 1992, Bucureşti
Line 54: Line 55:
  
  
-some piece of code+Tema 3 USO:
 <code> <code>
-void Queue&lt;T>::enqueue(struct proces&lt;T&gt; e) +#!/bin/bash 
-{ +#Stan Ioan-Mihail 
- this-&gt;queueList.addLast(e)+#311 CA 
-+ 
-template &lt;typename T&gt+cd $1 
-struct proces&lt;T&gtQueue&lt;T&gt;::dequeue() +git checkout master &amp;> /dev/null 
-+ 
- struct proces&lt;T&gtx+#task 1 
- x.pid this -&gtqueueList.pFirst -&gtvalue.pid+#comenzile imi afiseaza toate linile unde apare cuvantul Author ; separ dupa delimitatorul " " -spatiu in coloane astfel de la 2 pana la final de linie mi se vor afisa practic numele + mailurile autorilor de commituri (apelul functiei cut ), nume pe care le sortez corespunzator si carora le numar aparitiile ( sort | uniq -c | uniq -g -r ) 
- x.timp_aparitie this -&gtqueueList.pFirst -&gtvalue.timp_aparitie+if test  $2 = &quot;-n&quot ; then 
- x.durata this -&gtqueueList.pFirst -&gtvalue.durata+ if test $4 = "top_contributors" ; then 
- x.prioritate this -&gtqueueList.pFirst -&gtvalue.prioritate+ git log | grep "Author:" | head -$3 |sed -'s/^[ \t]*//'| cut -n -d ' ' -f 2- | sort | uniq -c | sort -g -r | head -$5 
- this -&gtqueueList.removeFirst()+#in cazul in care nu exista argumentul 5 ($5) head - va afisa toate liniile fisierului astfel punctez doua situatii posibile ( cand sunt trimisi 4 sau 5 parametrii )  
- return x+#exista posibilitatea ca path-ul unui fisier sa fie deplasat spre dreapta cu delimitatorii tab sau space; pentru a lua in considerare acea situatie am apleat la functia sed  
-  + fi 
-}+elif test $2 = "top_contributors" ; then 
 + if test $# -eq 3 ; then 
 + git log| grep &quot;Author:"|sed -'s/^[ \t]*//'| cut -n -d ' ' -f 2- | sort | uniq -c | sort -g -r |head -$3  
 + fi 
 +fi 
 +#task 2 
 +#caut liniile care incep cu caractere numerice din statistica numstat a git log-uluicaut practic fisierele dupa statistica insertions 
 +if test $2 = "-n" ; then 
 + if test $4 = "added_lines" ; then  
 + if test $# -eq 5; then 
 + git log -$3 --numstat | grep ^[0-9] | tr "\t" " " | grep " $5" | cut -f 1 | awk '{contor+=$1} END {print contor}' 
 +#exista posibilitatea ca un fisier cautat intr-o lista cu grep sa se gaseasca in 2 ierarhi de foldere diferite astfel pentru a gasi exact path-ul cerut schimb tab-urile cu spatii si caut exact folderul cerut punand un spatiu inainte de nume  
 + else 
 + git log -$3 --numstat | grep ^[0-9] | cut -f 1 | awk '{contor+=$1} END {print contor}' 
 +#functia awk imi va aduna tot ce se gaseste pe coloana 1 din &quot;fisierul&quotcreat din succesiunea de pipe-uri 
 + fi 
 + fi 
 +else 
 + if test  $2 = &quot;added_lines&quot; then 
 + if test $# -eq 3; then 
 +                        git log --numstat | grep ^[0-9] |tr &quot;\t&quot" " | grep " $3" | cut -f 1 | awk '{contor+=$1} END {print contor}' 
 +         else 
 +                        git log --numstat | grep ^[0-9] | cut -f 1 | awk '{contor+=$1} END {print contor}' 
 +  
 +                fi 
 + fi 
 +fi 
 +#task 3 
 +#realizez statistici dupa coloana deletions din statistica numstat 
 +if test $2 = &quot;-n&quot; ; then 
 + if test $4 "deleted_lines" ; then  
 + if test $# -eq 5; then 
 + git log -$3 --numstat | grep ^[0-9] |tr &quot;\t" " " | grep " $5" | awk '{print $2, $1, $3}' | cut -&quot"-f 1  | awk '{contor+=$1} END {print contor}' 
 + else 
 + git log -$3 --numstat | grep ^[0-9] | awk '{print $2, $1, $3}'| cut -d " " -f 1  | awk '{contor+=$1} END {print contor}' 
 +#prima functie awk imi interschimba coloane 
 + fi 
 + fi 
 +else 
 + if test  $2 = "deleted_lines" ; then 
 + if test $# -eq 3; then 
 +                        git log --numstat | grep ^[0-9] | tr &quot;\t" " " | grep " $3" | awk '{print $2, $1, $3}' | cut -&quot"-f 1  | awk '{contor+=$1} END {print contor}' 
 +  
 +                else 
 +                        git log --numstat | grep ^[0-9]|tr "\t" " " | awk '{print $2, $1, $3}'| cut -d " " -f 1  | awk '{contor+=$1} END {print contor}' 
 + fi 
 + fi 
 +fi 
 +#task 4 
 +#statistica numstat a git log imi afiseaza toate fisierele modificate in vreun fel; liniile cu path-ul fisierelor sunt cele care incep cu caractere numerice sau - ; wc -l numara liniile dintr-un fisier 
 +if test $2 = &quot;-n&quot; ; then 
 + if test $4 "touched_files" ; then  
 + if test $# -eq 5; then 
 + git log -$3 --numstat --author=&quot;$5" | grep ^[0-9-] | cut -f 3 | sort | uniq | wc -l 
 + else 
 + git log -$3 --numstat | grep ^[0-9-] | cut -f 3 | sort | uniq | wc -l 
 +  fi 
 + fi 
 +else 
 + if test  $2 = &quot;touched_files"; then 
 + if test $# -eq 3; then 
 +                        git log --numstat --author=&quot;$3" | grep ^[0-9-] | cut -f 3 | sort |uniq | wc -l 
 +                else 
 +                        git log --numstat | grep -E ^[0-9-] | cut -f 3 | sort | uniq | wc -l 
 +                fi 
 + fi 
 +fi 
 + 
 +#task 5 
 +#git log branch1..branch2 afiseaza commiturile din branch-ul 2 care nu se gasesc in primul 
 +if test $2 = "diff_branches" then 
 + echo "Commits only in branch $3:"
 + git log $4..$3 --oneline |  cut -d " " -f 2- 
 + echo 
 + echo "Commits only in branch $4:" 
 + git log $3..$4 --oneline |  cut -d " " -f 2- 
 +fi 
 </code> </code>

OS

Calendar
  • June 6-7: welcoming and intro from UPB Summer School
  • Friday, June 8: intro of OSSC: presentation of people involved, curriculum, projects, selection of projects
  • June 11-15, 18-21: presentations and hackathons
  • Friday, June 22: presentation of project outcomes, diplomas and prizes, closing
Powered by

CS

ROSEdu

Systems

Sponsori

Adobe

EDW

Google