Skip to content

Instantly share code, notes, and snippets.

View sivaprabug's full-sized avatar
🏠

Sivaprabu Ganesan sivaprabug

🏠
View GitHub Profile
@sivaprabug
sivaprabug / journalctl-cheatsheet.md
Created September 10, 2023 13:51 — forked from sergeyklay/journalctl-cheatsheet.md
Journalctl Cheat Sheet

Journalctl Cheat Sheet

Configuration

Permissions

To see messages from other users and the system as well as performing various log operations from a regular user add it to the group:

sudo usermod -aG systemd-journal $USER
@sivaprabug
sivaprabug / broadcast.html
Created December 23, 2016 11:37 — forked from anonymous/gist:cd9762a69dd744d6093bd826c42d6eb1
Broadcast concepts in AngularJS
<!DOCTYPE html>
<html>
<head>
<title>Broadcasting</title>
<script src="js/angular.min.js"></script>
<script>
var app = angular.module('app', []);
app.controller("firstCtrl", function ($scope) {
$scope.handleClick = function (msg) {