self-hosting
Here are 76 public repositories matching this topic...
-
Updated
Sep 14, 2021 - PHP
I like how Simplepush presents a couple of different ways to generate push messages on their website:
https://simplepush.io/#libraries
How about having a similar feature directly in the server GUI? That would include the bits documented here https://gotify.net/docs/pushmsg
As I was running composer to install a new library into our repo, it warned me that:
Package yzalis/identicon is abandoned, you should avoid using it. No replacement was suggested.
I'm not familiar on what packagist.org's process is to declare a package abandoned. I see that the last commit in their repo is from 2019 and there are a number of unanswered issues and pull requests.
I
-
Updated
Sep 13, 2021 - TypeScript
-
Updated
Sep 4, 2021 - PHP
-
Updated
Sep 2, 2021 - Svelte
-
Updated
Sep 13, 2021 - PHP
-
Updated
Aug 1, 2021 - Rust
-
Updated
Sep 13, 2021 - Shell
-
Updated
Sep 14, 2021 - C
-
Updated
Sep 12, 2021 - JavaScript
-
Updated
Sep 13, 2021 - Python
-
Updated
Jun 10, 2021 - C
-
Updated
Aug 18, 2021 - YARA
-
Updated
Aug 31, 2021 - C#
-
Updated
Feb 14, 2021 - Ruby
-
Updated
Mar 31, 2020 - Pascal
As you see in some file for example lexer.test.c
file I want to implement items of tokens in several lines..
https://github.com/One-Language/One/blob/master/test/lexer.test.c#L82
for example:
lexer_tests[lexer_tests_count++] = (LexerTest){"1\r\n 2\n3\n4", {token_make(TOKEN_VALUE_NUMBER), token_make(TOKEN_SKIP_WHITESPACE_LINE), token_make(TOKEN_VALUE_NUMBER), token_make(TOKEN_SKIP_
-
Updated
Sep 12, 2021 - TypeScript
-
Updated
Jul 21, 2021 - Common Lisp
Just a way to add thumbnail (with url image)
-
Updated
Jul 5, 2021 - Rust
-
Updated
Mar 17, 2020 - Go
-
Updated
Dec 27, 2020 - C
-
Updated
Nov 9, 2018 - Shell
-
Updated
Aug 3, 2020 - Shell
-
Updated
Mar 6, 2018 - CSS
-
Updated
Aug 18, 2021 - JavaScript
Improve this page
Add a description, image, and links to the self-hosting topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the self-hosting topic, visit your repo's landing page and select "manage topics."
We badly started implementing some props mutation.
There are usually two cases:
propsData
Solution 1
Migrate the propsData (usually initial-states) to the root
.vue
file away from the.js
entry pointSolution 2
Use a sync modifier and change the data flow according to vue documentations