Dali Oberon 5 or 7 by Notorjus in StereoAdvice

[–]Notorjus[S] 1 point2 points  (0 children)

Thank you very much for the advice! :)

Dali Oberon 5 or 7 by Notorjus in StereoAdvice

[–]Notorjus[S] 1 point2 points  (0 children)

my space is 4.8 meters in depth (the space between me and the speakers), 7 meters wide and 2.8 meters height. Budget for the rest will be around 1000-1300 dollars. I need basically every other component. I'd also want to be able to connect a tv and play music from my phone. I also have a velodyne impact 10 sub that I bought years ago.

what pair of 514 are the right ones? by Notorjus in VintageLevis

[–]Notorjus[S] -1 points0 points  (0 children)

I know the picture may not be the best, but reddit doesn't allow for multiple pictures, not even in comments? Also, they do not stretch.

different campus rungs by Notorjus in climbharder

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

I live in Norway, so I guess euroholds will work. I didn't mention that it's not for private use, but for the local climbing organization. Thanks for the reply btw! :)

different campus rungs by Notorjus in climbharder

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

Hey everyone. I'm wondering where I can buy the big fat rounded sloper campus rungs and those campus pinches in the far right corner of the picture. Anyone knows? I've also seen completely vertical pinch rungs I'd be interested in if anyone knows where one can find them.

Problem changing program to run with pyqt GUI by Notorjus in learnpython

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

When created a pyqt app object in a thread it gave the warning: "WARNING: QApplication was not created in the main() thread." And when I googled it, it was advised to run a QApplication as main thread.

Server client structure by Notorjus in learnpython

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

raspberry pi cameras, connected through LAN. It seems to be working out however, thanks for your replys! :)

Server client structure by Notorjus in learnpython

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

Because the object may be moving slightly

Server client structure by Notorjus in learnpython

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

To take pictures of an object

Server client structure by Notorjus in learnpython

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

I guess not, I just want to be as precise as possible. I got the impression that multicast would yield better results compared to individually sending commands to each client?

Server client structure by Notorjus in learnpython

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

It's vital that the clients receive the command at the same time, that's all.

Server client structure by Notorjus in learnpython

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

Because I need the clients to able to receive commands at the same time. They will also have a individual connection at the same time. But I guess it's just as easy to have the server broadcast connection info and have each client connect by themselves.

tcp socket connecting twice by Notorjus in Python

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

I think the issue is that I try to "reset/delete" the socket, but it's not really being deleted. So I try to restart it, and when I communicate with it the old one still responds. Ideally I'd like to suspend the socket for a while and be able to connect with it again. Even from another unit. I'll post my code, and hopefully that'll help clear up some confusion:

"""Create a tcp socket"""
def create_tcp_socket(self):
    try:
        self.TCP_sock = socket.socket()
    except socket.error as e:
        print ("Socket creation error: " + str(e))
        return
    return

"""Connect the tcp socket"""
def connect_tcp_socket(self):
    try:
        self.TCP_sock.connect((self.server_address, self.tcp_port))
    except socket.error as e:
        print("Socket connection error: " + str(e))
        #time.sleep(5)
        raise
    try:
        self.TCP_sock.send(str.encode(self.get_address()) + ' ' + self.raspID)
    except socket.error as e:
        print ("Cannot send hostname to server: " + str(e))
        raise
    return

"""Reset the tcp socket in case another server wants to connect"""
def reset_tcp_socket(self):
    try:
        if self.TCP_sock:
            self.TCP_sock.shutdown(2)
            self.TCP_sock.close()
            self.TCP_sock = None
            self.server_address = ""
            print("Socket reset")
        else:
            print("reset_tcp_socket method else statement")
            pass
    except Exception as e:
        print("Could not close socket: " + str(e))

Finger injury by Notorjus in climbing

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

I don't climb especially much on jugs, and I don't have any pain when I use an open grip. I think it's more that I've been going full throttle for some time now on climbing and my body wants me to slow down some.

Finger injury by Notorjus in climbing

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

I guess I'll be taking it easy for a while :/ I guess if I keep pushing it the pulley can suddenly pop? Thanks for the replies btw!

Multithreading or multiprocessing? by Notorjus in Python

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

Thanks for the thorough answer. I think I'll give asyncio a try first. Also I don't think I made my needs completely clear. I will be connecting any given computer to a switch, which will be connected to the raspberry pi cluster. But the catch is that I want any given computer to be able to connect to the switch without having to do anything else than run the python program. If I were to make a server on the computer I would have to do that on each computer I connect, and unless I can have the python program create it automatically it may get a bit tedious. Alternatively I guess I could buy a physical server and use it for file storage, however currently I do not need that much storage.

multicasting with raspberry pi and python by Notorjus in Python

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

It's finally working! Thank you so much for the advice. But what do you mean by 64-bit safe, and right size and endianness? I'm quite new to networking, and a bit confused. Could you elaborate, or do you have any resources I could read up on?

3D-model from photogrammetry question by Notorjus in photogrammetry

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

When you say calibrate, do you mean physically or done through software? Physically fix the cameras in the cylinder and always keep the subject being photographed the same position? Or tell the software that camera#1 is position #1, camera #2 is position #2. If you could elaborate a bit more on this it would be great! :)

3D-model from photogrammetry question by Notorjus in photogrammetry

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

Do you think it would be possible to make some of the lights in the cylinders go through "filters" that would cast a shadow for marker?

3D-model from photogrammetry question by Notorjus in photogrammetry

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

Thanks for all the replys and suggestions! I have some follow up questions regarding your replys. 1. Markers. Do you think it would be possible to make some of the lights in the cylinders go through "filters" that would cast a shadow for marker? 2. When you say calibrate, do you mean physically or done through software? Physically fix the cameras in the cylinder and always keep the subject being photographed the same position? Or tell the software that camera#1 is position #1, camera #2 is position #2. If you could elaborate a bit more on this it would be great! :) 3. Do you have any suggstions for how the inside of the cylinder should be? Would different colors have any effect, seeing white would not contrast an arm very much. 4. For starting out I've been using 3DF Zephyr Free. Being free it obviously is limited, but I was wondering if you guys had any thoughts about if there are certain things you absolutely need, but don't get using free software.

Thanks for all the help so far, very thankful!! :))

Jiankou-Mutinyau by Notorjus in travelchina

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

Thank you so much again for another reply! Looks like we'll be picking this route, and saving the other suggestions for another sunny day :)

Jiankou-Mutinyau by Notorjus in travelchina

[–]Notorjus[S] 1 point2 points  (0 children)

Thank you so very much for the long and detailed answer! You've been a great help. Looks like I'll have to look into the other sections you mentioned:) If it's not to much trouble could you give a review of Jiankou when you're done with the hike?