diff --git a/backend/src/database/user.ts b/backend/src/database/user.ts index d2a769d4..6f54fbb2 100644 --- a/backend/src/database/user.ts +++ b/backend/src/database/user.ts @@ -12,14 +12,14 @@ const stmtUpdateSession: string = 'UPDATE users.Session SET idProfile = ? WHERE const stmtSelExperiments: string = ` SELECT ers.idSession, ers.role, e.experiment, e.idExperiment, e.active, err.randrole FROM ( - SELECT * + SELECT * FROM users.Experiment e WHERE e.active = 1 ) e LEFT JOIN ( - SELECT er.idExperiment, er.role, ers.idSession + SELECT er.idExperiment, er.role, ers.idSession FROM users.Experiment_Role_Session ers - INNER JOIN users.ExperimentRole er ON er.idExperimentRole = ers.idExperimentRole + INNER JOIN users.ExperimentRole er ON er.idExperimentRole = ers.idExperimentRole WHERE ers.idSession = ? ) ers ON ers.idExperiment = e.idExperiment LEFT JOIN ( @@ -227,4 +227,4 @@ export async function updateSession(idProfile: number, idSession: number) { logDbErr(error, 'error during updating session', 'warn'); return [error]; } -} \ No newline at end of file +} diff --git a/backend/src/public/css/main_trimmed.css b/backend/src/public/css/main_trimmed.css index e0771b1a..3358628f 100644 --- a/backend/src/public/css/main_trimmed.css +++ b/backend/src/public/css/main_trimmed.css @@ -13277,7 +13277,7 @@ nav .nav-item #navbar-user:after, .clickable, nav .navbar-nav-sm li, nav .nav-item, #table-container > div #table-column-sort-panel .column-sorter .column-sorter-order, #table-container > div #table-column-sort-panel .column-sorter .column-sorter-delete, #account-container #editor-identifier { cursor: pointer; } -.font-size-small, #homepage-container section#description-section .spreadsheet-related-content, #homepage-container section#description-section .publication-link + p, #homepage-container section#description-section .footer, #form-container #login-component form label[for="password"] a, #form-container #signup-component form label[for="password"] a, #form-container #forget-component form label[for="password"] a, #form-container #info-section p, #table-container > div #table-cell-input-form #locate-cell #locate-cell-row-col, #table-container > div #table-cell-input-form #input-form-legend, #table-container > div #table-cell-input-form #input-form-legend-orange { +.font-size-small, #homepage-container section#description-section li p, #homepage-container section#description-section .footer, #form-container #login-component form label[for="password"] a, #form-container #signup-component form label[for="password"] a, #form-container #forget-component form label[for="password"] a, #form-container #info-section p, #table-container > div #table-cell-input-form #locate-cell #locate-cell-row-col, #table-container > div #table-cell-input-form #input-form-legend, #table-container > div #table-cell-input-form #input-form-legend-orange { font-size: small; } .font-size-large, #table-container table tfoot tr:nth-child(2).cellcopy th, #table-container table tfoot tr:nth-child(2).columncopy th, #table-container table tfoot tr:nth-child(2).celleditor-help th, #table-container table tfoot tr:nth-child(2).insertion-verification th, #table-container table tfoot tr:nth-child(2).insertion-success th, #table-container table tfoot tr:nth-child(2).insertion-failure th, #table-container table tfoot tr:nth-child(2).delete-success th, #table-container table tfoot tr:nth-child(2).delete-failure th { @@ -14053,4 +14053,4 @@ span.dyk-col-search { #cursor-pointer { cursor: pointer; -} \ No newline at end of file +} diff --git a/backend/src/public/css_sass/pages/_home.scss b/backend/src/public/css_sass/pages/_home.scss index 9db4dbdb..ac3b15ff 100644 --- a/backend/src/public/css_sass/pages/_home.scss +++ b/backend/src/public/css_sass/pages/_home.scss @@ -37,8 +37,8 @@ } section#thumbnail-section { - @extend .d-none; - @extend .d-md-flex; + @extend .d-none; + @extend .d-md-flex; min-width: $img-width; min-height: 350px; background-image: linear-gradient(45deg,#003aff 0%,#00b9ff 100%); @@ -76,10 +76,7 @@ @extend .mt-4; } } - .spreadsheet-related-content { - @extend %aside-text; - } - .publication-link + p { + li p { @extend %aside-text; } .footer { diff --git a/backend/src/public/js/modules/components/sheet/databaits.ts b/backend/src/public/js/modules/components/sheet/databaits.ts index ad222255..69aa9ad0 100644 --- a/backend/src/public/js/modules/components/sheet/databaits.ts +++ b/backend/src/public/js/modules/components/sheet/databaits.ts @@ -387,8 +387,8 @@ function closeModal() { function escKeyListener(event: KeyboardEvent) { if(event.key === 'Escape'){ - closeModal(); - } + closeModal(); + } } function activateKeyListener() { diff --git a/backend/src/public/js/modules/components/sheet/delete-row.ts b/backend/src/public/js/modules/components/sheet/delete-row.ts index b9889d06..ef7e58d5 100644 --- a/backend/src/public/js/modules/components/sheet/delete-row.ts +++ b/backend/src/public/js/modules/components/sheet/delete-row.ts @@ -22,7 +22,7 @@ function escKeyListener(event: KeyboardEvent) { if(event.key === 'Escape'){ // eslint-disable-next-line @typescript-eslint/no-use-before-define modalsClose(); - } + } } function activateKeyListener() { @@ -36,7 +36,7 @@ function deactivateKeyListener() { function modalsClose() { deactivateKeyListener(); deleteRowModal.style.display = 'none'; - deleteRowModalError.style.display = 'none'; + deleteRowModalError.style.display = 'none'; } deleteModalClose.addEventListener('click', function(event: MouseEvent) { diff --git a/backend/src/public/js/modules/components/sheet/table-data-manager/Instantiation.ts b/backend/src/public/js/modules/components/sheet/table-data-manager/Instantiation.ts index 9ef8d4b8..2dc13f1b 100644 --- a/backend/src/public/js/modules/components/sheet/table-data-manager/Instantiation.ts +++ b/backend/src/public/js/modules/components/sheet/table-data-manager/Instantiation.ts @@ -3,8 +3,8 @@ * * This module provide instantiations of Abstraction class: * - * + ForwardingInstantiation: allows access/modification to registered properties to be resolved with a registered target `forwardingTo_`. More, specifically, these operations are regulated by a ForwardingPropertyDescriptor, a descriptor which could contain callbacks that receives additional arguments including `forwardingTo_` and the Instantiation instance. - * + DOMForwardingInstantiation: extends ForwardingInstantiation with default descriptor that treat registered properties as a DOM attribute or JS property of the forwarding target. + * + ForwardingInstantiation: allows access/modification to registered properties to be resolved with a registered target `forwardingTo_`. More, specifically, these operations are regulated by a ForwardingPropertyDescriptor, a descriptor which could contain callbacks that receives additional arguments including `forwardingTo_` and the Instantiation instance. + * + DOMForwardingInstantiation: extends ForwardingInstantiation with default descriptor that treat registered properties as a DOM attribute or JS property of the forwarding target. */ import { Abstraction, Prop } from './Abstraction'; @@ -67,8 +67,8 @@ export class ForwardingInstantiation extends Abstraction { /** * Transform a ForwardingPropertyDescriptor into a PropertyDescriptor. More specifically, it creates wrapper getter and setter that invoke the ForwardingPropertyDescriptor's getter and setter by supplying additional arguments through scoping. - * @example - * To transform into an empty property descriptor, simply pass `{}` as `descriptor`. + * @example + * To transform into an empty property descriptor, simply pass `{}` as `descriptor`. * * @param {Partial} descriptor - An object containing partial implementation of a ForwardingPropertyDescriptor. * @param {ForwardingInstantiation} thisArgument - The invoking context: an ForwardingInstantiation which provides a forwarding target. @@ -76,16 +76,16 @@ export class ForwardingInstantiation extends Abstraction { */ private static __transformPropertyDescriptor(descriptor: Partial, thisArgument: ForwardingInstantiation): Partial { const accessFunctions: AccessFunctions = { }; - if ('get' in descriptor) { + if ('get' in descriptor) { accessFunctions.get = () => { return descriptor.get(thisArgument.forwardingTo_, thisArgument); }; - } - if ('set' in descriptor) { - accessFunctions.set = (v: any) => { + } + if ('set' in descriptor) { + accessFunctions.set = (v: any) => { return descriptor.set(v, thisArgument.forwardingTo_, thisArgument); - }; - } + }; + } return Object.assign({}, descriptor, accessFunctions); } @@ -100,7 +100,7 @@ export class ForwardingInstantiation extends Abstraction { private static __transformPropertyDescriptors(props: Record>, thisArgument: ForwardingInstantiation): Record> { const _props: Record> = {}; for (const property in props) { - const descriptor = props[property]; + const descriptor = props[property]; _props[property] = this.__transformPropertyDescriptor(descriptor, thisArgument); } return _props; @@ -145,19 +145,19 @@ export class ForwardingInstantiation extends Abstraction { * * The property will be resolved in the following order: * - * 1. a HTML attribute like `class` for a `` + * 2. a JS property like `classList`, `textContent` + * 3. a custom property * * Some caveats: * - * + The property has to be a string. - * + If the element does not have the DOM property {@link https://developer.mozilla.org/en-US/docs/Web/API/Element/hasAttribute}, the operation will not stop, rather it will try to resolve the property as a JS property then a custom property. But suppose this DOM attribute comes into existence because of user action or script execution, next operation will resolve this property as a DOM attribute even if a same-named JS property or custom property exists. The opposite is also true where a DOM attribute no longer exists. To avoid such situations, you are recommended to - * + predefine the DOM attribute, - * @example `element.class = ""` - * + use the JS property equivalent - * @example `class` can be substituted with `className` - * + If you need to define a custom property, you should avoid clashing with potential HTML attributes and JS properties + * + The property has to be a string. + * + If the element does not have the DOM property {@link https://developer.mozilla.org/en-US/docs/Web/API/Element/hasAttribute}, the operation will not stop, rather it will try to resolve the property as a JS property then a custom property. But suppose this DOM attribute comes into existence because of user action or script execution, next operation will resolve this property as a DOM attribute even if a same-named JS property or custom property exists. The opposite is also true where a DOM attribute no longer exists. To avoid such situations, you are recommended to + * + predefine the DOM attribute, + * @example `element.class = ""` + * + use the JS property equivalent + * @example `class` can be substituted with `className` + * + If you need to define a custom property, you should avoid clashing with potential HTML attributes and JS properties * * @augments ForwardingInstantiation */ @@ -181,9 +181,9 @@ export class DOMForwardingInstantiation extends ForwardingInstantiation { /** * Creates a default access descriptor that - * - * + for a [[GET]] operation, attempts to query same-named property from the HTML element that is the forward target {@link getProperty} - * + for a [[SET]] operation, attempts to modify same-named property from the HTML element that is the forward target {@link setProperty} + * + * + for a [[GET]] operation, attempts to query same-named property from the HTML element that is the forward target {@link getProperty} + * + for a [[SET]] operation, attempts to modify same-named property from the HTML element that is the forward target {@link setProperty} * * @public * @param {string} property - Name of property. @@ -192,31 +192,31 @@ export class DOMForwardingInstantiation extends ForwardingInstantiation { static defaultForwardingDescriptor__(property: string): Partial { return { get(forwardingTo: HTMLElement): any { - return getProperty(forwardingTo, property); + return getProperty(forwardingTo, property); }, set(newValue: any, forwardingTo: HTMLElement) { - setProperty(forwardingTo, property, newValue); + setProperty(forwardingTo, property, newValue); } }; } - /** - * For each property, supplies default access descriptor if none has been provided. - * - * More specifically, it iterates through each property, descriptor pair and replace falsy descriptor value with default descriptor. - * - * @see {@link DOMForwardingInstantiation.defaultForwardingDescriptor__} - * @param {Record>} props - An object containing mapping from properties to their descriptors. - * @return An object containing mapping from properties to their descriptors where default descriptor has replaced falsy descriptor value. - */ - private static __fillDefaultDescriptor(props: Record>): Record> { + /** + * For each property, supplies default access descriptor if none has been provided. + * + * More specifically, it iterates through each property, descriptor pair and replace falsy descriptor value with default descriptor. + * + * @see {@link DOMForwardingInstantiation.defaultForwardingDescriptor__} + * @param {Record>} props - An object containing mapping from properties to their descriptors. + * @return An object containing mapping from properties to their descriptors where default descriptor has replaced falsy descriptor value. + */ + private static __fillDefaultDescriptor(props: Record>): Record> { const _props: Record> = {}; for (const property in props) { - const descriptor = props[property]; - _props[property] = descriptor ? descriptor : this.defaultForwardingDescriptor__(property); + const descriptor = props[property]; + _props[property] = descriptor ? descriptor : this.defaultForwardingDescriptor__(property); } return _props; - } + } /** * @override diff --git a/backend/src/public/js/modules/utils/length.ts b/backend/src/public/js/modules/utils/length.ts index b20a9fc3..09fc1c5a 100644 --- a/backend/src/public/js/modules/utils/length.ts +++ b/backend/src/public/js/modules/utils/length.ts @@ -24,8 +24,8 @@ function getTextWidthMeasureElement(): HTMLElement { // initialize text width measure textWidthMeasureElement = document.createElement('span'); textWidthMeasureElement.id = 'text-width-measure'; - const bodyElement = document.body; - bodyElement.prepend(textWidthMeasureElement); + const bodyElement = document.body; + bodyElement.prepend(textWidthMeasureElement); } return textWidthMeasureElement; } diff --git a/backend/views/pages/home.handlebars b/backend/views/pages/home.handlebars index e1165735..fd09e20a 100644 --- a/backend/views/pages/home.handlebars +++ b/backend/views/pages/home.handlebars @@ -28,29 +28,29 @@ Computer Science Professors +

+ Used for an analysis of computer science hiring trends +

-
  • CS Open Rankings +

    + A new approach to computer science rankings. A meta ranker using real-time data from CS Professors as one of its sources. +

  • -
      {{#each publications}}
    • - {{name}} + {{name}}

      {{description}} {{#if source}} - [source code] + [source code] {{/if}}

    • diff --git a/backend/views/pages/home500.handlebars b/backend/views/pages/home500.handlebars index c085a8e6..bfc5f6a1 100644 --- a/backend/views/pages/home500.handlebars +++ b/backend/views/pages/home500.handlebars @@ -33,8 +33,8 @@
      - \ No newline at end of file + diff --git a/backend/views/partials/edit_history/csprofessors.handlebars b/backend/views/partials/edit_history/csprofessors.handlebars index b5125f19..f7228de7 100644 --- a/backend/views/partials/edit_history/csprofessors.handlebars +++ b/backend/views/partials/edit_history/csprofessors.handlebars @@ -23,7000 +23,7000 @@ - 2022-02-03 16:15 + 2022-02-03 16:15 - + jeffgerickson - + new row - + Hsien-Chih Chang (Dartmouth College) - + FullName - + - + Hsien-Chih Chang - 2022-02-03 16:15 + 2022-02-03 16:15 - + jeffgerickson - + new row - + - + University - + - + Dartmouth College - 2022-02-03 16:15 + 2022-02-03 16:15 - + jeffgerickson - + new row - + - + JoinYear - + - + 2020 - 2022-02-03 16:15 + 2022-02-03 16:15 - + jeffgerickson - + new row - + - + SubField - + - + Algorithms & Complexity - 2022-02-03 16:15 + 2022-02-03 16:15 - + jeffgerickson - + new row - + - + Bachelors - + - + National Taiwan University - 2022-02-03 16:15 + 2022-02-03 16:15 - + jeffgerickson - + new row - + - + Doctorate - + - + University of Illinois at Urbana-Champaign - 2022-02-03 00:40 + 2022-02-03 00:40 - + kaki1104 - + edit cell - + Constantine Lignos (Brandeis University) - + Doctorate - + - + University of Pennsylvania - 2022-02-03 00:40 + 2022-02-03 00:40 - + kaki1104 - + edit cell - + Hongfu Liu (Brandeis University) - + Doctorate - + - + Northeastern University - 2022-02-03 00:36 + 2022-02-03 00:36 - + kaki1104 - + new row - + R. Pito Salas (Brandeis University) - + FullName - + - + R. Pito Salas - 2022-02-03 00:36 + 2022-02-03 00:36 - + kaki1104 - + new row - + - + University - + - + Brandeis University - 2022-02-03 00:36 + 2022-02-03 00:36 - + kaki1104 - + new row - + - + JoinYear - + - + 2013 - 2022-02-03 00:36 + 2022-02-03 00:36 - + kaki1104 - + new row - + - + SubField - + - + Software Engineering - 2022-02-03 00:36 + 2022-02-03 00:36 - + kaki1104 - + new row - + - + Bachelors - + - + Brandeis University - 2022-02-03 00:36 + 2022-02-03 00:36 - + kaki1104 - + new row - + - + Doctorate - + - + - 2022-02-03 00:28 + 2022-02-03 00:28 - + kaki1104 - + new row - + Hongfu Liu (Brandeis University) - + FullName - + - + Hongfu Liu - 2022-02-03 00:28 + 2022-02-03 00:28 - + kaki1104 - + new row - + - + University - + - + Brandeis University - 2022-02-03 00:28 + 2022-02-03 00:28 - + kaki1104 - + new row - + - + JoinYear - + - + 2018 - 2022-02-03 00:28 + 2022-02-03 00:28 - + kaki1104 - + new row - + - + SubField - + - + Machine Learning & Data Mining - 2022-02-03 00:28 + 2022-02-03 00:28 - + kaki1104 - + new row - + - + Bachelors - + - + Beihang University - 2022-02-03 00:28 + 2022-02-03 00:28 - + kaki1104 - + new row - + - + Doctorate - + - + - 2022-02-03 00:25 + 2022-02-03 00:25 - + kaki1104 - + new row - + Constantine Lignos (Brandeis University) - + FullName - + - + Constantine Lignos - 2022-02-03 00:25 + 2022-02-03 00:25 - + kaki1104 - + new row - + - + University - + - + Brandeis University - 2022-02-03 00:25 + 2022-02-03 00:25 - + kaki1104 - + new row - + - + JoinYear - + - + 2019 - 2022-02-03 00:25 + 2022-02-03 00:25 - + kaki1104 - + new row - + - + SubField - + - + Natural Language Processing - 2022-02-03 00:25 + 2022-02-03 00:25 - + kaki1104 - + new row - + - + Bachelors - + - + Yale University - 2022-02-03 00:25 + 2022-02-03 00:25 - + kaki1104 - + new row - + - + Doctorate - + - + - 2022-02-01 19:39 + 2022-02-01 19:39 - + anon946990 - + edit cell - + George M. Slota (Rensselaer Polytechnic Institute) - + Doctorate - + Rutgers University - + Pennsylvania State University - 2022-02-01 19:39 + 2022-02-01 19:39 - + anon946990 - + edit cell - + - + Bachelors - + Duke University - + Pennsylvania State University - 2022-02-01 19:39 + 2022-02-01 19:39 - + anon946990 - + edit cell - + - + SubField - + Machine Learning & Data Mining - + High-Performance Computing - 2022-01-31 12:53 + 2022-01-31 12:53 - + anon932885 - + edit cell - + Yanhong A. Liu (Stony Brook University) - + JoinYear - + 1995 - + 2000 - 2022-01-29 03:01 + 2022-01-29 03:01 - + anon942682 - + edit cell - + Dana H. Ballard (University of Texas at Austin) - + SubField - + Comp. Bio & Bioinformatics - + Algorithms & Complexity - 2022-01-28 08:45 + 2022-01-28 08:45 - + anon942038 - + edit cell - + Yanhong A. Liu (Stony Brook University) - + SubField - + Computer Architecture - + Programming Languages - 2022-01-28 08:45 + 2022-01-28 08:45 - + anon942038 - + edit cell - + - + JoinYear - + 2008 - + 1995 - 2022-01-28 01:36 + 2022-01-28 01:36 - + anon258272 - + edit cell - + Donald S. Williamson (Indiana University Bloomington) - + Doctorate - + Brandeis University - + Ohio State University - 2022-01-28 01:35 + 2022-01-28 01:35 - + anon258272 - + edit cell - + Erik Stolterman (Indiana University Bloomington) - + Doctorate - + Brandeis University - + Umeå University - 2022-01-28 01:32 + 2022-01-28 01:32 - + anon258272 - + edit cell - + Nirupam Roy (University of Maryland) - + Doctorate - + Brandeis University - + University of Illinois at Urbana-Champaign - 2022-01-28 01:28 + 2022-01-28 01:28 - + anon258272 - + edit cell - + Michael W. Otte (University of Maryland) - + Doctorate - + Brandeis University - + University of Colorado Boulder - 2022-01-27 02:07 + 2022-01-27 02:07 - + anon940609 - + del row - + Feifei Li (University of Utah) - + - + Feifei Li (University of Utah) - + [row deleted] - 2022-01-27 02:07 + 2022-01-27 02:07 - + anon940609 - + del row - + Austin Z. Henley (University of Tennessee) - + - + Austin Z. Henley (University of Tennessee) - + [row deleted] - 2022-01-26 22:04 + 2022-01-26 22:04 - + anon940431 - + edit cell - + Manos Antonakakis (Georgia Institute of Technology) - + JoinYear - + 2019 - + 2014 - 2022-01-26 18:10 + 2022-01-26 18:10 - + anon939632 - + edit cell - + Nika Haghtalab (University of California, Berkeley) - + JoinYear - + 2019 - + 2021 - 2022-01-26 17:08 + 2022-01-26 17:08 - + anon939573 - + edit cell - + Afsaneh Doryab (University of Virginia) - + JoinYear - + - + 2019 - 2022-01-25 15:05 + 2022-01-25 15:05 - + anon932885 - + edit cell - + Gail-Joon Ahn (Arizona State University) - + Doctorate - + Aalto University School of Science - + George Mason University - 2022-01-24 05:59 + 2022-01-24 05:59 - + anon936495 - + edit cell - + - + Doctorate - + George Mason University - + Aalto University School of Science - 2022-01-20 12:50 + 2022-01-20 12:50 - + anon933502 - + new row - + Samuel B. Hopkins (Massachusetts Institute of Technology) - + FullName - + - + Samuel B. Hopkins - 2022-01-20 12:50 + 2022-01-20 12:50 - + anon933502 - + new row - + - + University - + - + Massachusetts Institute of Technology - 2022-01-20 12:50 + 2022-01-20 12:50 - + anon933502 - + new row - + - + JoinYear - + - + 2021 - 2022-01-20 12:50 + 2022-01-20 12:50 - + anon933502 - + new row - + - + SubField - + - + Algorithms & Complexity - 2022-01-20 12:50 + 2022-01-20 12:50 - + anon933502 - + new row - + - + Bachelors - + - + University of Washington - 2022-01-20 12:50 + 2022-01-20 12:50 - + anon933502 - + new row - + - + Doctorate - + - + Cornell University - 2022-01-20 12:42 + 2022-01-20 12:42 - + anon933502 - + edit cell - + Leilani Battle (University of Washington) - + JoinYear - + 2018 - + 2021 - 2022-01-20 12:42 + 2022-01-20 12:42 - + anon933502 - + edit cell - + - + University - + University of Maryland - + University of Washington - 2022-01-18 11:32 + 2022-01-18 11:32 - + anon931798 - + edit cell - + Qiong Zhang (Rutgers University) - + Bachelors - + - + National University of Singapore - 2022-01-11 21:06 + 2022-01-11 21:06 - + anon926986 - + edit cell - + Michael J. Rosulek (Oregon State University) - + SubField - + Algorithms & Complexity - + Cryptography - 2022-01-11 21:04 + 2022-01-11 21:04 - + anon926986 - + new row - + Ni Trieu (Arizona State University) - + FullName - + - + Ni Trieu - 2022-01-11 21:04 + 2022-01-11 21:04 - + anon926986 - + new row - + - + University - + - + Arizona State University - 2022-01-11 21:04 + 2022-01-11 21:04 - + anon926986 - + new row - + - + JoinYear - + - + 2020 - 2022-01-11 21:04 + 2022-01-11 21:04 - + anon926986 - + new row - + - + SubField - + - + Cryptography - 2022-01-11 21:04 + 2022-01-11 21:04 - + anon926986 - + new row - + - + Bachelors - + - + Saint Petersburg State Polytechnical University - 2022-01-11 21:04 + 2022-01-11 21:04 - + anon926986 - + new row - + - + Doctorate - + - + Oregon State University - 2022-01-11 12:13 + 2022-01-11 12:13 - + anon926720 - + edit cell - + Jeffrey Rzeszotarski (Cornell University) - + SubField - + Visualization - + Human-Computer Interaction - 2022-01-11 12:12 + 2022-01-11 12:12 - + anon926720 - + edit cell - + - + SubField - + - + Visualization - 2022-01-11 03:02 + 2022-01-11 03:02 - + drafty - + edit cell - + Adam Doupé (Arizona State University) - + FullName - + Adam Doup - + Adam Doupé - 2022-01-08 02:43 + 2022-01-08 02:43 - + anon922843 - + edit cell - + - + FullName - + Adam Doupé - + Adam Doup - 2022-01-07 01:24 + 2022-01-07 01:24 - + anon916562 - + edit cell - + - + FullName - + Adam Doup - + Adam Doupé - 2022-01-07 01:22 + 2022-01-07 01:22 - + anon916562 - + edit cell - + James McCann (Carnegie Mellon University) - + Bachelors - + - + University of Michigan - 2022-01-04 15:53 + 2022-01-04 15:53 - + anon917800 - + del row - + Shaun K. Kane (University of Colorado Boulder) - + - + Shaun K. Kane (University of Colorado Boulder) - + [row deleted] - 2022-01-03 15:50 + 2022-01-03 15:50 - + anon917031 - + edit cell - + David Yarowsky (Johns Hopkins University) - + JoinYear - + - + 1996 - 2022-01-03 15:10 + 2022-01-03 15:10 - + anon917031 - + edit cell - + W. Keith Edwards (Georgia Institute of Technology) - + JoinYear - + - + 2004 - 2021-12-28 22:11 + 2021-12-28 22:11 - + anon912735 - + new row - + James Wallace (University of Waterloo) - + FullName - + - + James Wallace - 2021-12-28 22:11 + 2021-12-28 22:11 - + anon912735 - + new row - + - + University - + - + University of Waterloo - 2021-12-28 22:11 + 2021-12-28 22:11 - + anon912735 - + new row - + - + JoinYear - + - + 2014 - 2021-12-28 22:11 + 2021-12-28 22:11 - + anon912735 - + new row - + - + SubField - + - + Human-Computer Interaction - 2021-12-28 22:11 + 2021-12-28 22:11 - + anon912735 - + new row - + - + Bachelors - + - + University of Waterloo - 2021-12-28 22:11 + 2021-12-28 22:11 - + anon912735 - + new row - + - + Doctorate - + - + University of Waterloo - 2021-12-27 11:39 + 2021-12-27 11:39 - + abdullah0245 - + edit cell - + Adam Doupé (Arizona State University) - + FullName - + Adam Doupé - + Adam Doup - 2021-12-26 12:24 + 2021-12-26 12:24 - + anon911083 - + edit cell - + Hilol Kargupta (Arizona State University) - + University - + University of Maryland, Baltimore County - + Arizona State University - 2021-12-25 02:52 + 2021-12-25 02:52 - + anon909898 - + edit cell - + Peter J. Haas (University of Massachusetts Amherst) - + Bachelors - + University of Michigan - + Harvard University - 2021-12-25 02:36 + 2021-12-25 02:36 - + anon909898 - + edit cell - + Luis Gravano (Columbia University) - + Bachelors - + Brown University - + Escuela Superior Politecnica del Litoral - 2021-12-25 02:34 + 2021-12-25 02:34 - + anon909898 - + edit cell - + Larry Wasserman (Carnegie Mellon University) - + Bachelors - + Brown University - + University of Toronto - 2021-12-25 02:32 + 2021-12-25 02:32 - + anon909898 - + edit cell - + Kate Saenko (Boston University) - + Bachelors - + Brown University - + University of British Columbia - 2021-12-25 02:10 + 2021-12-25 02:10 - + anon909898 - + edit cell - + Ramesh K. Sitaraman (University of Massachusetts Amherst) - + Bachelors - + Indian Institute of Technology Kanpur - + Indian Institute of Technology Madras - 2021-12-25 02:10 + 2021-12-25 02:10 - + anon909898 - + edit cell - + - + JoinYear - + 1990 - + 1993 - 2021-12-23 19:29 + 2021-12-23 19:29 - + drafty - + edit cell - + Xinyu Xing (Northwestern University) - + JoinYear - + 2015 - + 2021 - 2021-12-23 19:29 + 2021-12-23 19:29 - + drafty - + edit cell - + - + Bachelors - + Beihang University - + Beijing University of Aeronautics and Astronautics - 2021-12-23 19:28 + 2021-12-23 19:28 - + drafty - + edit cell - + - + University - + Pennsylvania State University - + Northwestern University - 2021-12-23 19:28 + 2021-12-23 19:28 - + drafty - + new row - + Emma Alexander (Northwestern University) - + FullName - + - + Emma Alexander - 2021-12-23 19:28 + 2021-12-23 19:28 - + drafty - + new row - + - + University - + - + Northwestern University - 2021-12-23 19:28 + 2021-12-23 19:28 - + drafty - + new row - + - + JoinYear - + - + 2021 - 2021-12-23 19:28 + 2021-12-23 19:28 - + drafty - + new row - + - + SubField - + - + Computer Vision - 2021-12-23 19:28 + 2021-12-23 19:28 - + drafty - + new row - + - + Bachelors - + - + Yale University - 2021-12-23 19:28 + 2021-12-23 19:28 - + drafty - + new row - + - + Doctorate - + - + Harvard University - 2021-12-23 19:25 + 2021-12-23 19:25 - + drafty - + new row - + Spencer Bryngelson (Georgia Institute of Technology) - + FullName - + - + Spencer Bryngelson - 2021-12-23 19:25 + 2021-12-23 19:25 - + drafty - + new row - + - + University - + - + Georgia Institute of Technology - 2021-12-23 19:25 + 2021-12-23 19:25 - + drafty - + new row - + - + JoinYear - + - + 2021 - 2021-12-23 19:25 + 2021-12-23 19:25 - + drafty - + new row - + - + SubField - + - + High-Performance Computing - 2021-12-23 19:25 + 2021-12-23 19:25 - + drafty - + new row - + - + Bachelors - + - + University of Michigan-Dearborn - 2021-12-23 19:25 + 2021-12-23 19:25 - + drafty - + new row - + - + Doctorate - + - + University of Illinois at Urbana-Champaign - 2021-12-22 23:31 + 2021-12-22 23:31 - + anon908360 - + edit cell - + Haiyi Zhu (Carnegie Mellon University) - + University - + University of Minnesota - + Carnegie Mellon University - 2021-12-22 23:30 + 2021-12-22 23:30 - + anon908360 - + edit cell - + Ling Ren (University of Illinois at Urbana-Champaign) - + Bachelors - + - + Tsinghua University - 2021-12-22 23:30 + 2021-12-22 23:30 - + anon908360 - + edit cell - + Adam Doupé (Arizona State University) - + Bachelors - + Tsinghua University - + University of California, Santa Barbara - 2021-12-22 23:29 + 2021-12-22 23:29 - + anon908360 - + new row - + Wenzhen Yuan (Carnegie Mellon University) - + FullName - + - + Wenzhen Yuan - 2021-12-22 23:29 + 2021-12-22 23:29 - + anon908360 - + new row - + - + University - + - + Carnegie Mellon University - 2021-12-22 23:29 + 2021-12-22 23:29 - + anon908360 - + new row - + - + JoinYear - + - + 2019 - 2021-12-22 23:29 + 2021-12-22 23:29 - + anon908360 - + new row - + - + SubField - + - + Robotics - 2021-12-22 23:29 + 2021-12-22 23:29 - + anon908360 - + new row - + - + Bachelors - + - + Tsinghua University - 2021-12-22 23:29 + 2021-12-22 23:29 - + anon908360 - + new row - + - + Doctorate - + - + Massachusetts Institute of Technology - 2021-12-22 23:24 + 2021-12-22 23:24 - + anon908360 - + edit cell - + Adam Doupé (Arizona State University) - + Bachelors - + University of California, Santa Barbara - + Tsinghua University - 2021-12-21 14:15 + 2021-12-21 14:15 - + anon907408 - + edit cell - + Madhusudhan Govindaraju (Binghamton University) - + SubField - + High-Performance Computing - + Algorithms & Complexity - 2021-12-14 07:35 + 2021-12-14 07:35 - + anon885651 - + edit cell - + Y. Charlie Hu (Purdue University) - + SubField - + Computer Networks - + Logic & Verification - 2021-12-12 07:23 + 2021-12-12 07:23 - + anon899216 - + edit cell - + Elena Agapie (University of California, Irvine) - + Bachelors - + Jacobs University - + Jacobs University Bremen - 2021-12-12 05:51 + 2021-12-12 05:51 - + anon899091 - + edit cell - + Ranjit Jhala (University of California, San Diego) - + FullName - + - + Ranjit Jhala - 2021-12-11 20:53 + 2021-12-11 20:53 - + anon898635 - + edit cell - + Sham Kakade (University of Washington) - + SubField - + Artificial Intelligence - + Machine Learning & Data Mining - 2021-12-07 13:49 + 2021-12-07 13:49 - + anon895541 - + del row - + Ted Herman (University of Iowa) - + - + Ted Herman (University of Iowa) - + [row deleted] - 2021-12-07 12:44 + 2021-12-07 12:44 - + anon894534 - + edit cell - + Adam Klivans (University of Texas at Austin) - + SubField - + Natural Language Processing - + Artificial Intelligence - 2021-12-07 12:44 + 2021-12-07 12:44 - + anon894534 - + edit cell - + - + SubField - + Artificial Intelligence - + Natural Language Processing - 2021-12-07 11:22 + 2021-12-07 11:22 - + anon848926 - + edit cell - + Laurent Lessard (Northeastern University) - + JoinYear - + 2015 - + 2020 - 2021-12-07 11:21 + 2021-12-07 11:21 - + anon848926 - + edit cell - + - + University - + University of Wisconsin-Madison - + Northeastern University - 2021-12-01 12:33 + 2021-12-01 12:33 - + anon891012 - + edit cell - + Ketan D. Mulmuley (University of Chicago) - + Bachelors - + - + Indian Institute of Technology Bombay - 2021-12-01 12:33 + 2021-12-01 12:33 - + anon891012 - + edit cell - + - + Bachelors - + - + Indian Institute of Technology Bombay - 2021-11-30 13:11 + 2021-11-30 13:11 - + anon713190 - + edit cell - + Abdol-Hossein Esfahanian (McGill University) - + University - + Michigan State University - + McGill University - 2021-11-29 16:58 + 2021-11-29 16:58 - + anon761709 - + edit cell - + Adam Doupé (Arizona State University) - + FullName - + Adam Doup - + Adam Doupé - 2021-11-29 16:57 + 2021-11-29 16:57 - + anon761709 - + edit cell - + Arun Kumar (University of California, San Diego) - + University - + North Carolina State University - + University of California, San Diego - 2021-11-29 08:57 + 2021-11-29 08:57 - + anon889465 - + new row - + Zachary Chase Lipton (Carnegie Mellon University) - + FullName - + - + Zachary Chase Lipton - 2021-11-29 08:57 + 2021-11-29 08:57 - + anon889465 - + new row - + - + University - + - + Carnegie Mellon University - 2021-11-29 08:57 + 2021-11-29 08:57 - + anon889465 - + new row - + - + JoinYear - + - + 2018 - 2021-11-29 08:57 + 2021-11-29 08:57 - + anon889465 - + new row - + - + SubField - + - + Machine Learning & Data Mining - 2021-11-29 08:57 + 2021-11-29 08:57 - + anon889465 - + new row - + - + Bachelors - + - + Columbia University - 2021-11-29 08:57 + 2021-11-29 08:57 - + anon889465 - + new row - + - + Doctorate - + - + University of California, San Diego - 2021-11-29 08:43 + 2021-11-29 08:43 - + anon889465 - + edit cell - + Shubham Tulsiani (Carnegie Mellon University) - + SubField - + Robotics - + Computer Vision - 2021-11-29 05:57 + 2021-11-29 05:57 - + anon889382 - + edit cell - + Arun Kumar (University of California, San Diego) - + University - + University of California, San Diego - + North Carolina State University - 2021-11-29 05:57 + 2021-11-29 05:57 - + anon889382 - + edit cell - + David J. Kriegman (University of California, San Diego) - + SubField - + Computer Vision - + Artificial Intelligence - 2021-11-27 22:23 + 2021-11-27 22:23 - + anon778602 - + edit cell - + Adam Doupé (Arizona State University) - + FullName - + Adam Doupé - + Adam Doup - 2021-11-26 15:07 + 2021-11-26 15:07 - + anon886874 - + edit cell - + Edward F. Gehringer (North Carolina State University) - + Bachelors - + Wayne State University - + University of Detroit Mercy - 2021-11-26 15:06 + 2021-11-26 15:06 - + anon886874 - + edit cell - + Donald L. Bitzer (North Carolina State University) - + JoinYear - + 1990 - + 1989 - 2021-11-26 15:06 + 2021-11-26 15:06 - + anon886874 - + edit cell - + - + Bachelors - + - + University of Illinois at Urbana-Champaign - 2021-11-26 14:33 + 2021-11-26 14:33 - + anon886874 - + edit cell - + Blair D. Sullivan (University of Utah) - + JoinYear - + 2013 - + 2019 - 2021-11-26 14:33 + 2021-11-26 14:33 - + anon886874 - + edit cell - + - + University - + North Carolina State University - + University of Utah - 2021-11-24 15:15 + 2021-11-24 15:15 - + anon761709 - + new row - + Colin Raffel (University of North Carolina at Chapel Hill) - + FullName - + - + Colin Raffel - 2021-11-24 15:15 + 2021-11-24 15:15 - + anon761709 - + new row - + - + University - + - + University of North Carolina at Chapel Hill - 2021-11-24 15:15 + 2021-11-24 15:15 - + anon761709 - + new row - + - + JoinYear - + - + 2020 - 2021-11-24 15:15 + 2021-11-24 15:15 - + anon761709 - + new row - + - + SubField - + - + Natural Language Processing - 2021-11-24 15:15 + 2021-11-24 15:15 - + anon761709 - + new row - + - + Bachelors - + - + Oberlin College - 2021-11-24 15:15 + 2021-11-24 15:15 - + anon761709 - + new row - + - + Doctorate - + - + Columbia University - 2021-11-24 13:15 + 2021-11-24 13:15 - + anon885890 - + edit cell - + Lawrence Carin (Arizona State University) - + University - + Duke University - + Arizona State University - 2021-11-24 12:50 + 2021-11-24 12:50 - + anon885890 - + edit cell - + Alessandro Acquisti (Arizona State University) - + University - + Carnegie Mellon University - + Arizona State University - 2021-11-22 13:53 + 2021-11-22 13:53 - + anon275383 - + edit cell - + Seong Jae Hwang (University of Pittsburgh) - + SubField - + Machine Learning & Data Mining - + Computer Vision - 2021-11-22 13:50 + 2021-11-22 13:50 - + anon275383 - + edit cell - + Rebecca Hwa (University of Pittsburgh) - + SubField - + Machine Learning & Data Mining - + Natural Language Processing - 2021-11-22 13:46 + 2021-11-22 13:46 - + anon275383 - + edit cell - + Kirk Pruhs (University of Pittsburgh) - + JoinYear - + 2008 - + 2001 - 2021-11-22 13:39 + 2021-11-22 13:39 - + anon275383 - + edit cell - + Heng Huang (University of Pittsburgh) - + JoinYear - + - + 2017 - 2021-11-22 13:37 + 2021-11-22 13:37 - + anon275383 - + edit cell - + Erin Walker (University of Pittsburgh) - + JoinYear - + 2013 - + 2019 - 2021-11-22 00:12 + 2021-11-22 00:12 - + anon877649 - + edit cell - + Ranjit Jhala (University of California, San Diego) - + FullName - + Ranjit Jhala - + - 2021-11-20 07:37 + 2021-11-20 07:37 - + anon881639 - + edit cell - + Ian A. Kash (Arizona State University) - + University - + University of Illinois at Chicago - + Arizona State University - 2021-11-16 08:52 + 2021-11-16 08:52 - + anon877062 - + new row - + a (Yale University) - + FullName - + - + a - 2021-11-16 08:52 + 2021-11-16 08:52 - + anon877062 - + new row - + - + University - + - + Yale University - 2021-11-16 08:52 + 2021-11-16 08:52 - + anon877062 - + new row - + - + JoinYear - + - + - 2021-11-16 08:52 + 2021-11-16 08:52 - + anon877062 - + new row - + - + SubField - + - + - 2021-11-16 08:52 + 2021-11-16 08:52 - + anon877062 - + new row - + - + Bachelors - + - + - 2021-11-16 08:52 + 2021-11-16 08:52 - + anon877062 - + new row - + - + Doctorate - + - + - 2021-11-15 14:22 + 2021-11-15 14:22 - + anon877867 - + edit cell - + Philip S. Thomas (University of Massachusetts Amherst) - + Bachelors - + Case Western Reserve University - + College of Engineering, Guindy - 2021-11-15 10:48 + 2021-11-15 10:48 - + anon877773 - + edit cell - + Guoliang Xue (Arizona State University) - + SubField - + Machine Learning & Data Mining - + Natural Language Processing - 2021-11-14 03:54 + 2021-11-14 03:54 - + anon876819 - + edit cell - + Sven Koenig (University of Southern California) - + FullName - + veSn Koenig - + Sven Koenig - 2021-11-13 20:04 + 2021-11-13 20:04 - + anon706872 - + edit cell - + not exist, plz delete (Carnegie Mellon University) - + FullName - + Guangwen Yang - + not exist, plz delete - 2021-11-13 18:17 + 2021-11-13 18:17 - + anon706872 - + edit cell - + Oussama Khatib (Stanford University) - + FullName - + Arizona State University - + Oussama Khatib - 2021-11-13 18:17 + 2021-11-13 18:17 - + anon706872 - + edit cell - + - + FullName - + Oussama Khatib - + Arizona State University - 2021-11-13 18:16 + 2021-11-13 18:16 - + anon706872 - + edit cell - + James H. Waldo (Harvard University) - + Bachelors - + University - + University of Utah - 2021-11-13 18:16 + 2021-11-13 18:16 - + anon706872 - + edit cell - + - + Bachelors - + - + University - 2021-11-12 10:02 + 2021-11-12 10:02 - + anon848188 - + edit cell - + Xi Chen (New York University) - + FullName - + Xi Chen (2) - + Xi Chen - 2021-11-10 09:29 + 2021-11-10 09:29 - + anon848188 - + edit cell - + Andrea Grimes Parker (Georgia Institute of Technology) - + University - + Northeastern University - + Georgia Institute of Technology - 2021-11-10 05:27 + 2021-11-10 05:27 - + anon873710 - + edit cell - + Aviral Shrivastava (Binghamton University) - + University - + Arizona State University - + Binghamton University - 2021-11-10 05:27 + 2021-11-10 05:27 - + anon873710 - + edit cell - + Baoxin Li (Binghamton University) - + University - + Arizona State University - + Binghamton University - 2021-11-10 05:26 + 2021-11-10 05:26 - + anon873710 - + edit cell - + Dijiang Huang (Arizona State University) - + FullName - + sfsf - + Dijiang Huang - 2021-11-10 05:26 + 2021-11-10 05:26 - + anon873710 - + edit cell - + - + FullName - + Dijiang Huang - + sfsf - 2021-11-04 18:39 + 2021-11-04 18:39 - + anon869679 - + edit cell - + Yulia Tsvetkov (University of Washington) - + University - + Carnegie Mellon University - + University of Washington - 2021-11-04 18:38 + 2021-11-04 18:38 - + anon869679 - + edit cell - + Nika Haghtalab (University of California, Berkeley) - + University - + Cornell University - + University of California, Berkeley - 2021-11-04 18:38 + 2021-11-04 18:38 - + anon869679 - + edit cell - + Yulia Tsvetkov (University of Washington) - + University - + Carnegie Mellon University - + University of Washington - 2021-11-04 17:23 + 2021-11-04 17:23 - + anon868703 - + edit cell - + [delete-notcs-moved] (University of Illinois at Urbana-Champaign) - + FullName - + Weng Cho Chew - + [delete-notcs-moved] - 2021-11-04 15:16 + 2021-11-04 15:16 - + anon868703 - + edit cell - + T. N. Vijaykumar (Purdue University) - + Doctorate - + Aalborg University - + University of Wisconsin-Madison - 2021-11-03 10:31 + 2021-11-03 10:31 - + abhigyanbajpai13 - + edit cell - + - + Doctorate - + University of Wisconsin-Madison - + Aalborg University - 2021-11-03 00:18 + 2021-11-03 00:18 - + anon868367 - + edit cell - + Arunabha Sen (Arizona State University) - + JoinYear - + 1950 - + 1987 - 2021-11-03 00:17 + 2021-11-03 00:17 - + anon868366 - + edit cell - + - + JoinYear - + 1950 - + 1987 - 2021-11-03 00:17 + 2021-11-03 00:17 - + anon868363 - + edit cell - + - + JoinYear - + 1950 - + 1987 - 2021-11-03 00:16 + 2021-11-03 00:16 - + anon868363 - + edit cell - + - + JoinYear - + 1987 - + 1950 - 2021-10-31 12:21 + 2021-10-31 12:21 - + anon761709 - + edit cell - + Adam Chlipala (Massachusetts Institute of Technology) - + FullName - + hi - + Adam Chlipala - 2021-10-30 14:28 + 2021-10-30 14:28 - + anon864648 - + edit cell - + - + FullName - + Adam Chlipala - + hi - 2021-10-29 01:26 + 2021-10-29 01:26 - + anon863684 - + edit cell - + [delete-notcs-moved] (University of Illinois at Urbana-Champaign) - + SubField - + Measurement & Perf. Analysis - + Economics & Computation - 2021-10-27 07:01 + 2021-10-27 07:01 - + anon862319 - + edit cell - + Baoxin Li (Binghamton University) - + SubField - + Computer Vision - + Robotics - 2021-10-26 10:02 + 2021-10-26 10:02 - + anon857644 - + edit cell - + Carole-Jean Wu (Arizona State University) - + SubField - + Artificial Intelligence - + Comp. Bio & Bioinformatics - 2021-10-23 21:39 + 2021-10-23 21:39 - + anon761709 - + edit cell - + Soheil Feizi (University of Maryland) - + Bachelors - + - + Sharif University of Technology - 2021-10-23 21:37 + 2021-10-23 21:37 - + anon761709 - + new row - + Andrew Head (University of Pennsylvania) - + FullName - + - + Andrew Head - 2021-10-23 21:37 + 2021-10-23 21:37 - + anon761709 - + new row - + - + University - + - + University of Pennsylvania - 2021-10-23 21:37 + 2021-10-23 21:37 - + anon761709 - + new row - + - + JoinYear - + - + 2022 - 2021-10-23 21:37 + 2021-10-23 21:37 - + anon761709 - + new row - + - + SubField - + - + Human-Computer Interaction - 2021-10-23 21:37 + 2021-10-23 21:37 - + anon761709 - + new row - + - + Bachelors - + - + University of Pittsburgh - 2021-10-23 21:37 + 2021-10-23 21:37 - + anon761709 - + new row - + - + Doctorate - + - + University of California, Berkeley - 2021-10-23 21:35 + 2021-10-23 21:35 - + anon761709 - + new row - + Danae Metexa (University of Pennsylvania) - + FullName - + - + Danae Metexa - 2021-10-23 21:35 + 2021-10-23 21:35 - + anon761709 - + new row - + - + University - + - + University of Pennsylvania - 2021-10-23 21:35 + 2021-10-23 21:35 - + anon761709 - + new row - + - + JoinYear - + - + 2022 - 2021-10-23 21:35 + 2021-10-23 21:35 - + anon761709 - + new row - + - + SubField - + - + Human-Computer Interaction - 2021-10-23 21:35 + 2021-10-23 21:35 - + anon761709 - + new row - + - + Bachelors - + - + Brown University diff --git a/backend/views/partials/edit_history/csprofessors.hbs b/backend/views/partials/edit_history/csprofessors.hbs index 492f4058..7458d8a1 100644 --- a/backend/views/partials/edit_history/csprofessors.hbs +++ b/backend/views/partials/edit_history/csprofessors.hbs @@ -15,184 +15,184 @@ - 197 - 316 - 5080 - edit cell - Boss Man - Augusta University - Doctorate - Cornell University - - 2020-12-01 11:03:10 + 197 + 316 + 5080 + edit cell + Boss Man + Augusta University + Doctorate + Cornell University + + 2020-12-01 11:03:10 - 197 - 316 - 5080 - edit cell - Boss Man - Augusta University - Bachelors - Ben-Gurion University of the Negev - Israel - - 2020-12-01 11:03:07 + 197 + 316 + 5080 + edit cell + Boss Man + Augusta University + Bachelors + Ben-Gurion University of the Negev - Israel + + 2020-12-01 11:03:07 - 197 - 316 - 5080 - edit cell - Boss Man - Augusta University - SubField - The Web & information retrieval - - 2020-12-01 11:03:04 + 197 + 316 + 5080 + edit cell + Boss Man + Augusta University + SubField + The Web & information retrieval + + 2020-12-01 11:03:04 - 197 - 316 - 5080 - edit cell - Boss Man - Augusta University - JoinYear - 2020 - - 2020-12-01 11:02:51 + 197 + 316 + 5080 + edit cell + Boss Man + Augusta University + JoinYear + 2020 + + 2020-12-01 11:02:51 - 197 - 316 - 5080 - edit cell - Boss Man - Augusta University - University - Augusta University - - 2020-12-01 11:02:46 + 197 + 316 + 5080 + edit cell + Boss Man + Augusta University + University + Augusta University + + 2020-12-01 11:02:46 - 197 - 316 - 5080 - edit cell - Boss Man - Augusta University - FullName - Boss Man - - 2020-12-01 11:02:43 + 197 + 316 + 5080 + edit cell + Boss Man + Augusta University + FullName + Boss Man + + 2020-12-01 11:02:43 - 197 - 312 - 7 - edit cell - For Example - Arizona State University - FullName - For Example - Baoxin Lina - 2020-11-26 18:00:13 + 197 + 312 + 7 + edit cell + For Example + Arizona State University + FullName + For Example + Baoxin Lina + 2020-11-26 18:00:13 - 197 - 311 - 5080 - new row - Boss Man - Augusta University - FullName - - - 2020-11-25 12:23:42 + 197 + 311 + 5080 + new row + Boss Man + Augusta University + FullName + + + 2020-11-25 12:23:42 - 197 - 311 - 5080 - new row - Boss Man - Augusta University - University - - - 2020-11-25 12:23:42 + 197 + 311 + 5080 + new row + Boss Man + Augusta University + University + + + 2020-11-25 12:23:42 - 197 - 311 - 5080 - new row - Boss Man - Augusta University - JoinYear - - - 2020-11-25 12:23:42 + 197 + 311 + 5080 + new row + Boss Man + Augusta University + JoinYear + + + 2020-11-25 12:23:42 - 197 - 311 - 5080 - new row - Boss Man - Augusta University - SubField - - - 2020-11-25 12:23:42 + 197 + 311 + 5080 + new row + Boss Man + Augusta University + SubField + + + 2020-11-25 12:23:42 - 197 - 311 - 5080 - new row - Boss Man - Augusta University - Bachelors - - - 2020-11-25 12:23:42 + 197 + 311 + 5080 + new row + Boss Man + Augusta University + Bachelors + + + 2020-11-25 12:23:42 - 197 - 311 - 5080 - new row - Boss Man - Augusta University - Doctorate - - - 2020-11-25 12:23:42 + 197 + 311 + 5080 + new row + Boss Man + Augusta University + Doctorate + + + 2020-11-25 12:23:42 - 52 - 133 - 4 - edit cell - Ashraf Gaffar - Made this up - University - Made this up - Arizona State University - 2020-09-18 11:44:50 + 52 + 133 + 4 + edit cell + Ashraf Gaffar + Made this up + University + Made this up + Arizona State University + 2020-09-18 11:44:50 - 52 - 133 - 2 - edit cell - Andréa W. Richa - Arizona State University - JoinYear - 1987 - 1998 - 2020-09-18 11:32:21 + 52 + 133 + 2 + edit cell + Andréa W. Richa + Arizona State University + JoinYear + 1987 + 1998 + 2020-09-18 11:32:21 diff --git a/util/database/migrations_old/helpus.sql b/util/database/migrations_old/helpus.sql index 87469d44..92c3d3b1 100644 --- a/util/database/migrations_old/helpus.sql +++ b/util/database/migrations_old/helpus.sql @@ -6,7 +6,7 @@ create table HelpUs idUniqueID int(11) not null, helpUsType varchar(200) not null, question varchar(2500) not null, - answer varchar(2500), + answer varchar(2500), start timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, answered timestamp, showAnother timestamp, diff --git a/util/database/sql/drafty_profs_starter_db.sql b/util/database/sql/drafty_profs_starter_db.sql index 62f7ca0d..8b565d94 100644 --- a/util/database/sql/drafty_profs_starter_db.sql +++ b/util/database/sql/drafty_profs_starter_db.sql @@ -139,7 +139,7 @@ CREATE DEFINER=`root`@`localhost` PROCEDURE `new_suggestion_new_row`( OUT idSuggestion INT ) BEGIN - DECLARE idSuggestion_var INT; + DECLARE idSuggestion_var INT; DECLARE confidence_var INT DEFAULT 1; START TRANSACTION;