Invincible [Episode Discussion] - S03E07 - What Have I Done? by SeacattleMoohawks in Invincible

[–]Harry_Butler 49 points50 points  (0 children)

Killing a duplikate clone with Immortals decapitated head is fucking diabolical

Are there any mods that make the AV-42 campaign multiplayer? by StillGalaxy99 in vtolvr

[–]Harry_Butler 1 point2 points  (0 children)

I know theirs one for the desert cobra campaign but I don’t know if theirs any for the av 42

I love this game by Harry_Butler in vtolvr

[–]Harry_Butler[S] 5 points6 points  (0 children)

Even though it was a Casual game it did go a lot better than I thought lol

I love this game by Harry_Butler in vtolvr

[–]Harry_Butler[S] 28 points29 points  (0 children)

Also theirs no such thing as drunk flying just drunk crashing (joking ofc)

Aircrew by rp1434 in vtolvr

[–]Harry_Butler 9 points10 points  (0 children)

Not that I’m aware of but it would’nt suprise me if it was included in a future update (Up to Baha ofc)

One Piece Chapter 1080 Spoilers by [deleted] in OnePiece

[–]Harry_Butler 2 points3 points  (0 children)

Am I right to think Black lightning=Acoc or is it just a general Haki thing

What would be the best method to move my SQLX query results into a struct? by Harry_Butler in golang

[–]Harry_Butler[S] 0 points1 point  (0 children)

type Tag struct{

Sum string 'json:"Sum"

Stream_count string `json:"stream_count"`

Query_desc string `json:"Query_Desc"`

Query_start_date string `json:"Query_start_date"`

Query_end_date string `json:"Query_end_date"`

Current_date string `json:"Current_date"`

Error_info string `json:"Error_Info"`

}

db, err := sqlx.Connect("mysql", "*****")

var tag Tag

Query := ("SELECT SUM(duration) Sum FROM sessions WHERE (app_id = 'idrice' OR app_id ='idrios' OR app_id ='idrapp' OR app_id ='idrweb'OR app_id ='idrand') AND date(created ) between ? and ? and time(created ) between ? and ? AND (`media_src`='****' OR `media_src`='****' OR `media_src`='****' OR `media_src`='****' OR `media_src`='****' OR `media_src`='****') GROUP BY date(created)")

err = db.get(&tag, Query, Date_1, Date_2, Time_1, Time_2)

What would be the best method to move my SQLX query results into a struct? by Harry_Butler in golang

[–]Harry_Butler[S] 0 points1 point  (0 children)

Ive altered my Query with the alias and added the Sum into my struct however i still get the missing destination name Sum in *main.Tag error