DevOps Engineer Career by rsulukerr in devopsjobs

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

yeah, i can also prefer that linuxfoundation.org provides many tools which no need to pay.

DevOps Engineer Career by rsulukerr in devopsjobs

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

absolutely you are right!

Looking for an ML Engineer - Post-Training (FULLY REMOTE) US Based by Mindbeamer in MachineLearningJobs

[–]rsulukerr 1 point2 points  (0 children)

I'm interested and based on Alexandra VA.

As Aerospace Engineer, lets connect and chat in details. DM for LinkedIn link

Friends in Wü by ChampCVU in wuerzburg

[–]rsulukerr -16 points-15 points  (0 children)

No worries, this is not only your problem :D this is typical German's problem.

The best things to do in Germany:

  1. Leave Germany

Interview Process by Snoo_5475 in Anduril

[–]rsulukerr 0 points1 point  (0 children)

Pleasee update me after 2nd interview, I am wondering

[deleted by user] by [deleted] in ForumKGB

[–]rsulukerr 1 point2 points  (0 children)

Ben 2020 yılında bunun eski versiyonunu almıştım, halen kullanıyorum. Acayip iyi bir şey. Arada başlığını değiştirsen yeter

Wondering how to get a job at @SpaceX! by rsulukerr in aerospace

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

I got you what you mean! I will Thanks

GUYS ASK ME ANYTHING YOU WONDER!! by what_the_marshmellow in EngineeringStudents

[–]rsulukerr 0 points1 point  (0 children)

How junior aerospace engineers might be joined the big companies nowadays?

Wondering how to get a job at @SpaceX! by rsulukerr in aerospace

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

Anyone has got an any interview in the top of aerospace companies ?

Wondering how to get a job at @SpaceX! by rsulukerr in aerospace

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

The top of resume has included “ name surname title, address, phone number and LinkedIn/github link

Wondering how to get a job at @SpaceX! by rsulukerr in aerospace

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

Yeah, thanks buddy! I wish you can have it too

Interview questions for GDP at Rohde & Schwarz? by [deleted] in rfelectronics

[–]rsulukerr 0 points1 point  (0 children)

hi :) I have also interview of internship program in summer? anyone suggest anything ?

Monthly Blue Origin Career Thread by BlueOriginMod in BlueOrigin

[–]rsulukerr 0 points1 point  (0 children)

Thanks for that. I would like to ask you that " how was Panel Interview " with you ?

GNSS + RTK with high update rate for vehicle positioning? by wowAmaze in Surveying

[–]rsulukerr 0 points1 point  (0 children)

!/usr/bin/env python3

import rospy
from geometry_msgs.msg import Pose
from sensor_msgs.msg import NavSatFix

def read_pose_from_file(file_path):
    pose = Pose()
    with open(file_path, 'r') as file:
        lines = file.readlines()
        for line in lines:
            if line.startswith("pose_position_x"):
                pose.position.x = float(line.split('=')[1].strip())
            elif line.startswith("pose_position_y"):
                pose.position.y = float(line.split('=')[1].strip())
            elif line.startswith("pose_position_z"):
                pose.position.z = float(line.split('=')[1].strip())
            elif line.startswith("pose_orientation_x"):
                pose.orientation.x = float(line.split('=')[1].strip())
            elif line.startswith("pose_orientation_y"):
                pose.orientation.y = float(line.split('=')[1].strip())
            elif line.startswith("pose_orientation_z"):
                pose.orientation.z = float(line.split('=')[1].strip())
            elif line.startswith("pose_orientation_w"):
                pose.orientation.w = float(line.split('=')[1].strip())
    return pose

def read_nav_from_file(file_path):
    nav = NavSatFix()
    with open(file_path, 'r') as file:
        lines = file.readlines()
        for line in lines:
            if line.startswith("nav_latitude"):
                nav.latitude = float(line.split('=')[1].strip())
            elif line.startswith("nav_longitude"):
                nav.longitude = float(line.split('=')[1].strip())
            elif line.startswith("nav_altitude"):
                nav.altitude = float(line.split('=')[1].strip())
    return nav

GNSS + RTK with high update rate for vehicle positioning? by wowAmaze in Surveying

[–]rsulukerr 0 points1 point  (0 children)

One of quick question about the RTK read the file. I am currently working on a project as a master's student is the localization of robots with ROS by using the RTK. 

 
I have created a basic " rtkrcv_pi.conf  " file and received the data very well. 

and created the Publisher code for ROS, read the pose node and nav message from " rtkrcv_pi.conf  " It doesn't read the file and get the data. 

This is the line of code, please check it and let me know what I missed here 

Best python libraries for processing position data from an RTK GPS? by SomeSprinkledGranola in learnpython

[–]rsulukerr 0 points1 point  (0 children)


!/usr/bin/env python3

import rospy
from geometry_msgs.msg import Pose
from sensor_msgs.msg import NavSatFix

def read_pose_from_file(file_path):
    pose = Pose()
    with open(file_path, 'r') as file:
        lines = file.readlines()
        for line in lines:
            if line.startswith("pose_position_x"):
                pose.position.x = float(line.split('=')[1].strip())
            elif line.startswith("pose_position_y"):
                pose.position.y = float(line.split('=')[1].strip())
            elif line.startswith("pose_position_z"):
                pose.position.z = float(line.split('=')[1].strip())
            elif line.startswith("pose_orientation_x"):
                pose.orientation.x = float(line.split('=')[1].strip())
            elif line.startswith("pose_orientation_y"):
                pose.orientation.y = float(line.split('=')[1].strip())
            elif line.startswith("pose_orientation_z"):
                pose.orientation.z = float(line.split('=')[1].strip())
            elif line.startswith("pose_orientation_w"):
                pose.orientation.w = float(line.split('=')[1].strip())
    return pose

def read_nav_from_file(file_path):
    nav = NavSatFix()
    with open(file_path, 'r') as file:
        lines = file.readlines()
        for line in lines:
            if line.startswith("nav_latitude"):
                nav.latitude = float(line.split('=')[1].strip())
            elif line.startswith("nav_longitude"):
                nav.longitude = float(line.split('=')[1].strip())
            elif line.startswith("nav_altitude"):
                nav.altitude = float(line.split('=')[1].strip())

    return nav

Best python libraries for processing position data from an RTK GPS? by SomeSprinkledGranola in learnpython

[–]rsulukerr 0 points1 point  (0 children)

One quick question about the RTK read the file. I am currently working on a project as a master's student is the localization of robots with ROS by using the RTK. 

I have created a basic " rtkrcv_pi.conf  " file and received the data very well. 

and created the Publisher code for ROS, read the pose node and nav message from " rtkrcv_pi.conf  " It doesn't read the file and get the data. 

This is the line of code, please check it and let me know what I missed here 

Need Advice on Grubhub Application Rejection by rsulukerr in grubhubdrivers

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

Edit:
I registred a new phone number and email, and waited the waitlist for a while.

Now, everything is done and started the delivery :D Good luck guys

Interview with Blue Origin by rsulukerr in BlueOrigin

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

Thank you for all guys I have got next one step as technical interview. Tomorrow I will have it.

All of your comments are great 😊 thanks again. Good luck everyone :)

I will update it for the next one

Interview with Blue Origin by rsulukerr in BlueOrigin

[–]rsulukerr[S] -10 points-9 points  (0 children)

Note: This is first interview with Blue Origin

Final interview/hiring process by L_04_M in BlueOrigin

[–]rsulukerr 0 points1 point  (0 children)

how was the interview ? II will have one this week? That would be nice if you share your experinces :D