Logo

日志

60 篇
  • textworld
    https://blog.csdn.net/Pan_peter/article/details/130465041 车牌识别
    0
    2023-11-24 05:52
  • textworld
    https://github.com/we0091234/yolov8-plate 车牌识别
    0
    2023-11-24 05:51
  • textworld
    在线下载b站的视频,并且下载到磁盘中 保存github的资料
    0
    2023-11-24 05:51
  • textworld
    https://juejin.cn/post/7163850822701285412 ubuntu 18.04 升级glibc到2.33
    0
    2023-11-22 07:32
  • textworld
    https://stackoverflow.com/questions/72513993/how-to-install-glibc-2-29-or-higher-in-ubuntu-18-04 https://stackoverflow.com/questions/847179/multiple-glibc-libraries-on-a-single-host/851229#851229 glibc相关的资料
    0
    2023-11-22 03:39
  • textworld
    http://wsfdl.com/linux/2022/01/28/memory_overview.html 内存相关
    0
    2023-11-22 03:06
  • textworld
    services:
      db:
        # We use a mariadb image which supports both amd64 & arm64 architecture
        image: mariadb:10.6.4-focal
        # If you really want to use MySQL, uncomment the following line
        #image: mysql:8.0.27
        command: '--default-authentication-plugin=mysql_native_password'
        volumes:
          - db_data:/var/lib/mysql
        restart: always
        environment:
          - MYSQL_ROOT_PASSWORD=somewordpress
          - MYSQL_DATABASE=wordpress
          - MYSQL_USER=wordpress
          - MYSQL_PASSWORD=wordpress
        expose:
          - 3306
          - 33060
      wordpress:
        image: wordpress:latest
        ports:
          - 80:80
        restart: always
        environment:
          - WORDPRESS_DB_HOST=db
          - WORDPRESS_DB_USER=wordpress
          - WORDPRESS_DB_PASSWORD=wordpress
          - WORDPRESS_DB_NAME=wordpress
          - WORDPRESS_DEBUG=true
          - WP_ENVIRONMENT_TYPE=development
        volumes:
          - ./html:/var/www/html
    volumes:
      db_data:
        driver: local
    
    define( 'WP_ENVIRONMENT_TYPE', 'local' );
    
    0
    2023-11-20 01:22
  • textworld
    https://books.halfrost.com/leetcode/ChapterTwo/Two_Pointers/ 双指针刷题
    0
    2023-11-16 03:40
  • textworld
    test
    0
    2023-11-15 04:19
  • textworld
    curl --location --request POST 'http://localhost/wp-json/wp/v2/posts' \ --header 'Authorization: Basic dGV4dHdvcmxkOkIzVkpXU1VrbXhLenp0bXFhM3VyZjgyMQ==' \ --header 'Content-Type: application/json' \ --data-raw '{ "title": "test_tile", "content": "xxxxx" }'
    0
    2023-11-14 08:36