Skip to content

Instantly share code, notes, and snippets.

View nonohry's full-sized avatar
🎯
Focusing

Nono Heryana nonohry

🎯
Focusing
View GitHub Profile
@nonohry
nonohry / vboxmanjaro.md
Created September 10, 2019 11:13
Install Virtualbox on Manjaro Linux

To install VirtualBox, you need to install the packages virtualbox and linux*-virtualbox-host-modules. The latter must match the version of the kernel you are running. To install VirtualBox and automatically install the kernel modules for your installed kernels enter the following command in the terminal:

pamac install virtualbox $(pacman -Qsq "^linux" | grep "^linux[0-9]*[-rt]*$" | awk '{print $1"-virtualbox-host-modules"}' ORS=' ') 

Once the installation has completed, it will then be necessary to add the VirtualBox Module to your kernel. The easy way is to simply reboot your system. Otherwise, to start using VirtualBox immediately, enter the following command:

sudo vboxreload
@nonohry
nonohry / matrics.html
Created September 3, 2019 06:24
Article Matrics
<div id="IssueFull">
<img src="https://1.bp.blogspot.com/-bI59Tfv3L2M/XW3uqpfOG7I/AAAAAAAAgnk/lWPVTOhxKDQBgCBZg54cOwKa5XoCOU5FQCLcBGAs/s1600/graph.png" height="15px">
{if is_a($article, 'PublishedArticle')}{assign var=galleys value=$article->getGalleys()}{/if}
<span> | {$totalViews}</span> <span>{translate key="article.abstract"} views:</span> <span><strong>{$article->getViews()}</strong></span>
{if $galleys}
{foreach from=$galleys item=galley name=galleyList}
<span> | <img src="(https://1.bp.blogspot.com/-8PoENXHuRM0/W6Bm4_-ECKI/AAAAAAAAZbE/r_91Jl_xujAXM281Dxx89i8QYHm2Xu4GgCPcBGAYYCw/s1600/pdf.png" height="15px"> {$galley->getGalleyLabel()} views:</span> <span><strong>{$galley->getViews()}</strong></span>
{/foreach}
{/if}
</div>
@nonohry
nonohry / link
Created April 23, 2019 07:09
Link ROM N900L
@nonohry
nonohry / raree.md
Created November 24, 2018 14:36
Awesome Collection Of Rare Hacking E-Books And PDF || 2018 Latest
@nonohry
nonohry / python.md
Created November 24, 2018 14:34
♣️♣️Python Video Courses Collection♣️♣️
@nonohry
nonohry / hfs.sh
Created October 15, 2018 14:46
Mount Read & Write HFS+ on Ubuntu
#These steps:
sudo apt install hfsprogs
#Check status of drive:
sudo fsck.hfsplus -f /dev/sdXY
#Unmount deivce:
sudo umount /media/nono/devicename
#Mount the drive with HFS+ read/write permissions:
@nonohry
nonohry / easy_install.sh
Last active October 8, 2018 11:32
easy_install pip fails on MacOS
#You may need to do this as user root:
curl https://bootstrap.pypa.io/get-pip.py | python
#to confirm it is working:
pip install --upgrade pip