Skip to content

Instantly share code, notes, and snippets.

View mmnaseri's full-sized avatar

Milad Naseri mmnaseri

View GitHub Profile
@mmnaseri
mmnaseri / setup-ism.sh
Created December 6, 2022 01:27
Simple script to install iSM on Ubuntu 22.04
#!/bin/bash
echo " [WARNING] Use this script at your own risk. This is not provided or endorsed by Dell Inc."
echo " Press ENTER/RETURN to continue or Ctrl-C to cancel."
read -s
echo " > Setting up temp directories"
cd /tmp || exit 1
rm -rf idrac-install
mkdir idrac-install
@mmnaseri
mmnaseri / app.js
Last active March 5, 2016 22:35
Ionic tabs application with sidemenu on a single page
angular.module('ionicApp', ['ionic'])
.config(function ($stateProvider, $urlRouterProvider, $ionicConfigProvider) {
$ionicConfigProvider.tabs.position('bottom');
$stateProvider
.state('tabs', {
url: "/tabs",
templateUrl: "templates/tabs.html"
})
.state('tabs.listing', {
url: "/listing",