Skip to content

Instantly share code, notes, and snippets.

View gjerokrsteski's full-sized avatar
🎯
Focusing

Gjero Krsteski gjerokrsteski

🎯
Focusing
View GitHub Profile
@gjerokrsteski
gjerokrsteski / Dockerfile with multi-stage build for production
Last active December 13, 2023 01:21
Dockerfile with multi-stage build for dev and production
FROM node:12-alpine as base
WORKDIR /src
COPY package.json package-lock.json /src/
COPY . /src
EXPOSE 8080
FROM base as production
ENV NODE_ENV=production
@gjerokrsteski
gjerokrsteski / remove env file from git forever
Last active April 18, 2024 22:20
remove env file from git history forever
echo '.env' >> .gitignore
git rm -r --cached .env
git add .gitignore
git commit -m 'untracking .env'
git push origin master
@gjerokrsteski
gjerokrsteski / remove the idea folder from git
Last active October 4, 2021 12:31
remove the .idea folder from git
echo .idea >> .gitignore
git rm -r --cached .idea
git add .gitignore
git add -u .idea/
git commit -m "remove the .idea folder"
@gjerokrsteski
gjerokrsteski / install-aws-cli-sam-debian-ubuntu-linux.sh
Created April 30, 2019 13:08
install aws cli and sam using python
#!/usr/bin/env bash
set -eo pipefail
which python
pip --version
sudo pip install setuptools
sudo pip install wheel
sudo pip install awscli --upgrade
@gjerokrsteski
gjerokrsteski / static-file-server.go
Last active December 19, 2017 20:20
simple static file server in go
package main
import (
"flag"
"log"
"net/http"
)
func main() {
port := flag.String("p", "8100", "port to serve on")
@gjerokrsteski
gjerokrsteski / update submodule to branch to v1.10.0
Last active December 8, 2016 09:28
update submodule to branch version
cd pimf-framework/ && \
git fetch --tags && \
git checkout v1.10.0 && \
cd .. && \
git add pimf-framework/ && \
git commit -m "moved submodule to v1.10.0" && \
git push
git submodule --quiet sync &&
git submodule --quiet update --force --init --recursive &&
git submodule foreach git pull --force origin master &&
cd pimf-framework/ &&
git checkout -f v1.9.0 &&
cd .. &&
git add pimf-framework &&
git commit -m "use submoduile at tag v1.9.0" &&
git push
<?php
apc_clear_cache();
apc_clear_cache('user');
apc_clear_cache('opcode');
echo 'success = true'.PHP_EOL;
@gjerokrsteski
gjerokrsteski / gist:9bdeb4af3874742ec944
Created March 11, 2015 16:09
is_null($x) vs $x === null in PHP
<?php
error_reporting(E_USER_NOTICE);
//checking with ===
$a = array();
$time = microtime(true);
for($i=0;$i<10000;$i++) {
if($a[$i] === null) {
@gjerokrsteski
gjerokrsteski / mysql-sql.log
Created September 9, 2011 08:35
SQL-Statements erstellt von MySQLwährend des Benchmarks
110824 10:13:55 14424 Connect xxxxxx@localhost on
14424 Init DB krsteski_doctrine2_test
14424 Query DROP TABLE IF EXISTS bookMYSQL
14424 Query DROP TABLE IF EXISTS authorMYSQL
14424 Query CREATE TABLE bookMYSQL (
id int(11) NOT NULL AUTO_INCREMENT,
title varchar(255) NOT NULL,
isbn varchar(24) NOT NULL,
price decimal(10,0) NOT NULL,
authorMYSQL_id int(11) DEFAULT NULL,