Skip to content

Instantly share code, notes, and snippets.

View ajai8085's full-sized avatar
🎯
Focusing

Ajai ajai8085

🎯
Focusing
View GitHub Profile

Installing and settingup citrix workspace on Fedora 32

  1. Download the latest version of citrix workspace app for linux form here https://www.citrix.com/en-au/downloads/workspace-app/linux/workspace-app-for-linux-latest.html
  2. Direct download lik -> https://downloads.citrix.com/17904/ICAClient-rhel-20.06.0.15-0.x86_64.rpm?__gda__=1594195198_18044945221df16b768c3db047809453
  3. Open termial and navigate to Downloads folder and issue the command sudo rpm -i ICAClient-rhel-13.10.0.20-0.x86_64.rpm
  4. Download Server certificate -> (GoDaddy Secure Server Certificate (Intermediate Certificate) - G2) download .crt format https://ssl-ccp.godaddy.com/repository/gdig2.crt
  5. Open up terminal and issue the command and navigate to Downloads folder and issue the command sudo su make the commandline as root user
  6. followed by copying the certificate as admin user to citrix certificate store cp gdig2.crt /opt/Citrix/ICAClient/keystore/cacerts
  7. and then issue the command /opt/Citrix/ICAClient/util/ctx_rehas
@ajai8085
ajai8085 / Install NVM.md
Created February 4, 2019 09:41
Install NVM on Fedora

Install NVM on Fedora

1. Install node and NPM:

sudo dnf install -y nodejs npm

2. Install NVM via NPM:

@ajai8085
ajai8085 / Raspberry-pi.md
Created January 3, 2019 13:04
Configure rasberry pi
@ajai8085
ajai8085 / .bashrc
Last active March 30, 2022 03:24
cmdr conemu git prompt as admin
env=~/.ssh/agent.env
agent_load_env () { test -f "$env" && . "$env" >| /dev/null ; }
agent_start () {
(umask 077; ssh-agent >| "$env")
. "$env" >| /dev/null ; }
agent_load_env
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Dynamic;
using System.Linq;
using System.Reflection;
using System.Reflection.Emit;
using System.Text;
using System.Threading.Tasks;

Keybase proof

I hereby claim:

  • I am ajai8085 on github.
  • I am ajai (https://keybase.io/ajai) on keybase.
  • I have a public key whose fingerprint is 9D48 B117 559D F6F0 B8A4 B528 D10C 244B 11D5 7616

To claim this, I am signing this object:

@ajai8085
ajai8085 / docker-compose.yml
Created February 3, 2018 12:58
Docker compos with redis - postgres sql
# Use postgres/example user/password credentials
version: '3.1'
services:
db:
image: postgres:9.6.6
ports:
- "5432:5432"
restart: always
@ajai8085
ajai8085 / Program.cs
Created November 13, 2017 03:44
StackExchange.Redis extensions for HashSet
using System;
using System.Collections.Generic;
using System.Linq;
using StackExchange.Redis;
namespace RedisPlayground
{
class Program
{
static void Main(string[] args)
@ajai8085
ajai8085 / .gitconfig
Created October 23, 2017 03:57
Sample GitConfig c:\users\UserName\.gitconfig
[user]
name = name
email = name@email.com
[user]
email = name@email.com
[filter "lfs"]
smudge = git-lfs smudge -- %f
required = true
clean = git-lfs clean -- %f
[alias]