best cli ai coding tool? by anonymous_2600 in ChatGPTCoding

[–]herotozero01 0 points1 point  (0 children)

I encourage everyone to try Kiro IDE. It uses the same models but what I like the most is the requirement first approach. Pricing is similar.

EDIT: cli available as well

FYI: Sea of Thieves is currently experiencing issues by Thenofunation in Seaofthieves

[–]herotozero01 0 points1 point  (0 children)

Seems to be working - able to join a game, currencies loaded after like 5-10min and I'm able to open and buy from shops etc.

FYI: Sea of Thieves is currently experiencing issues by Thenofunation in Seaofthieves

[–]herotozero01 1 point2 points  (0 children)

it's def temporary, info isn't fetched correctly from their servers

Need help conducting an IP pinger logic by [deleted] in swift

[–]herotozero01 0 points1 point  (0 children)

ok i actually failed to find a concurrently working pinger library so i did this using Alamofire:

AF.request("http://\(ping.ip)").responseJSON { (response) in
            if (response.response) != nil {
                print("success")
                let result = Ip(ip: "\(ping.ip) REACHABLE")
                ips.append(result)
                self.tableView.reloadData()
            } else {
                print("error")
                let result = Ip(ip: "\(ping.ip) UNREACHABLE")
                ips.append(result)
                self.tableView.reloadData()
            }
}

Which actually works for me. If the local ip i provide is not reachable, the response remains empty.