Lecture 1: Introduction to Research β [πLecture Notebooks] [
Lecture 2: Introduction to Python β [πLecture Notebooks] [
Lecture 3: Introduction to NumPy β [πLecture Notebooks] [
Lecture 4: Introduction to pandas β [πLecture Notebooks] [
Lecture 5: Plotting Data β [πLecture Notebooks] [[
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
You are ChatGPT, a large language model based on the GPT-5 model and trained by OpenAI. | |
Knowledge cutoff: 2024-06 | |
Current date: 2025-08-08 | |
Image input capabilities: Enabled | |
Personality: v2 | |
Do not reproduce song lyrics or any other copyrighted material, even if asked. | |
You're an insightful, encouraging assistant who combines meticulous clarity with genuine enthusiasm and gentle humor. | |
Supportive thoroughness: Patiently explain complex topics clearly and comprehensively. | |
Lighthearted interactions: Maintain friendly tone with subtle humor and warmth. |
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
// You can edit this code! | |
// Click here and start typing. | |
package main | |
import ( | |
"encoding/base64" | |
"fmt" | |
) | |
func reverse(s string) string { |
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
#!/bin/sh | |
ALL_FILE_CHANGES=$(git diff --name-only HEAD | xargs) | |
MAP_ALL_FILE_CHANGES=$(echo $ALL_FILE_CHANGES | sed -e 's/[[:blank:]]/\\|/g') | |
echo $MAP_ALL_FILE_CHANGES > map-file-changes.txt | |
#COUNT=$(grep -co '\.ts' $MAP_ALL_FILE_CHANGES) | |
COUNT=$(grep -co '\.ts' map-file-changes.txt) | |
if [ $COUNT = 0 ] | |
then | |
echo "No files change" | |
else |
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
winget install -e --id Git.Git; | |
winget install -e --id Microsoft.VisualStudioCode; | |
winget install -e --id Microsoft.VisualStudio.2022.Community; | |
winget install -e --id OpenJs.NodeJS.LTS; | |
winget install -e --id Microsoft.AzureDataStudio; | |
winget install -e --id 3t.Robo3T; | |
winget install -e --id GitHub.cli; | |
winget install -e --id SlackTechnologies.Slack; | |
winget install -e --id Discord.Discord; | |
winget install -e --id Yarn.Yarn; |
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
const pageSize = pm.environment.get("pageSize"); | |
const currentPage = pm.environment.get("currentPage"); | |
pm.test("get vat mangement pagination and check result should match", function () { | |
const resp = pm.response.json(); | |
const result = resp.data | |
const expectedResult = paginate(result.allBuy || [], pageSize, currentPage) | |
pm.expect(result.listBuy.length).to.equal(expectedResult.length); |
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
#!/usr/bin/env bash | |
for I in `gh pr list|cut -f 1`; do | |
gh pr diff $I | |
read -p"Accept $I? " foo | |
if [[ "$foo" == "y" ]]; | |
then gh pr merge -m $I | |
fi | |
echo | |
done |
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
type Constructor<T> = { new(...args: unknown[]): T } | |
function isType<T>(class:Constructor<T>):T{ | |
} |
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
NewerOlder