Skip to content

Instantly share code, notes, and snippets.

View mrthehud's full-sized avatar

James Hudson mrthehud

  • @arqiva-tb
  • UK
View GitHub Profile
@mrthehud
mrthehud / webex-ubuntu.md
Last active September 27, 2017 16:20 — forked from mshkrebtan/webex-ubuntu.md
Run Cisco Webex on 64-bit Ubuntu 16.04

Run Cisco Webex on 64-bit Ubuntu 16.04

With Audio and Screen Sharing Enabled

Enable support for 32-bit executables

Add the i386 architecture to the list of dpkg architectures :

sudo dpkg --add-architecture i386

Keybase proof

I hereby claim:

  • I am mrthehud on github.
  • I am mrthehud (https://keybase.io/mrthehud) on keybase.
  • I have a public key ASBu8671Xli4R8fPhM_wiisHvKYY20cKtZZi0lxErLFFVwo

To claim this, I am signing this object:

#!/bin/sh
# Converts a mysqldump file into a Sqlite 3 compatible file. It also extracts the MySQL `KEY xxxxx` from the
# CREATE block and create them in separate commands _after_ all the INSERTs.
# Awk is choosen because it's fast and portable. You can use gawk, original awk or even the lightning fast mawk.
# The mysqldump file is traversed only once.
# Usage: $ ./mysql2sqlite mysqldump-opts db-name | sqlite3 database.sqlite
# Example: $ ./mysql2sqlite --no-data -u root -pMySecretPassWord myDbase | sqlite3 database.sqlite