题目要求 Design a simplified version of Twitter where users can post tweets, follow/unfollow another user and is a…
标签:后端开发
Nginx服务器Gzip压缩
指令 gzip gzip_buffers gzip_comp_level &nb…
php 使用Curl传递json资料给对方及显示对方回传的json(Json格式/ API串接/ HttpRequest)
本教学使用环境介绍伺服器端:Ubuntu 18.04 LTS资料库:Mariadb 10.1.34(Mysql)语言版本:php 7.3本机端:MacOS High Sierra function httpRequest…
Mac 下 MySQL 环境搭建
Mac 下安装 MySQL 还是很方便的, 总结来看有2个方法。 方法一:用dmg镜像安装 1、安装 官网下载好 MySQL Mac 版安装包,常规步骤安装,安装过程中会出现如下提示: 2019-03-24T18:27:…
在Linux下搭建我的世界(Minecraft)服务器
最近薅了百度云双12的羊毛,1核2G一年150。突然想起以前大学整个宿舍通宵开黑挖泥土的岁月,所以刚好趁着这台服务器,打算自己搭建一个我的世界服务器,重温一下以前的感觉。 系统要求 google到的MC系统要求: 1.C…
Laravel Blade 模板引擎的 `@component` 指令
参考链接:https://laravel.com/docs/5.4/blade#components-and-slots Laravel 5.4 为 Blade 模板引擎引入了 @component 指令,它在一定程度上…
http报文(http详解笔记)
* 报文的格式 * 请求报文 <method> <request-URL> <version> <headers> <entity-body> * 响应报文 &…
学生选课系统,加油啦啦啦~~~
course类 package com.collection_map; public class Course { public String id; public String name; public Course(…
TypeScript 特性梳理,拓展,oop,大量代码(类型,接口,类,成员访问控制,模块,重写重载,泛型,装饰器)
博客 github 地址: https://github.com/HCThink/h-blog/blob/master/TS/readme.md github 首页(star+watch,一手动态直达): https:/…
【leetcode80】Reverse Vowels of a String(元音字母倒叙)
题目描述: 写一个函数,实现输入一个字符串,然后把其中的元音字母倒叙 注意 元音字母包含大小写,元音字母有五个a,e,i,o,u 原文描述: Write a function that takes a string as…
【leetcode79】Single Number III
题目描述: 给定一个数组,里面只有两个数组,只是出现一次,其余的数字都是出现两次,找出这个两个数字,数组形式输出 原文描述: Given an array of numbers nums, in which exactl…
leetcode393. UTF-8 Validation
题目要求 A character in UTF8 can be from 1 to 4 bytes long, subjected to the following rules: For 1-byte character…