Skip to content

Instantly share code, notes, and snippets.

View DRMALEK's full-sized avatar
🎯
Focusing

Malek Baba DRMALEK

🎯
Focusing
View GitHub Profile
@DRMALEK
DRMALEK / ubuntu-dev-setup.md
Created November 4, 2021 19:52 — forked from caulagi/ubuntu-dev-setup.md
Install necessary packages on a fresh Ubuntu box

Base steps

# Enable multiverse repository
sudo sed -i "/^# deb.*multiverse/ s/^# //" /etc/apt/sources.list

sudo apt-get update
sudo apt-get upgrade -y

export LANGUAGE=en\_US.UTF-8
@DRMALEK
DRMALEK / config.json
Last active April 1, 2021 08:15
Config file for Python Logging module
{
"logging": {
"version": 1,
"disable_existing_loggers": true,
"formatters": {
"brief": {
"class": "logging.Formatter",
"datefmt": "%I:%M:%S",
"format": "%(levelname)-8s; %(name)-15s; %(message)s"
},
@DRMALEK
DRMALEK / README with MIT.md
Created July 3, 2020 22:59 — forked from ckib16/README with MIT.md
Default README template with the MIT license text.

QuickMarks

QuickMarks is an analytics app for web projects. It helps you track events on your websites. It is built using Rails, Devise, and a few charting libraries.

Quickmarks analytics offers a few key features:

  • A client-side JavaScript snippet that allows a user to track events on their website
  • A server-side API that captures and saves those events to a database
  • A Rails application that displays the captured event data for a user

Installation

@DRMALEK
DRMALEK / API.md
Created July 3, 2020 21:15 — forked from iros/API.md
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method: