Skip to content

Instantly share code, notes, and snippets.

View ohbus's full-sized avatar

Subhrodip Mohanta ohbus

View GitHub Profile
@nhudinhtuan
nhudinhtuan / cheat_sheet.md
Last active February 13, 2024 15:44
15 days cheat sheet for interviews
@ohbus
ohbus / hpwififix.sh
Last active January 31, 2023 04:35
[Solved] HP WiFi Not Working | Install RTL8723DE Wifi Driver in Ubuntu
#!/bin/bash
# Install RTL8723DE Wifi Driver in Ubuntu
# Subhrodip Mohanta - 18 July, 2019.
sudo apt install git build-essential dkms
cd /tmp
git clone -b extended https://github.com/lwfinger/rtlwifi_new.git
sudo dkms add ./rtlwifi_new
sudo dkms install rtlwifi-new/0.6
sudo modprobe -r rtl8723de && sudo modprobe rtl8723de
@rise-worlds
rise-worlds / For Mac 4.2.6 unlimited trial.md
Last active April 29, 2024 05:02 — forked from satish-setty/trial.md
Beyond Compare 4 license for Windows, Mac, Linux

for 4.2.4 or higher, 4.2.5,4.2.6,4.3.7, it's works, this is the way which makes Always in evaluation mode.

  1. open Terminal, go to the dir : cd /Applications/Beyond Compare.app/Contents/MacOS
  2. change the name BCompare to BCompare.bak: mv BCompare BCompare.bak
  3. touch a file name BCompare , and chmod a+ux BCompare : touch BCompare && chmod a+ux BCompare
  4. open BCompare with text editor, insert the script :
#!/bin/bash
rm "/Users/$(whoami)/Library/Application Support/Beyond Compare/registry.dat"
"`dirname "$0"`"/BCompare.bak $@
@PurpleBooth
PurpleBooth / README-Template.md
Last active May 3, 2024 17:44
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@weberste
weberste / gist:354a3f0a9ea58e0ea0de
Last active January 28, 2022 13:47
Dates only with Angular-UI Bootstrap datepicker
app.directive('datepickerLocaldate', ['$parse', function ($parse) {
var directive = {
restrict: 'A',
require: ['ngModel'],
link: link
};
return directive;
function link(scope, element, attr, ctrls) {
var ngModelController = ctrls[0];