Skip to content

Instantly share code, notes, and snippets.

View m0k1's full-sized avatar
👻
Hunting bugs like Ghost Buster !

Momčilo Mićanović m0k1

👻
Hunting bugs like Ghost Buster !
View GitHub Profile
@m0k1
m0k1 / sql_dork_list
Created December 7, 2014 23:15
Google SQL dork list
trainers.php?id=
play_old.php?id=
declaration_more.php?decl_id=
Pageid=
games.php?id=
newsDetail.php?id=
staff_id=
historialeer.php?num=
product-item.php?id=
news_view.php?id=
@m0k1
m0k1 / vnc_manual.txt
Last active November 10, 2022 04:55
How to install VNC server ubuntu digitalocean
just edit the vnc_user in this text
-------------------------------
apt-get install gnome-core xfce4 firefox
apt-get install vnc4server
adduser vnc_user
su - vnc_user
vncserver
cp ~/.vnc/xstartup ~/.vnc/xstartup.bak
rm -rf ~/.vnc/xstartup

Bank of commons ReactJS frontend

Screens

  1. register
  2. login
  3. forgot password
  4. company
    1. account
    2. users
  5. settings

Keybase proof

I hereby claim:

  • I am m0k1 on github.
  • I am m0k1 (https://keybase.io/m0k1) on keybase.
  • I have a public key ASBW9gNOH02eBawP_T_SEnOB5OCoFEBlUHcMgukuCPH_eAo

To claim this, I am signing this object:

@m0k1
m0k1 / mojave.xml
Created July 1, 2018 06:08 — forked from trongthanh/mojave.xml
macOS Mojave dynamic background re-implement as GTK+ background slideshow. Background images are changed to reflect the time of the day.
<!-- Intruction:
- Download and unzip Mojave dynamic background here: https://files.rb.gd/mojave_dynamic.zip
- Fix the path to the background images
- Use gnome-tweaks tool to select this XML as wallpaper
-->
<background>
<starttime>
<year>2014</year>
<month>01</month>
<day>11</day>
@m0k1
m0k1 / fix.txt
Created March 12, 2018 10:49
fallout 4 fix
https://www.reddit.com/r/fo4/comments/3yjxzv/game_is_running_too_fast_how_do_i_fix_this/?st=jeo3pb4w&sh=4fc9471b
@m0k1
m0k1 / gource.sh
Last active March 4, 2018 23:31 — forked from cgoldberg/gource.sh
Generate a MP4 Video for your Git project commits using Gource!
# install bzr and gource
# get a branch of Mir's trunk code
# create gource video
$ sudo apt-get install bzr gource
$ bzr branch lp:mir
$ cd mir
$ gource \
-s .06 \
@m0k1
m0k1 / web-service-soap-client-server-php.md
Created February 22, 2018 21:14 — forked from umidjons/web-service-soap-client-server-php.md
Simple Web service - SOAP Server/Client in PHP

Simple Web service - SOAP Server/Client in PHP

Implementation of the SOAP server - server.php:

<?php
// turn off WSDL caching
ini_set("soap.wsdl_cache_enabled","0");

// model, which uses in web service functions as parameter
@m0k1
m0k1 / web-service-soap-client-server-php.md
Created February 22, 2018 21:14 — forked from umidjons/web-service-soap-client-server-php.md
Simple Web service - SOAP Server/Client in PHP

Simple Web service - SOAP Server/Client in PHP

Implementation of the SOAP server - server.php:

<?php
// turn off WSDL caching
ini_set("soap.wsdl_cache_enabled","0");

// model, which uses in web service functions as parameter
@m0k1
m0k1 / raspberry_pi_optimization.md
Last active February 16, 2018 06:59 — forked from cybear/raspberry_pi_optimization.md
I read up a little on performance optimization for the Raspberry Pi, and gathered the links before they disappear from my short term memory.

Raspberry Pi general optimization

  • Use a class 10 SD card for best speed. The USB bus can't come much higher than 30MB/s so you don't have to buy any extremely fast ones though. Not all cards are compatible, check the compatibility list: http://elinux.org/RPi_SD_cards
  • Use the HardFloat version of Raspbian instead of the SoftFloat. HF has much faster floating point operations - however SF is required for running Java. So it's either Java or performance, like normal.
  • The official Raspbian image gives low network speeds: http://elinux.org/RPi_Performance#NIC
  • A graphics driver by Simon / teh_orph is using hardware acceleration for some instructions: http://www.raspberrypi.org/phpBB3/viewtopic.php?f=63&t=28294 installation instructions: http://elinux.org/RPi_Xorg_rpi_Driver
  • The firmware can be upgraded which gives, among other things, better GPU performance.