<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Skatypa</id>
	<title>Expertiza_Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Skatypa"/>
	<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=Special:Contributions/Skatypa"/>
	<updated>2026-09-14T05:54:47Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/E1631._Refactoring_Bidding_Interface&amp;diff=102568</id>
		<title>CSC/ECE 517 Fall 2016/E1631. Refactoring Bidding Interface</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/E1631._Refactoring_Bidding_Interface&amp;diff=102568"/>
		<updated>2016-10-27T23:05:55Z</updated>

		<summary type="html">&lt;p&gt;Skatypa: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Introduction===&lt;br /&gt;
On Expertiza, the bidding interface allows students to sort topics by preference. This is needed in order run the team assignment algorithm, to match students with others based off the similarity in their topic preferences. The problem with the present method is that the students have to type in their priorities into the boxes beside the topic. While doing this the students end up making mistakes in setting up priorities by assigning random numbers to the topics, sometimes, even numbers greater than total number of topics available to prioritize. This phenomena causes various problems when running the topic assignment algorithm.&lt;br /&gt;
&lt;br /&gt;
We built an interface in sign up sheet that would allow students to drag and drop the topics into the priority table. Where this priority table will be used to run the selection algorithm with ease. This interface would help avoid the errors caused by the previous interface.&lt;br /&gt;
&lt;br /&gt;
===Old Bidding Interface===&lt;br /&gt;
As shown in the picture below, in the old bidding interface users need to manually enter the priority. They can't repeat the same priority number twice. It's difficult for them to remember all the priority numbers entered previously. If they enter the same priority value, system throws an error. Some users made mistake and entered some random priority values (e.g priority value greater then number of topics etc). This caused many problems in the intelligent team assignment algorithm. This situations can be handled by adding more checks. But we can avoid these errors by only giving the users to order their topics by topic name and expertiza code can assign required priority numbers internally.&lt;br /&gt;
&lt;br /&gt;
[[File:Old_signup.png|frame|upright|center|Old Signup Table]]&lt;br /&gt;
&lt;br /&gt;
====How It Works====&lt;br /&gt;
Under the previous interface users can only choose which project they want to work on through setting the priority of the projects based on some distinct integers, where any smaller integer has higher precedence, and empty represents the lowest. For instance “1” has the highest precedence among other integers. The user can input more than one instances of the same integer, but only the first one will be used. If no desired topics are selected, then the user will be assigned some topic depending on the heuristics used inside the selection algorithm.&lt;br /&gt;
&lt;br /&gt;
===New Bidding Interface===&lt;br /&gt;
We proposed sortable list interface to solve the problem associated with the old interface. New interface has two tables. First table holds all the topic lists and second table holds all the chose user priorities. User can select the topic by moving the item from Topics table to Selection table. Users can also resort already selected topics. System also provides the ability to remove already selected topic from the selection by just moving it back to the topic selection table.&lt;br /&gt;
&lt;br /&gt;
[[File:Signupsheet1.png|frame|upright=0.6|center|New Signup Table]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====How It Works====&lt;br /&gt;
These are the set of operations a user can perform on this signup page using the cursor:&lt;br /&gt;
1) The user can drag the topics from topics table on the left into the selection table on the right. As a result, the topics are moved from one table to another.&lt;br /&gt;
2) The user can rearrange the already added topics in the selection table. As a result, the topics can be moved up and down within this table.&lt;br /&gt;
The order of topics in selection table on the right, from top to bottom, are taken in the order of high to low priorities. Then this list of prioritized topics are used to run the intelligent bidding algorithm.&lt;br /&gt;
&lt;br /&gt;
===Code changes===&lt;br /&gt;
====New Files====&lt;br /&gt;
# intelligent_topic_selection.html.erb&lt;br /&gt;
This file has code to display Topics and selection table. This view is displayed if the assignment type is 'intelligent'. This page is only static. Javascript is used to provide dynamic sorting functionality. &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;h3 style=&amp;quot;width: 40%; float: left&amp;quot;&amp;gt;Topics&amp;lt;/h3&amp;gt;&lt;br /&gt;
  &amp;lt;h3 style=&amp;quot;width: 40%; float:right&amp;quot;&amp;gt;Selections&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;display:block&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;display:inline-block&amp;quot; &amp;gt;&lt;br /&gt;
    &amp;lt;table style=&amp;quot;width: 40%; float: left&amp;quot; class=&amp;quot;general&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr&amp;gt;&amp;lt;%= render :partial =&amp;gt; 'table_header' %&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
      &amp;lt;% if !@selected_topics.nil? &amp;amp;&amp;amp; @selected_topics.size != 0 %&amp;gt;&lt;br /&gt;
          &amp;lt;b&amp;gt;Your topic(s):&amp;lt;/b&amp;gt;&lt;br /&gt;
          &amp;lt;% for selected_topic in @selected_topics %&amp;gt;&lt;br /&gt;
              &amp;lt;br/&amp;gt;&amp;lt;%= selected_topic.topic_name %&amp;gt;&lt;br /&gt;
              &amp;lt;% if selected_topic.is_waitlisted == true %&amp;gt;&lt;br /&gt;
                  &amp;lt;font color='red'&amp;gt;(waitlisted)&amp;lt;/font&amp;gt;&lt;br /&gt;
              &amp;lt;% end %&amp;gt;&lt;br /&gt;
          &amp;lt;% end %&amp;gt;&lt;br /&gt;
      &amp;lt;% end %&amp;gt;&lt;br /&gt;
      &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
      &amp;lt;% i=1 %&amp;gt;&lt;br /&gt;
      &amp;lt;tbody id=&amp;quot;topics&amp;quot;  class=&amp;quot;connectedSortable&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr class=&amp;quot;sort-disabled&amp;quot;&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
      &amp;lt;% for topic in @sign_up_topics %&amp;gt;&lt;br /&gt;
          &amp;lt;% if !@selected_topics.nil? &amp;amp;&amp;amp; @selected_topics.size != 0 %&amp;gt;&lt;br /&gt;
              &amp;lt;% for selected_topic in @selected_topics %&amp;gt;&lt;br /&gt;
                  &amp;lt;% if selected_topic.topic_id == topic.id and !selected_topic.is_waitlisted %&amp;gt;&lt;br /&gt;
                      &amp;lt;tr bgcolor=&amp;quot;yellow&amp;quot;&amp;gt;&lt;br /&gt;
                  &amp;lt;% elsif selected_topic.topic_id == topic.id and selected_topic.is_waitlisted%&amp;gt;&lt;br /&gt;
                      &amp;lt;tr bgcolor=&amp;quot;lightgray&amp;quot;&amp;gt;&lt;br /&gt;
                  &amp;lt;% else %&amp;gt;&lt;br /&gt;
                      &amp;lt;tr id=&amp;quot;topic_&amp;lt;%= topic.id %&amp;gt;&amp;quot;&amp;gt;&lt;br /&gt;
                  &amp;lt;% end %&amp;gt;&lt;br /&gt;
              &amp;lt;% end %&amp;gt;&lt;br /&gt;
          &amp;lt;% else %&amp;gt;&lt;br /&gt;
              &amp;lt;tr id=&amp;quot;topic_&amp;lt;%= topic.id %&amp;gt;&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;% end %&amp;gt;&lt;br /&gt;
          &amp;lt;% is_suggested_topic = false %&amp;gt;&lt;br /&gt;
          &amp;lt;%= render :partial =&amp;gt; 'table_line', :locals =&amp;gt; {:i=&amp;gt;i, :topic=&amp;gt;topic, :is_suggested_topic=&amp;gt;is_suggested_topic} %&amp;gt;&lt;br /&gt;
          &amp;lt;/tr&amp;gt;&lt;br /&gt;
          &amp;lt;% i=i+1 %&amp;gt;&lt;br /&gt;
      &amp;lt;% end %&amp;gt;&lt;br /&gt;
      &amp;lt;/tbody&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# _suggested_topic.html.erb&lt;br /&gt;
