A Collection of application ideas which can be used to improve your coding skills.
-
Updated
Feb 1, 2022
{{ message }}
A Collection of application ideas which can be used to improve your coding skills.
a hundred ideas for computing - a record of ideas - https://samsquire.github.io/ideas/
Where ideas & concepts are born & incubated
Collection of interesting things I find on the World Wide Web.
Every time I have an idea, I write it down. These are a collection of my top software ideas -- problems I think enough people have that don't have solutions. I expect you can reach a decent userbase if marketed correctly, as I am surely not the only one with these problems.
The go-to repo for fun, cool and unique web developer projects.
Another 85+ Ideas for Computing https://samsquire.github.io/ideas2/
A GPT-J API to use with python3 to generate text, blogs, code, and more
En este repo consolidamos ideas y propuestas que llegan y surgen en la comunidad. Cualquier persona puede comentar en los issues, proponer y también asignarse los issues para hacerlos. Pueden agregar un comment y tomar ownership.
C-массив можно инициализировать литералом или списком:
const char array1[] = "abcdefgh";
const char array2[8] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'};Конструктор std::string_view неявно преобразует ссылку на C-массив в const char*.
Для array1 вызовется strlen (использовать N не будем, т.к. внутри литерала может быть \0).
array2 же не нуль-терминирован, и вызов
Idea Bag 2 provides programmers of all proficiency levels ideas for pet projects to work on when they are looking to increase their proficiency in a particular programming language.
Hi team,
I thinking creat a front-end for this project, like this one What to code?
Feedback collecting web service.
A place to share ideas for open source library with other developers.
List of Hello World programs in many programming languages. Don't forget to star
Kumpulan ide-ide menarik untuk dibahas di podcast anggota PDPC atau ide-ide lainnya.
Curated List of Research Focused Reading Materials & Videos for Learning about Programming Language Theory Research, Formal Methods and their application in some most active computer Science fields.
Add a description, image, and links to the ideas topic page so that developers can more easily learn about it.
To associate your repository with the ideas topic, visit your repo's landing page and select "manage topics."
Fider currently only run migrations that have a timestamp higher than the last executed migration.
This means we need to be extra careful when merging PRs to ensure the timestamp on the migration files are always accurate.
Ruby on Rails takes another approach where they run all migrations that have not yet been executed on the server. They still apply it in order of timestamp, but allows P