미드에서 인상적인 장면이 있었는데, 정확한 대사가 기억이 나지 않아서 ChatGpt에 질문함.

 

Q. main characters in 3rd rock from the sun
A. The main characters in 3rd Rock from the Sun are: 1. Dick Solomon (John Lithgow) 2. Sally Solomon (Kristen Johnston) 3. Tommy Solomon (Joseph Gordon-Levitt) 4. Harry Solomon (French Stewart) 5. Mary Albright (Jane Curtin) 6. Dr. Albright (Wayne Knight) 7. Nina Campbell (Simbi Khali) 8. Don Orville (Jonathan Hogan) 9. Officer Don (John Michael Higgins) 10. Professor Philips (Elmarie Wendel)
 
Q. did Tommy Solomon say, "you can stop me now but you can't stop more people behind me"?
A. No, this line is not said by Tommy Solomon in 3rd Rock from the Sun.
 
Q. Who said something like that?
A. This line was said by the character Chantel in the movie The Hate U Give.
 
Q. Tommy Solomon said something like, "you can stop me now but there are thousands of people behind me seeking freedom." Which episode was it?
A. This line was said by Tommy Solomon in the Season 4 episode of 3rd Rock from the Sun titled "The Freedom of Speech".
 
Q. What is the exact quote of that line?
A. The exact quote is,You can stop me, but you can't stop thousands of people behind me, seeking freedom.
 
Q. Which episode was it?
A. This line was said by Tommy Solomon in the Season 4 episode of 3rd Rock from the Sun titled "The Freedom of Speech".

 

확인 결과 답변이 잘못됨을 확인함.

 

정확한 답은 Season 6, Episode 8. Red, White & Dick.

 

Fine! Go ahead! Strike me down! But there are many more like me who will stand up to you, who will pick up the burning torch of freedom and hold it high in my place! And it's not a question of if or when someone picks up that torch, it's a question of who!

 

하지만 ChatGpt도 인정을 해줄 수 있는 부분은 부정확한 대사를 토대로 질문을 했는데, freedom of speech라는 키워드를 도출해내서, 이를 토대로 답변을 찾을 수 있게 되었음. 기존에 google검색으로는 몇시간을 헤매도 찾지 못했음에 비교하면 상대적 우위. 키워드 도출, 문맥 변경(영문 첨삭지도) 등에는 유용한 수준이라고 보임.

 

 

Speech of freedom! (3rd Rock from the Sun) (yumeai, 2013)
 
※ 관련링크
 
 

OpenAI API

An API for accessing new AI models developed by OpenAI

platform.openai.com

 
Tommy Quote #347 - 3rd Rock from the Sun - TV Quotes
 

Tommy Quote #347 - 3rd Rock from the Sun - TV Quotes

A funny quote from Tommy in the 3rd Rock from the Sun episode `Red, White & Dick`.

tvquot.es

 

3rd Rock from the Sun: Season 6, Episode 8 script | Subs like Script

 

3rd Rock from the Sun: Season 6, Episode 8 script | Subs like Script

3rd Rock from the Sun (1996–2001): Season 6, Episode 8 - Red, White & Dick - full transcript Dick loves America, but does America love Dick? Announcer: Please rise for the national anthem. Oh. That's the most pathetic wave I've ever seen. These people ar

subslikescript.com

 

'외국어 > 영어' 카테고리의 다른 글

미국 TV시리즈 추천: Undercover Billionaire Season 2  (0) 2023.04.11
영어 작문 교정 feat. Chat GPT  (0) 2023.03.28
Recommended dramas, TV programs II  (0) 2022.06.30
Recommended dramas, TV programs  (0) 2019.07.06
유용한 단어  (0) 2016.01.21

Since Yahoo doesn't provide the data in Excel or Txt format, I need to strip tags and remove blanks.

PlayerList(MLB)_v0.1_2023.xls
0.15MB
PlayerList(MLB)_v0.2_2023.xls
0.17MB

 

This is only the draft version and the VBA code will be updated.

 

Option Explicit

' Revision History:
' Rev       Date(yyyy/mm/dd)        Description
' **************************************************************************************
' 0.1       2023-Feb-03             delRow(), findValue()
' 0.2       2023-Feb-03             getTeamName()
' **************************************************************************************

