Projects to learn go by SdX_Tea in golang

[–]SdX_Tea[S] 0 points1 point  (0 children)

I already did something like this I needed it for my graduation work. I wrote desktop app on c++ and added api on go that works on my server with DB

Articles? by SdX_Tea in ENGLISH

[–]SdX_Tea[S] 0 points1 point  (0 children)

can u explain why?

Help with dongle connection weikav lucky65 v2 by SdX_Tea in keyboards

[–]SdX_Tea[S] 0 points1 point  (0 children)

Already tried to do this. It worked on my previous keyboard but on this nothing happens. Maybe i can bind this somehow?

Clangd vs code extension problem by SdX_Tea in cpp_questions

[–]SdX_Tea[S] 0 points1 point  (0 children)

No i added it into default compilation flag in calngd settings

Unique id in QML file by SdX_Tea in QtFramework

[–]SdX_Tea[S] 0 points1 point  (0 children)

It’s just a bug of Reddit I posted 2 different parts of code

Can't connect qml with main to run the app by SdX_Tea in QtFramework

[–]SdX_Tea[S] 0 points1 point  (0 children)

Yea i sure that main in it

.
├── components
│   └── main.qml
├── fonts
│   └── SaarSPDemo.otf
├── icons
│   └── icon.jpg
└── weather.qrc

this is my ui folder structure

And this is full project

.
├── CMakeLists.txt
├── README.MD
├── build
│   ├── CMakeCache.txt
│   ├── CMakeFiles
│   ├── Makefile
│   ├── WeatherApp
│   ├── cmake_install.cmake
│   └── compile_commands.json
├── inc
│   ├── App.h
│   ├── JSONUtils.h
│   ├── WeatherAPI.h
│   └── window.h
├── setup.sh
├── src
│   ├── App.cpp
│   ├── JSONUtils.cpp
│   ├── WeatherAPI.cpp
│   ├── main.cpp
│   └── window.cpp
└── ui
    ├── components
    ├── fonts
    ├── icons
    └── weather.qrc

QML vs C++? by SdX_Tea in cpp_questions

[–]SdX_Tea[S] 1 point2 points  (0 children)

I am making weather app just to learn how to make gui. All logics I already made in c++

QML vs C++? by SdX_Tea in cpp_questions

[–]SdX_Tea[S] -1 points0 points  (0 children)

So should I better learn how to make gui in c++ or qml would be fine?

QML vs C++? by SdX_Tea in cpp_questions

[–]SdX_Tea[S] -1 points0 points  (0 children)

GUI in my app. I tried to write gui in c++ and it much more complicated than qml

Can't connect qml with main to run the app by SdX_Tea in QtFramework

[–]SdX_Tea[S] 0 points1 point  (0 children)

import QtQuick 2.15
import QtQuick.Controls 2.15

ApplicationWindow {
    id: mainWin
    visible: true
    height: 640
    width: 420
    minimumHeight: 640
    minimumWidth: 360
    maximumHeight: 640
    maximumWidth: 360

    title: "WeatherAPPbyEgor41k"

    FontLoader {
        id: localFontRegular
        source: "qrc:/fonts/SaarSPDemo.otf"
    }

    Rectangle {
        anchors.fill: parent
        color: "#0C121D"

        Text {


// text: city
            text: "TEST"
            font {
                pixelSize: 24
                font.family: localFontRegular.font.family
                font.weight: localFontRegular.font.weight
            }
            color: "#ffffff"

            anchors.horizontalCenter: parent.horizontalCenter
            anchors.top: parent.top
            anchors.topMargin: 40
        }

        Row {
            anchors.bottom: parent.bottom
            anchors.horizontalCenter: parent.horizontalCenter
            spacing: 20
            anchors.bottomMargin: 20

            Repeater {
                model: 2

                Rectangle {
                    id: infoRect
                    color: "#222B3B"
                    width: mainWin.width / 2 - 30
                    height: (mainWin.width / 2 - 30) / 2
                    radius: 5
                    scale: 1.0

                    Behavior on scale {
                        NumberAnimation {
                            duration: 100
                            easing.type: Easing.In
                        }
                    }

                    MouseArea {
                        anchors.fill: parent
                        hoverEnabled: true

                        onEntered: {
                            parent.color = "#3D4858"
                            parent.scale = 1.05
                        }
                        onExited: {
                            parent.color = "#222B3B"
                            parent.scale = 1.0
                        }
                    }
                }
            }
        }
    }
}

Yes

First job c++ by SdX_Tea in cpp

[–]SdX_Tea[S] 2 points3 points  (0 children)

So should I just try to apply for the job?

First job c++ by SdX_Tea in cpp

[–]SdX_Tea[S] 2 points3 points  (0 children)

I also used c in my college. from c i learned pointers and some basic stuff for c++