Skip to content

Instantly share code, notes, and snippets.

View ibuziuk's full-sized avatar
🏠
Working from home

Ilya Buziuk ibuziuk

🏠
Working from home
View GitHub Profile

Crafting a Cloud Development Environment with Eclipse Che and Personal AI Assistants

No surprises that developers are looking for ways to include new powerful technologies like AI Assistants to improve their workflows and productivity. However, nowadays many companies are reluctant to allow such technology due to concerns about privacy, security, and IP laws. This session addresses the concerns about privacy and security and describes how to deploy and integrate private AI assistants in your CDE (Cloud Development Environment) using Eclipse Che. We will also discuss open large language models (LLMs), their training datasets, and licenses. Gain a deeper understanding of Eclipse Che's role in this transformative era and how it might influence your future cloud development decisions!

schemaVersion: 2.2.2
metadata:
name: java-quarkus
displayName: Quarkus Java
description: Java application using Quarkus and OpenJDK 17
icon: https://design.jboss.org/quarkus/logo/final/SVG/quarkus_icon_rgb_default.svg
tags:
- Java
- Quarkus
projectType: Quarkus

Repairing DWO upgrade

  1. Remove the DevWorkspace Operator subscription
oc delete sub devworkspace-operator
  1. Remove the DevWorkspace Operator CSVs
brew install coreutils
sudo ln -s /usr/local/bin/gtimeout /usr/local/bin/timeout
@ibuziuk
ibuziuk / blogs_2024.md
Last active April 30, 2024 13:24
Eclipse Che / Dev Spaces Blog Post Schedule 2024

January

February

@ibuziuk
ibuziuk / gist:2bab96915b5269ccaa6c3de5c7e0fadc
Created September 15, 2023 08:29
Deploy and update microservices on the fly with Eclipse Cloud DevTools
psql -d postgres
@ibuziuk
ibuziuk / gist:20c5b13b2287b288884cb85aaab7964e
Created September 15, 2023 08:29
Deploy and update microservices on the fly with Eclipse Cloud DevTools
psql -d postgres
apiVersion: template.openshift.io/v1
kind: Template
metadata:
name: install-devspaces-operator
objects:
- apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
name: devspaces-operator
namespace: ${DEVSPACES_NAMESPACE}
@ibuziuk
ibuziuk / map.js
Last active January 23, 2023 17:07
// map with arrow function
const names = ['Ilya', 'Alena', 'Nadia', 'Sasha'];
const members = names.map((name, index) => "member " + index + " " + name);
console.log(names);
console.log(members);
// map with function