Posts by Tag

KDE

Gsoc Week 8 , 9 , 10 , 11

Focus on the ImageViewer The major focus for this time period was the ImageViewer that shows the single image. Made the ImageViewer full-screen ...

Gsoc Week 5 , 6 , 7

A lot of implementation changes were introduced Selection highlights depends upon the items selected in the model. Previously, the selection hi...

Gsoc Week 3 & 4

Quite a few changes were introduced during this time period Keyboard navigation was fixed for the GridView of AlbumView and OverviewPage. The G...

Arcanist Set Up

Set up the arcanist for Koko It was pretty much easy to install. For my Archlinux just below command did the work for me. yaourt -S arcanist-gi...

Gsoc Week 2

Week 2 was just about minor changes Change the delegate for the AlbumView A better delegate FocusScope which is composed of Image and Kirigami’...

Gsoc Week 1

So far, porting to Kirigami elements has started Sidebar is connected to mainview now( model in the mainview now changes according to filter selected from...

An Interesting Task

Yesterday was interesting. This task - T6231. Previous code had different qml files ( Folders.qml, Locations.qml, TimeImages.qml). The new code allows t...

Gsoc Week 0

Up until now : I have familiarize myself with the codebase of Koko image gallery Implemented deleteImage function in ImageViewer. Also checks the file e...

My Gsoc Proposal Got Selected :)

Every Summer has it’s story. Mine is Google Summer Of Code this year :) My proposal “Mirgating to Kirigami” for the “Koko” image gallery application of KD...

Back to Top ↑

docker

Dockerfile

Sample Dockerfile 1 2 3 4 5 6 7 8 FROM alpine LABEL maintainer="example@gmail.com" RUN apk add --update nodejs nodejs-npm COPY . /src WORKDIR /src ...

Docker Containers

Docker container - TLDR A container is the runtime instance of an image. In the same way that you can start a virtual machine (VM) from a virtual machine tem...

Docker Images - The Commands

docker image pull is the command to download images. We pull images from repositories inside of remote registries. By default, images will be pulled from ...

Docker Images

Brief A docker image contains enough of an operating system (OS), as well as all the code and dependencies to run whatever application it’s designed for. Doc...

Docker Technology

Major components: 1. The runtime The runtime operates at the lowest level and is responsible for starting and stopping containers (this includes building ...

Back to Top ↑

cmake

Getting Started with CMake

CMake is an open-source, cross-platform family of tools designed to build, test and package software. CMake is used to control the software compilation proce...

Back to Top ↑

design patterns

Back to Top ↑