This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import csv | |
| import os | |
| input_file = "input.csv" | |
| output_file = "output.csv" | |
| input_path = os.path.join(os.path.dirname(__file__), input_file) | |
| output_path = os.path.join(os.path.dirname(__file__), output_file) | |
| with open(input_path, newline='', encoding='utf-8') as infile, open(output_path, 'w', newline='', encoding='utf-8') as outfile: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { api } from './index'; | |
| const PATH = '/v2/auth'; | |
| export function login(username: string, password: string) { | |
| return api | |
| .post(`${PATH}/login`, { | |
| username, | |
| password, | |
| type: 'family', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div> | |
| <label :for="name" class="label">{{ label }}</label> | |
| <input | |
| :id="name" | |
| ref="el" | |
| v-model="input" | |
| type="text" | |
| class="rounded-input" | |
| :required="required" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 17:46:58 | |
| // probe at 239.250,194.550 is z=-0.005000 | |
| 17:46:59 | |
| // probe at 239.250,194.550 is z=-0.002500 | |
| 17:46:59 | |
| // Starting manual Z probe. Use TESTZ to adjust position. | |
| // Finish with ACCEPT or ABORT command. | |
| 17:46:59 | |
| // Z position: ?????? --> 4.998 <-- ?????? | |
| 18:03:53 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import type { $Fetch } from 'nitropack'; | |
| import type { AsyncDataOptions } from 'nuxt/app'; | |
| import type { FetchOptions } from 'ofetch'; | |
| import { joinURL } from 'ufo'; | |
| import { z } from 'zod'; | |
| export type { $Fetch }; | |
| type Method = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| yarn test --passWithNoTests | |
| shell: /usr/bin/bash -e {0} | |
| yarn run v1.22.10 | |
| $ jest --passWithNoTests | |
| PASS src/modules/ticket/ticket.controller.spec.ts (6.959s) | |
| FAIL src/modules/nps-survey/nps-survey.service.spec.ts | |
| ● Test suite failed to run | |
| src/modules/nps-survey/nps-survey.service.ts:110:24 - error TS2769: No overload matches this call. | |
| The last overload gave the following error. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| studentID cID studentRank suggestedRank | |
| 459 5 1 1 | |
| 459 25 2 3 | |
| 459 3 3 2 | |
| 459 7 4 11 | |
| 459 20 NULL 4 | |
| 459 19 NULL 5 | |
| 459 4 NULL 6 | |
| 459 2 NULL 7 | |
| 459 14 NULL 8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT (sr.studentResponseValue * cw.categoryWeightValue) AS weightedResponse | |
| , cw.occupationalCategoryID AS cID | |
| , iqo.interviewQuestionOptionID AS oID | |
| FROM dbo.StudentResponseTable AS sr | |
| INNER JOIN dbo.InterviewQuestionOptionTable AS iqo | |
| ON (sr.interviewQuestionOptionID = iqo.interviewQuestionOptionID) | |
| AND (sr.studentID = @studentID) | |
| AND (iqo.interviewQuestionOptionActive = 1) | |
| INNER JOIN dbo.CategoryWeightTable AS cw | |
| ON (sr.interviewQuestionOptionID = cw.interviewQuestionOptionID) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "oID": 369, | |
| "oValue": 40, | |
| "tValue": "" | |
| }, | |
| { | |
| "oID": 370, | |
| "oValue": 20, | |
| "tValue": "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct | |
| Detail [empty string] | |
| ErrNumber 0 | |
| Message Object of type class java.lang.String cannot be used as an array | |
| StackTrace coldfusion.runtime.NonArrayException: Object of type class java.lang.String cannot be used as an array at coldfusion.runtime.Cast._List(Cast.java:1378) at cfQuestionFormats2ecfm1914422829$funcSINGLE.runFunction(C:\ColdFusion11\cfusion\wwwroot\myccmajors\test\includes\QuestionFormats.cfm:12) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2845) at cfoptions2ecfm700512126.runPage(C:\ColdFusion11\cfusi |
NewerOlder