&lt;br /&gt;
# app/javascript/tablelist.js.coffee&lt;br /&gt;
&lt;br /&gt;
====Old code changes====&lt;br /&gt;
# sign_up_sheet_controller.rb&lt;br /&gt;
# view/sign_up_sheet/list.html.erb&lt;br /&gt;
# view/sign_up_sheet/_table_line.html.erb&lt;br /&gt;
# _table_header.html.erb&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Conclusion===&lt;br /&gt;
====Problems we overcame====&lt;br /&gt;
&lt;br /&gt;
====Further improvements====&lt;br /&gt;
Enabling the interface to use keyboard to select topics and drag them into the selection table. This will make the selection very intuitive.&lt;/div&gt;</summary>
		<author><name>Skatypa</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/E1631._Refactoring_Bidding_Interface&amp;diff=102565</id>
		<title>CSC/ECE 517 Fall 2016/E1631. Refactoring Bidding Interface</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/E1631._Refactoring_Bidding_Interface&amp;diff=102565"/>
		<updated>2016-10-27T23:01:38Z</updated>

		<summary type="html">&lt;p&gt;Skatypa: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Introduction===&lt;br /&gt;
On Expertiza, the bidding interface allows students to sort topics by preference. This is needed in order run the team assignment algorithm, to match students with others based off the similarity in their topic preferences. The problem with the present method is that the students have to type in their priorities into the boxes beside the topic. While doing this the students end up making mistakes in setting up priorities by assigning random numbers to the topics, sometimes, even numbers greater than total number of topics available to prioritize. This phenomena causes various problems when running the topic assignment algorithm.&lt;br /&gt;
&lt;br /&gt;
We built an interface in sign up sheet that would allow students to drag and drop the topics into the priority table. Where this priority table will be used to run the selection algorithm with ease. This interface would help avoid the errors caused by the previous interface.&lt;br /&gt;
&lt;br /&gt;
===Old Bidding Interface===&lt;br /&gt;
As shown in the picture below, in the old bidding interface users need to manually enter the priority. They can't repeat the same priority number twice. It's difficult for them to remember all the priority numbers entered previously. If they enter the same priority value, system throws an error. Some users made mistake and entered some random priority values (e.g priority value greater then number of topics etc). This caused many problems in the intelligent team assignment algorithm. This situations can be handled by adding more checks. But we can avoid these errors by only giving the users to order their topics by topic name and expertiza code can assign required priority numbers internally.&lt;br /&gt;
&lt;br /&gt;
[[File:Old_signup.png|frame|upright|center|Old Signup Table]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===New Bidding Interface===&lt;br /&gt;
We proposed sortable list interface to solve the problem associated with the old interface. New interface has two tables. First table holds all the topic lists and second table holds all the chose user priorities. User can select the topic by moving the item from Topics table to Selection table. Users can also resort already selected topics. System also provides the ability to remove already selected topic from the selection by just moving it back to the topic selection table.&lt;br /&gt;
&lt;br /&gt;
[[File:Signupsheet1.png|frame|upright=0.6|center|New Signup Table]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How It Works===&lt;br /&gt;
These are the set of operations a user can perform on this signup page using the cursor:&lt;br /&gt;
1) The user can drag the topics from topics table on the left into the selection table on the right. As a result, the topics are moved from one table to another.&lt;br /&gt;
2) The user can rearrange the already added topics in the selection table. As a result, the topics can be moved up and down within this table.&lt;br /&gt;
The order of topics in selection table on the right, from top to bottom, are taken in the order of high to low priorities. Then this list of prioritized topics are used to run the intelligent bidding algorithm.&lt;br /&gt;
&lt;br /&gt;
===Code changes===&lt;br /&gt;
====New Files====&lt;br /&gt;
# intelligent_topic_selection.html.erb &lt;br /&gt;
# _suggested_topic.html.erb&lt;br /&gt;
# app/javascript/tablelist.js.coffee&lt;br /&gt;
&lt;br /&gt;
====Old code changes====&lt;br /&gt;
# sign_up_sheet_controller.rb&lt;br /&gt;
# view/sign_up_sheet/list.html.erb&lt;br /&gt;
# view/sign_up_sheet/_table_line.html.erb&lt;br /&gt;
# _table_header.html.erb&lt;/div&gt;</summary>
		<author><name>Skatypa</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/E1631._Refactoring_Bidding_Interface&amp;diff=102557</id>
		<title>CSC/ECE 517 Fall 2016/E1631. Refactoring Bidding Interface</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/E1631._Refactoring_Bidding_Interface&amp;diff=102557"/>
		<updated>2016-10-27T22:43:11Z</updated>

		<summary type="html">&lt;p&gt;Skatypa: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Introduction===&lt;br /&gt;
