Skip to content

Instantly share code, notes, and snippets.

View andymnc's full-sized avatar

Andrea Manconi andymnc

View GitHub Profile

Disclaimer: This gist is a bit outdated now. The client download page now redirects to a login page that the downloads are guarded behind. You'll want to do a web search for a pulse secure deb file and install that now. Try: http://webdev.web3.technion.ac.il/docs/cis/public/ssl-vpn/ps-pulse-ubuntu-debian.deb. When I installed Pulse Secure 9.1R13, I didn't need to do anything else to get it working.

9.1R13 download: https://drive.google.com/file/d/1xfXsg9aNISAtWUgfVmAWKd_8FE2I_Mbl/view


To install Pulse Secure for Ubuntu 20.04, it is a bit complicated since the support isn't great.

First, we'll want to go through the form at https://www.pulsesecure.net/trynow/client-download/. You'll get an email with download links to the latest versions of pulse secure. Download the Linux

@klingtnet
klingtnet / how-to-run-melodics-on-linux-using-wine.md
Created February 25, 2018 17:02
How to run melodics on Linux using Wine

How to run melodics on Linux using Wine

export PULSE_LATENCY_MSEC=5\
    && export WINEPREFIX="/home/alinz/.wine"\
    && wine "$USER/.wine/dosdevices/c:/Program Files/Melodics/Melodics.exe"
@simonhamp
simonhamp / AppServiceProvider.php
Last active May 4, 2024 04:21
A pageable Collection implementation for Laravel
<?php
namespace App\Providers;
use Illuminate\Support\Collection;
use Illuminate\Pagination\LengthAwarePaginator;
class AppServiceProvider extends ServiceProvider
{
public function boot()
@umidjons
umidjons / choose-time-ejuidatetimepicker.php
Created December 4, 2013 07:09
Yii: EJuiDateTimePicker extension to choose only time (no date controls)
<?php
// more: http://www.yiiframework.com/extension/ejuidatetimepicker
// original plugin: http://trentrichardson.com/examples/timepicker
$this->widget( 'application.extensions.timepicker.EJuiDateTimePicker', array(
'model' => $model,
'attribute' => 'interval_time',
'options' => array(
'timeOnly' => true,