Skip to content

Instantly share code, notes, and snippets.

View djordjecupic's full-sized avatar
🏠
Working from home

Djordje Cupic djordjecupic

🏠
Working from home
View GitHub Profile
@djordjecupic
djordjecupic / tmp.txt
Created October 24, 2019 09:50
NOTE: These are purged 24 h after notification
#0001 Acer Aspire ES1-512
------------------------------------------------------------
SO-DIMM DDR3L 1333 MHz CL9 SDRAMM Dual Channel
Latency: 9 9 9 24
Voltage: 1.35V

Keybase proof

I hereby claim:

  • I am djordjecupic on github.

  • I am djordjecupic (https://keybase.io/djordjecupic) on keybase.

  • I have a public key ASCC_X_PBQS7mmh-uQzi4fmtqt3VW1aBZrHHDYKVTZBStgo

@djordjecupic
djordjecupic / config
Last active June 5, 2019 16:56
irssi config Example
# Core settings
settings = {
core = {
real_name = "Djordje Cupic";
# Visible in front of the Address
user_name = "djordjecupic"
# Visible in channels
nick = "djordjecupic"
};
};
@djordjecupic
djordjecupic / README.md
Created January 28, 2019 01:20 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@djordjecupic
djordjecupic / config
Last active November 28, 2019 21:30
Bare-bones SSH host configuration template
Host server
User username
HostName 127.0.0.1
Port 22
IdentityFile ~/.ssh/id_rsa.pub
@djordjecupic
djordjecupic / example.com.conf
Last active January 22, 2019 21:03
Bare-bones Apache Virtual Host configuration template
<VirtualHost *:80>
ServerAdmin admin@example.com
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/example.com/public_html
<Directory /var/www/example.com/public_html>
Options -Indexes +FollowSymLinks
AllowOverride All
</Directory>
@djordjecupic
djordjecupic / openpgp.txt
Created October 3, 2018 12:23
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:bf74866a4c1493feb2aa90a8242ba2365d3074b5]
@djordjecupic
djordjecupic / css-media-queries-cheat-sheet.css
Created August 15, 2018 16:18 — forked from bartholomej/css-media-queries-cheat-sheet.css
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }
@djordjecupic
djordjecupic / style.scss
Last active August 11, 2018 16:23
Styling links SASS Snippet
a {
&:link {
color: blue;
text-decoration: none;
}
&:visited {
color: purple;
&:hover {
color: orange;
}
@djordjecupic
djordjecupic / bash-cheatsheet.sh
Created August 10, 2018 16:09 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04