On Expertiza, the bidding interface allows students to sort topics by preference. This is needed in order run the team assignment algorithm, to match students with others based off the similarity in their topic preferences. The problem with the present method is that the students have to type in their priorities into the boxes beside the topic. While doing this the students end up making mistakes in setting up priorities by assigning random numbers to the topics, sometimes, even numbers greater than total number of topics available to prioritize. This phenomena causes various problems when running the topic assignment algorithm.&lt;br /&gt;
&lt;br /&gt;
We built an interface in sign up sheet that would allow students to drag and drop the topics into the priority table. Where this priority table will be used to run the selection algorithm with ease. This interface would help avoid the errors caused by the previous interface.&lt;br /&gt;
&lt;br /&gt;
===Old Bidding Interface===&lt;br /&gt;
As shown in the picture below, in the old bidding interface users need to manually enter the priority. They can't repeat the same priority number twice. It's difficult for them to remember all the priority numbers entered previously. If they enter the same priority value, system throws an error. Some users made mistake and entered some random priority values (e.g priority value greater then number of topics etc). This caused many problems in the intelligent team assignment algorithm. This situations can be handled by adding more checks. But we can avoid these errors by only giving the users to order their topics by topic name and expertiza code can assign required priority numbers internally.&lt;br /&gt;
&lt;br /&gt;
[[File:Old_sign_up_table.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===New Bidding Interface===&lt;br /&gt;
We proposed sortable list interface to solve the problem associated with the old interface. New interface has two tables. First table holds all the topic lists and second table holds all the chose user priorities. User can select the topic by moving the item from Topics table to Selection table. Users can also resort already selected topics. System also provides the ability to remove already selected topic from the selection by just moving it back to the topic selection table.&lt;br /&gt;
&lt;br /&gt;
[[File:Signupsheet.png|800px|left]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How It Works===&lt;br /&gt;
These are the set of operations a user can perform on this signup page using the cursor:&lt;br /&gt;
1) The user can drag the topics from table on the left into the table on the right. As a result, the topics are moved from one table to another.&lt;br /&gt;
2) The user can rearrange the already added topics in the table on the right. As a result, the topics can be moved up and down within this table.&lt;br /&gt;
The order of topics in table on the right, from top to bottom, are taken in the order of high to low priorities. Then this list of prioritized topics is used to run the intelligent bidding algorithm.&lt;br /&gt;
&lt;br /&gt;
===Code changes===&lt;br /&gt;
====New Files====&lt;br /&gt;
1) intelligent_topic_selection.html.erb &lt;br /&gt;
2) _suggested_topic.html.erb&lt;br /&gt;
3) app/javascript/tablelist.js.coffee&lt;br /&gt;
&lt;br /&gt;
====Old code changes====&lt;br /&gt;
1) sign_up_sheet_controller.rb&lt;br /&gt;
2) view/sign_up_sheet/list.html.erb&lt;br /&gt;
3) view/sign_up_sheet/_table_line.html.erb&lt;br /&gt;
4) _table_header.html.erb&lt;/div&gt;</summary>
		<author><name>Skatypa</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/E1631._Refactoring_Bidding_Interface&amp;diff=102553</id>
		<title>CSC/ECE 517 Fall 2016/E1631. Refactoring Bidding Interface</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/E1631._Refactoring_Bidding_Interface&amp;diff=102553"/>
		<updated>2016-10-27T22:27:16Z</updated>

		<summary type="html">&lt;p&gt;Skatypa: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Introduction===&lt;br /&gt;
