Skip to content

Instantly share code, notes, and snippets.

View Miravicson's full-sized avatar

Victor Chiagozie Ughonu Miravicson

View GitHub Profile
@Miravicson
Miravicson / fontawesome-scss-in-nextjs.md
Created December 31, 2019 07:20 — forked from mehmetnyarar/fontawesome-scss-in-nextjs.md
Loading FontAwesome with SCSS in NextJS

Loading FontAwesome with SCSS in NextJS

Install Plugins

Install these two plugins:

Edit Configuration File

@Miravicson
Miravicson / firefox-developer-edition.md
Created February 13, 2019 11:41 — forked from mahammad/firefox-developer-edition.md
How To install Firefox Developer Edition and create desktop icon for Ubuntu 14.04 LTS

chose other install way

  1. Open Terminal Ctrl+Alt+T Download Firefox Developer Edition tar file

    wget https://download.mozilla.org/?product=firefox-aurora-latest-ssl&os=linux64&lang=en-US

  2. Copy tar file to opt sudo cp -rp firefox-35.0a2.en-US.linux-x86_64.tar.bz2

  3. Open opt folder (cd /opt/) and untar file sudo tar xjf firefox-35.0a2.en-US.linux-x86_64.tar.bz2

@Miravicson
Miravicson / README-Template.md
Created December 26, 2018 13:39 — forked from PurpleBooth/README-Template.md
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

import multiprocessing
class AwesomeMultiProcess(object):
def __init__(self, name):
self.name = name
def show_prompt(self):
proc_name = multiprocessing.current_process().name
print(proc_name)
from threading import Thread, Lock
import time
from queue import Queue
lock = Lock()
class AwesomeThread(Thread):
def __init__(self, queue):
Thread.__init__(self)