Skip to content

Instantly share code, notes, and snippets.

View Acry's full-sized avatar
😎

Carsten Holtkamp Acry

😎
View GitHub Profile

Composition (Composable functions)

Using pug & vuetify here.

In the past vuex was the solution to share state.

In react there are hooks.

create a new file use-login.ts

TypeScript in the backend - Most Wanted FAQ

Node.js

What is it? Googles v8 JS-engine for the desktop.

How does versioning work? Odd-numbered releases (9, 11, etc.) become unsupported after six months. Even-numbered releases (10, 12, etc.) move to Active LTS status and are ready for general use.

@Acry
Acry / VSCode C Linux.md
Last active June 11, 2023 20:32
Kick off VSCode for C and GTK 3.

Code GTK 3 in C with VSCode

Kick off VSCode for C and GTK 3.

c_cpp_properties.json

{
  "configurations": [
    {
      "name": "C Linux GTK3",
@Acry
Acry / cmake.md
Last active December 5, 2019 18:45
First Steps using make with C

First Steps Using Make With C

This is a very simple C-source-code which just returns success in a cross-platform way.

#include <stdlib.h>

int main(void)
{
return EXIT_SUCCESS;
@Acry
Acry / C-Code.md
Last active February 28, 2024 20:49
C-Idioms, C-Examples, C-Tutorials, C-Snippets, C-Resources
@Acry
Acry / SDL_Demos.md
Last active August 22, 2022 21:52
My Github SDL2 Repo's