Skip to content

Instantly share code, notes, and snippets.

View sreedharbukya's full-sized avatar
🎯
Focusing

Sreedhar Bukya sreedharbukya

🎯
Focusing
View GitHub Profile
@sreedharbukya
sreedharbukya / Linux-learn.md
Last active August 29, 2015 14:23
Linux Learning
@sreedharbukya
sreedharbukya / albumphotos.html
Created September 4, 2016 07:57 — forked from coolbung/albumphotos.html
Multiple Photo Upload
<div class="overlay ng-scope overlay-show" id="albumphots_dialog" toggleable="" parent-active-class="overlay-in" active-class="overlay-show">
<div class="navbar navbar-app navbar-absolute-top">
<div class="btn-group pull-left pullLeftWidthAlbum">
<div class="btn btn-navbar divOverflow" ng-hide="addPhotoDiv">
<span ng-click="toggleAction('albumphots_dialog');
title = 'albums'">
<i class="fa fa-chevron-left"></i>
{{ title | uppercase }}
</span>
</div>
@sreedharbukya
sreedharbukya / app.js
Created September 4, 2016 07:57 — forked from coolbung/app.js
Push & Translation
var juniteApp = angular.module('junite', ['ngRoute', 'ngTouch', 'toaster', 'LocalStorageModule', 'junite-Service', 'junite-directives', 'juniteController', 'socialapp', 'pascalprecht.translate', 'loginController', 'loginService', 'lib-ui', 'textAngular', 'blogapp', 'jgive','ngCordova','ngTwitter','ngCordovaOauth']);
juniteApp.run(function ($rootScope, $location, localStorageService, $window, $route, toaster, checkConnection, $translate, juniteService) {
// Push custom app vars
$rootScope.is_custom = (custom_app.LOGINURL.length > 0);
$rootScope.custom_app = custom_app;
// $rootScope.messages = message;
$rootScope.fbConnect = false;
// Initialize loader object
$rootScope.loader = {
@sreedharbukya
sreedharbukya / foo.log
Created May 18, 2018 06:18 — forked from ibeex/foo.log
Flask logging example
A warning occurred (42 apples)
An error occurred
@sreedharbukya
sreedharbukya / docker_dev.sh
Created August 4, 2020 03:24
Install Docker & Docker-Compose on Ubuntu
#!/bin/bash
echo "Starting Installing Docker"
sudo apt-get update --yes
sudo apt-get --yes install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common