Skip to content

Instantly share code, notes, and snippets.

View Zaky7's full-sized avatar

Zakir Zaky7

  • Shahdara, Delhi , India
View GitHub Profile
@Zaky7
Zaky7 / leetcode-1674.java
Last active December 6, 2020 03:46 — forked from meretciel/leetcode-1674.cpp
leetcode-1674.java
class Solution {
static class Point {
private int coordinate;
private int typeId;
Point(int coordinate, int typeId) {
this.coordinate = coordinate;
this.typeId = typeId;
}
};
@Zaky7
Zaky7 / install-firacode.sh
Created August 15, 2019 12:47 — forked from nikhita/install-firacode.sh
How to install FiraCode font on Linux
mkdir -p ~/.local/share/fonts
for type in Bold Light Medium Regular Retina; do wget -O ~/.local/share/fonts/FiraCode-$type.ttf "https://github.com/tonsky/FiraCode/blob/master/distr/ttf/FiraCode-$type.ttf?raw=true"; done
fc-cache -f
@Zaky7
Zaky7 / SQL_COOKBOOK_TABLE.sql
Created March 6, 2019 10:21 — forked from YujiShen/SQL_COOKBOOK_TABLE.sql
Table EMP and DEPT of SQL Cookbook for MySQL
-- Thanks to http://justinsomnia.org/2009/04/the-emp-and-dept-tables-for-mysql/
DROP TABLE IF EXISTS emp;
CREATE TABLE emp (
empno decimal(4,0) NOT NULL,
ename varchar(10) default NULL,
job varchar(9) default NULL,
mgr decimal(4,0) default NULL,
hiredate date default NULL,
@Zaky7
Zaky7 / README.md
Created August 9, 2018 11:36 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@Zaky7
Zaky7 / httpd.conf
Created July 31, 2017 17:31 — forked from johnfoderaro/httpd.conf
Default httpd.conf file - macOS Sierra 10.12.2 - /etc/apache2/httpd.conf
#
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure