//started project in slashprog technologies //
monday---------------our sir introduces what are all the modules can be coming in our website
we started our ideas about our website details
who we are ...what we doing for website
in three ways we focus on our site
1) trainers side
2) client side
3) vendors side
tuesday-----------------we discussed what technology we going to be use a little argument whether we use jquery and Dojo
finally we decided with Dojo ...its an powerful opensource tool to develop javascript ajax based
applications Dojo advantage is it is compatible with all modern browsers it even work if javascript
not enabled in client side browsers...as a developer we knowing of just html and javascript is enough
not to know new language ...
wednesday -------------
Our team members are
Rajeswari
Yogesh kannan
rakesh
suresh
Rama chandran
and me
we started learning little about ..Dojo just to create a button and checkbox .....we need to install Dojo
and extract zip/tar file and untar it .....we get the files as dojo,digit,dojox,util these 4 files we save it in
js files so the path will be like this
under that js/digit
js/dojo
js/dojox
js/util
writing an application is easy its simple and straight forward ......
just load the dojo library in javascript
-------------------------------------------------------------------------------------
Thursday
we go through and play around some snippets of code in Dojo ..its fun and interesting we and our team members create some small small applications integrate and
finally created a login page and registration page for trainers module ..
we included the library stackcontainer in dojo to get the diaogue box and we created nearly 6 steps to register the trainers form
------------
Friday
our Sir gave introduction about UI flow diagram we discusses what are all the tools to implement whether code ignitor or CakePHP !
sir said how to play with www.960gs.com
and www.balsamiq.com
www.oswd.org
we discussed how the home page of our website look like the features were we include and disable we discussed
-------------------
saturday
saturday sir told what is mysql and how we connect mysql to php and how to create simple database and
to start mysql
just type mysql; it will start mysql in any
------------------------------------------------------
//****Trainers Home Page ***//
1) client requirements matching his skill
2) calendar
3) Update Profile
4)(client/vendor rate )--confidential
5) visitors
6) news ---< 1) location
2) whether
7)Training Statistics
8) Last minute update
9) Payment History *(Only trainer can view )
10)Share his experience
11)Articles/blog
12)How to colloborate with other trainers ?
13) Approve Client request ---------< 1) through vendor
2) Direct Client
14) Interact with Client/Vendor
----> Invoice
----> Training Prerequisites/resources
----> Feedback
Today we learning some basic exercises in ruby
#programme to find vowels in a file
vowels =%w[a e i o u]
count =0
open("a.txt","r").each do |line|
line.split(//).each do |character|
if vowels.include?character
count +=1
end
end
end
print "no of words #{count}"
------------------------------------------------------------
26/11/2010
[Friday]
Today i learning ruby myself practicing small exercises like how to declaring an array in ruby
x=["john","smith","joe","adam"]
x.each{ |i| puts i }
--------------------------------------------
pop it deletes the last element in array
x=["john","smith","joe","adam"]
x.pop
-----------------------------------------
to insert the elements from the beginning of the array
x=["array","range","rahul","sonia"]
x.pop
x.unshift("nickson")
puts x
---------------------------------------------
push to insert the elements in the end of the array
x=["array","range","rahul","sonia"]
x.push("nickson")
puts x
------------------
Deletes the first element of the array
x=["array","range","rahul","sonia"]
x.shift()
puts x
No comments:
Post a Comment