On Expertiza, the bidding interface allows students to sort topics by preference. This is needed in order run the team assignment algorithm, to match students with others based off the similarity in their topic preferences. The problem with the present method is that the students have to type in their priorities into the boxes beside the topic. While doing this the students end up making mistakes in setting up priorities by assigning random numbers to the topics, sometimes, even numbers greater than total number of topics available to prioritize. This phenomena causes various problems when running the topic assignment algorithm.&lt;br /&gt;
&lt;br /&gt;
We built an interface in sign up sheet that would allow students to drag and drop the topics into the priority table. Where this priority table will be used to run the selection algorithm with ease. This interface would help avoid the errors caused by the previous interface.&lt;br /&gt;
&lt;br /&gt;
===Old Bidding Interface===&lt;br /&gt;
As shown in the picture below, in the old bidding interface users need to manually enter the priority. They can't repeat the same priority number twice. It's difficult for them to remember all the priority numbers entered previously. If they enter the same priority value, system throws an error. Some users made mistake and entered some random priority values (e.g priority value greater then number of topics etc). This caused many problems in the intelligent team assignment algorithm. This situations can be handled by adding more checks. But we can avoid these errors by only giving the users to order their topics by topic name and expertiza code can assign required priority numbers internally.&lt;br /&gt;
&lt;br /&gt;
[[File:Old_sign_up_table.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===New Bidding Interface===&lt;br /&gt;
We proposed sortable list interface to solve the problem associated with the old interface. New interface has two tables. First table holds all the topic lists and second table holds all the chose user priorities. User can select the topic by moving the item from Topics table to Selection table. Users can also resort already selected topics. System also provides the ability to remove already selected topic from the selection by just moving it back to the topic selection table.&lt;br /&gt;
&lt;br /&gt;
[[File:Signupsheet.png|800px|left]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===How It Works===&lt;br /&gt;
The interface can make it simpler to set priorities for the projects. The signup page consists of tables, table1 and table2 side by side where: 1) Table1 consists of the list of topics and 2) Table2 is initially empty.&lt;br /&gt;
These are the set of operations a user can perform on this signup page using the cursor:&lt;br /&gt;
1) The user can drag the topics from table1 into table2 and drop the topics in table2. As a result, the topic is deleted from table1 and added to table2.&lt;br /&gt;
2) The user can rearrange the already added topics in table2. As a result, the topics can be moved up and down within table2.&lt;br /&gt;
The order of topics in table2, top to bottom, are taken in the order of high to low priorities. Then this list of prioritized topics is used to run the intelligent bidding algorithm.&lt;/div&gt;</summary>
		<author><name>Skatypa</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/E1631._Refactoring_Bidding_Interface&amp;diff=102552</id>
		<title>CSC/ECE 517 Fall 2016/E1631. Refactoring Bidding Interface</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/E1631._Refactoring_Bidding_Interface&amp;diff=102552"/>
		<updated>2016-10-27T22:26:47Z</updated>

		<summary type="html">&lt;p&gt;Skatypa: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Introduction===&lt;br /&gt;