Sub delRow()
    'MsgBox ActiveCell.Range
    Dim lRowCnt, lCntAA, lCntAB As Long
    Dim rngAll As Range

    Application.ScreenUpdating = False
    Call stripTag 'remove tags
    
    lCntAA = Application.CountA(Range("A:A")) 'count of non blank cells under A
    lCntAB = Application.CountA(Range("B:B")) 'count of non blank cells under B
    
    If (lCntAA < lCntAB) Then '14 < 31
        'MsgBox "lCntAA < lCntAB"
        MsgBox "Columns are not destroyed."
        Columns("A").Delete
    Else '145 > 0
        'MsgBox "lCntAA >= lCntAB"
        MsgBox "Columns are split into rows."
    End If
    
    Cells(1, "A").Select
    Set rngAll = Range([A1], Cells(Rows.Count, "A").End(xlUp))
    lRowCnt = rngAll.Rows.Count
    Call findValue(lRowCnt) 'Delete the rows if the values are not needed
 
    'Cells(1, "B").Select
    'Set rngAll = Range([B1], Cells(Rows.Count, "B").End(xlUp))
    'lRowCnt = rngAll.Rows.Count
    'Call findValue(lRowCnt) 'Delete the rows if the values are not needed
    
    'Columns("A").SpecialCells(4).EntireRow.Delete 'delete empty cell rows
    'MsgBox Application.CountA(Range("A:A"))
    Range("A:A").RemoveDuplicates Columns:=1, Header:=xlYes 'delete ""
 
    Range("A1").Select
    ActiveWindow.ScrollRow = 1
    Application.ScreenUpdating = True
End Sub

Sub stripTag()
    'Cells.Select
    'Dim rngSelected As Range
    'Set rngSelected = New Cells.Select
    'Call stripHtml(rngSelected) 'remove html
    Cells.Hyperlinks.Delete     'remove hyperlink
    ActiveSheet.Pictures.Delete 'remove pictures
    
    'MsgBox Application.CountA(Range("A:A")) & ", " & Application.CountA(Range("B:B"))
    'MsgBox Len(Range("A9:A9"))
End Sub

Private Sub findValue(ByVal lRowCnt As Long)
    Dim i, r As Integer
    Dim sSheetName As String
    Dim sActiveCellValue As String
    
    sSheetName = getTeamName
    
    For i = 1 To lRowCnt
        sActiveCellValue = ActiveCell.Value
        If IsNumeric(sActiveCellValue) Then
            Selection.EntireRow.Delete
            lRowCnt = lRowCnt - 1
            r = r + 1
        ElseIf sActiveCellValue Like "*player Notes" Or sActiveCellValue Like "Player Note" Or sActiveCellValue = "DTD" Or sActiveCellValue = sSheetName Then
            Selection.EntireRow.Delete
            lRowCnt = lRowCnt - 1
            r = r + 1
        Else
            ActiveCell.Offset(1, 0).Select
        End If
    Next i
    MsgBox r & " rows deleted"

End Sub

Private Function getTeamName() As String
    On Error GoTo ec1
    Dim sSheetName As String
    Dim vSheetName As Variant
    
    sSheetName = ActiveSheet.Name
    vSheetName = Split(sSheetName, "(")
    'MsgBox vSheetName(0)
    
    getTeamName = vSheetName(0)
ec1:

End Function

Directory: .../Wii/title/00010000/52423445

20230129.zip
0.18MB

 

20230129.zip: save files from 1-1 to 3-1

 

20230129.zip: save files from 1-1 to 3-1

 

 

Wii Longplay [035] Resident Evil 4 Wii Edition (part 1 of 4) (World of Longplays, 2015)

 

'Game > Nintendo' 카테고리의 다른 글

Nintendo Wii: NBA Jam Controls and Links  (0) 2023.01.21
Nintendo Wii: Tom Clancy's Ghost Recon Controls  (0) 2022.12.24
Nintendo Wii: Conduit 2 Controls  (0) 2022.12.20
Nintendo Wii: Monopoly Streets Review  (0) 2022.12.13
Nintendo Wii Games Review  (0) 2022.12.12
1 ··· 15 16 17 18 19 20 21 ··· 60 

글 보관함

카운터

Total : / Today : / Yesterday :
get rsstistory!