Skip to content

甦傑的博客Talk is cheap. Show me the code.

专注 C++ 底层、ROS/Gazebo 仿真与 VSLAM。在物理世界与段错误 (Segfaults) 中寻找秩序。

Logo
cpp
#include <iostream>
#include <ros/ros.h>

int main(int argc, char** argv) {
    ros::init(argc, argv, "sujie_168_brain");
    // Warning: Breakthrough private access rights activated
    Memory::align_to_hardcore();

    while (ros::ok() && still_alive) {
        std::cout << "Debugging the chaos of real world..." << std::endl;
        code();
        sleep(); // occasionally
    }
    return 0; // Never reached
}