-
Updated
Feb 1, 2022
#
ideas
Here are 365 public repositories matching this topic...
A Collection of application ideas which can be used to improve your coding skills.
-
Updated
Jan 26, 2022
a hundred ideas for computing - a record of ideas - https://samsquire.github.io/ideas/
-
Updated
Jan 29, 2022
Where ideas & concepts are born & incubated
-
Updated
Mar 25, 2022 - Java
Collection of interesting things I find on the World Wide Web.
-
Updated
Dec 11, 2021
-
Updated
Feb 16, 2022
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.
music
chrome-extension
playlist
spotify
awesome
ideas
startup
free
software
awesome-list
independent
whattodo
-
Updated
Mar 22, 2022
The go-to repo for fun, cool and unique web developer projects.
-
Updated
Oct 14, 2021
Another 85+ Ideas for Computing https://samsquire.github.io/ideas2/
-
Updated
Jun 5, 2021
-
Updated
Aug 26, 2020 - Dart
A GPT-J API to use with python3 to generate text, blogs, code, and more
blog
nlp
api
bot
natural-language-processing
completion
chatbot
ideas
story
free
language-model
chatbot-framework
blog-generator
gpt-3
gpt3
gpt-neo-text-generation
gpt-j
story-teller
imaginary-freinds
eluether-ai
-
Updated
Dec 29, 2021 - Python
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.
-
Updated
Mar 28, 2022 - Python
pavelkryukov
commented
Jan 29, 2022
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
же не нуль-терминирован, и вызов
good first issue
Несложная на вид идея. Самое то, чтобы попробовать написать на её proposal и помочь РГ21
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.
android
kotlin
programming-language
xamarin
vue
csharp
vuejs2
kotlin-android
mobile-app
ideas
xamarin-android
databinding
room-persistence-library
-
Updated
Feb 26, 2022 - C#
21
ming-tsai
commented
Apr 22, 2021
Hi team,
I thinking creat a front-end for this project, like this one What to code?
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
Feedback collecting web service.
-
Updated
Mar 17, 2022 - Java
A place to share ideas for open source library with other developers.
-
Updated
Mar 30, 2017
List of Hello World programs in many programming languages. Don't forget to star 🌟 this repository.
language
library
tutorial
programming
ide
lab
idle
labs
ideas
scratch
helloworld
introduction
submodule
-
Updated
Mar 21, 2022 - JavaScript
-
Updated
Mar 18, 2021
Kumpulan ide-ide menarik untuk dibahas di podcast anggota PDPC atau ide-ide lainnya.
-
Updated
Dec 15, 2019
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.
coq
ideas
startup
z3
formal-methods
sat-solver
entrepreneurship
software-verification
smt-solver
research-paper
formal-verification
quantum-programming-language
research-data
research-software-engineering
programming-language-theory
ideasworthsharing
-
Updated
Aug 17, 2019
Improve this page
Add a description, image, and links to the ideas topic page so that developers can more easily learn about it.
Add this topic to your repo
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