Blog | 博客

weaker than weak

Original link: https://onojyun.com/2022/07/28/6425/ △ 209|Weaker than weak The video of “Second Uncle” itself is not worth discussing. Whether it is true or not is no longer a topic for people to discuss for today’s Simplified Chinese Internet. What’s more, it publishes a social media platform with more young people in China. What role does it […]

weaker than weak Read More »

css force no line break

In CSS, no line breaks are enforced, the text will not wrap, and the text will continue on the same line until it encounters a br tag. white-space:nowrap; … The post css forcing no line breaks first appeared on Lenix Blog . This article is reprinted from https://blog.p2hp.com/archives/9189 This site is for inclusion only, and

css force no line break Read More »

Good Tools Weekly (Issue 23): FaceSwapper, Emoji Kitchen, Emoji Wallpaper, …

Original link: https://discuss-cn.bestxtools.com/d/61/1 Good Tools Weekly (Issue 23): FaceSwapper, Emoji Kitchen, Emoji Wallpaper, Vue Color Avatar, Username Generator, Fake Name Generator, itty.bitty Discover and share fun, creative, free and easy-to-use tools, published every Thursday. Created by BestXTools . Previous content |Previous content | RSS subscription | Email subscription | WeChat subscription | Tool recommendation |

Good Tools Weekly (Issue 23): FaceSwapper, Emoji Kitchen, Emoji Wallpaper, … Read More »

WordPress contributors consider renaming sitewide editor

Original link: https://www.wpdaxue.com/newsletter/130168.html WordPress Executive Directory Josepha Haden Chomphosy proposed that contributors rename the terms “full-site editing” and “full-site editor” to more user-friendly names. As WordPress entered the customization phase, these terms came into use and are still used to distinguish work done in site editing as opposed to content editing in block editors. Haden

WordPress contributors consider renaming sitewide editor Read More »

Arlais (northwesterly)

Original link: https://s3-eu-west-1.amazonaws.com/dailyartartwork/img-2022061362a7b60495006 The painting dates back to two months when Paul Gauguin lived and worked with Vincent van Gogh in the Yellow House in Arles, France, during which time Gauguin painted 17 oil paintings. Among them, this one is the most mysterious. Its background is the park opposite the house. Gauguin used sketchbooks to

Arlais (northwesterly) Read More »

Hello world!

Original link: https://zburu.com/2022/07/28/hello-world/ Welcome to WordPress. This is your first article. Edit or delete it and start writing! This article is reprinted from: https://zburu.com/2022/07/28/hello-world/ This site is for inclusion only, and the copyright belongs to the original author.

Hello world! Read More »

Something went wrong, an error occurred while the panel was running!

Original link: https://zburu.com/2022/07/18/152/ # 删除之前无法使用的面板环境rm -rf /www/server/panel/pyenv #重新获取新的面板环境和更新包curl http://download.bt.cn/install/update_panel.sh|bash This article is reproduced from: https://zburu.com/2022/07/18/152/ This site is for inclusion only, and the copyright belongs to the original author.

Something went wrong, an error occurred while the panel was running! Read More »

Notes: Use axios to call data and render in vue

Original link: https://zburu.com/2022/07/12/151/ Examples are as follows. <template> <div class=”posts”> <div v-for=”item in list” :key=”item.cid” > </div> </div> </template> <script> import Axios from ‘axios’; export default { name: ‘index’, data () { return { list: [] } }, methods: { getData () { var api = ‘https://zburu.com/api/posts.php’; Axios.get(api).then((response) => { this.list = response.data; console.log(response.data) }).catch((error)

Notes: Use axios to call data and render in vue Read More »