Article Topic Learning Download Q&A Programming Dictionary Game Recent Updates
LOGIN
简体中文(ZH-CN) English(EN) 繁体中文(ZH-TW) 日本語(JA) 한국어(KO) Melayu(MS) Français(FR) Deutsch(DE)

  • Popular searches:
  • PHP
  • MySQL
  • jquery
  • HTML
  • CSS
  • Whole station
  • Course
  • Article
  • Q&A
Found a total of 1453 related content
Time management, self-discipline gives me freedom

Course3988

Course Introduction:What does a day in the life of a programmer look like? After a busy day at the company, I work overtime, come home, lie in bed and play with my mobile phone, and go to bed at twelve o'clock or even later. Days passed like this, and in a few years, technology reached a bottleneck and wages remained unchanged. There is no difference between working for ten years and working for one year. Slowly, my life became something I hated. There are too many such examples around us. I believe that if you live every day according to the above, you will definitely encounter the 35-year-old crisis when you are 35 years old. So how to change and avoid this situation?

One week allows you to easily master Linux

Course14583

Course Introduction:This course is based on Han Shunping's classic video "Learn Linux in One Week" (this course has become a legend, with more than 10 million students, and 80% of domestic Linux beginners have studied this course. It has many fans and good reviews. Ruchao), has been comprehensively upgraded and strengthened. The course content is divided into seven parts, covering all aspects of Linux. It includes basic chapters, practical chapters, advanced chapters, Java customization chapters, big data customization chapters, Python customization chapters, and corporate interview questions explanation chapters. , not only allows beginners to quickly master Linux, but also allows Linux veterans to learn technical details more comprehensively and systematically. It is a high-quality resource for java c c++ php python programmers to learn Linux.

Front-end Vue3 actual combat [handwritten vue project]

Course2857

Course Introduction:Course introduction: 1. Cross-domain processing, token management, route interception; 2. Real interface debugging, API layer encapsulation; 3. Secondary encapsulation of Echarts and paging components; 4. Vue packaging optimization and answers to common problems.

APIPOST tutorial [Popularization of technical concepts related to network communication]

Course1795

Course Introduction:Apipost is an API R&D collaboration platform that integrates API design, API debugging, API documentation, and automated testing. It supports grpc, http, websocket, socketio, and socketjs type interface debugging, and supports privatized deployment. Before formally learning ApiPost, you must understand some related concepts, development models, and professional terminology. Apipost official website: https://www.apipost.cn

Issue 22_Comprehensive actual combat

Course5521

Course Introduction:(Consult WeChat: phpcn01) The comprehensive practical course aims to consolidate the learning results of the first two stages, achieve flexible application of front-end and PHP core knowledge points, complete your own projects through practical training, and provide guidance on online implementation. Comprehensive practical key practical courses include: social e-commerce system backend development, product management, payment/order management, customer management, distribution/coupon system design, the entire WeChat/Alipay payment process, Alibaba Cloud/Pagoda operation and maintenance, and project online operation. .....

More courses
  • Can't use DefineProps with TypeScript

    I've been using withDefaults and defineProps for a while but suddenly it started failing and I don't understand why! I have a basic SFC like: constprops=withDefaults(defineProps<{foo:RegExp}>(),{foo:/./})

    2023-11-10 19:48:26 0 1 277

  • Indirect modification of the overloaded attribute of App\Models\User::$profile is invalid.

    Hey I'm using laravel9 and I have a relationship between two models in my application: User and Profile. The User model has a hasOne relationship with the Profile model. When I try to run the update method from the profile controller, I get the error: Indirect modification of overloaded property App\User::$profile is not valid. This is my update method: publicfunctionupdate(Request$request){$this->validate($request,['na

    2023-11-08 11:50:44 0 1 270

  • How to make API call in created hook in Vue 3?

    Returning to vue after a long break. In my solution I'm using composition api and after creating the component I need to get some data so I can display it later. In my current solution, the template is rendered before calling. Probably stupid mistake but I still can't figure it out (it's clear in vue2.0 - create() hook).