On Expertiza, the bidding interface allows students to sort topics by preference. This is needed in order run the team assignment algorithm, to match students with others based off the similarity in their topic preferences. The problem with the present method is that the students have to type in their priorities into the boxes beside the topic. While doing this the students end up making mistakes in setting up priorities by assigning random numbers to the topics, sometimes, even numbers greater than total number of topics available to prioritize. This phenomena causes various problems when running the topic assignment algorithm.&lt;br /&gt;
&lt;br /&gt;
We built an interface in sign up sheet that would allow students to drag and drop the topics into the priority table. Where this priority table will be used to run the selection algorithm with ease. This interface would help avoid the errors caused by the previous interface.&lt;br /&gt;
&lt;br /&gt;
===Old Bidding Interface===&lt;br /&gt;
As shown in the picture below, in the old bidding interface users need to manually enter the priority. They can't repeat the same priority number twice. It's difficult for them to remember all the priority numbers entered previously. If they enter the same priority value, system throws an error. Some users made mistake and entered some random priority values (e.g priority value greater then number of topics etc). This caused many problems in the intelligent team assignment algorithm. This situations can be handled by adding more checks. But we can avoid these errors by only giving the users to order their topics by topic name and expertiza code can assign required priority numbers internally.&lt;br /&gt;
&lt;br /&gt;
[[File:Old_sign_up_table.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===New Bidding Interface===&lt;br /&gt;
We proposed sortable list interface to solve the problem associated with the old interface. New interface has two tables. First table holds all the topic lists and second table holds all the chose user priorities. User can select the topic by moving the item from Topics table to Selection table. Users can also resort already selected topics. System also provides the ability to remove already selected topic from the selection by just moving it back to the topic selection table.&lt;br /&gt;
&lt;br /&gt;
[[File:Signupsheet.png|800px|left]]&lt;br /&gt;
&lt;br /&gt;
===How It Works===&lt;br /&gt;
The interface can make it simpler to set priorities for the projects. The signup page consists of tables, table1 and table2 side by side where: 1) Table1 consists of the list of topics and 2) Table2 is initially empty.&lt;br /&gt;
These are the set of operations a user can perform on this signup page using the cursor:&lt;br /&gt;
1) The user can drag the topics from table1 into table2 and drop the topics in table2. As a result, the topic is deleted from table1 and added to table2.&lt;br /&gt;
2) The user can rearrange the already added topics in table2. As a result, the topics can be moved up and down within table2.&lt;br /&gt;
The order of topics in table2, top to bottom, are taken in the order of high to low priorities. Then this list of prioritized topics is used to run the intelligent bidding algorithm.&lt;/div&gt;</summary>
		<author><name>Skatypa</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/E1631._Refactoring_Bidding_Interface&amp;diff=102543</id>
		<title>CSC/ECE 517 Fall 2016/E1631. Refactoring Bidding Interface</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/E1631._Refactoring_Bidding_Interface&amp;diff=102543"/>
		<updated>2016-10-27T22:12:12Z</updated>

		<summary type="html">&lt;p&gt;Skatypa: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Introduction===&lt;br /&gt;
On Expertiza, the bidding interface allows students to sort topics by preference. This is needed in order run the team assignment algorithm, to match students with others based off the similarity in their topic preferences. The problem with the present method is that the students have to type in their priorities into the boxes beside the topic. While doing this the students end up making mistakes in setting up priorities by assigning random numbers to the topics, sometimes, even numbers greater than total number of topics available to prioritize. This phenomena causes various problems when running the topic assignment algorithm.&lt;br /&gt;
&lt;br /&gt;
We built an interface in sign up sheet that would allow students to drag and drop the topics into the priority table. Where this priority table will be used to run the selection algorithm with ease. This interface would help avoid the errors caused by the previous interface.&lt;br /&gt;
&lt;br /&gt;
===Old Bidding Interface===&lt;br /&gt;
As shown in the picture below, in the old bidding interface users need to manually enter the priority. They can't repeat the same priority number twice. It's difficult for them to remember all the priority numbers entered previously. If they enter the same priority value, system throws an error. Some users made mistake and entered some random priority values (e.g priority value greater then number of topics etc). This caused many problems in the intelligent team assignment algorithm. This situations can be handled by adding more checks. But we can avoid these errors by only giving the users to order their topics by topic name and expertiza code can assign required priority numbers internally.&lt;br /&gt;
&lt;br /&gt;
===New Bidding Interface===&lt;br /&gt;
We proposed sortable list interface to solve the problem associated with the old interface. New interface has two tables. First table holds all the topic lists and second table holds all the chose user priorities. User can select the topic by moving the item from Topics table to Selection table. Users can also resort already selected topics. System also provides the ability to&lt;/div&gt;</summary>
		<author><name>Skatypa</name></author>
	</entry>
</feed>