Skip to content

Instantly share code, notes, and snippets.

View SANGED's full-sized avatar

m SANGED

  • @sublimetextpackages
View GitHub Profile
@Sanix-Darker
Sanix-Darker / [PYTHON]import a module on sup folder PYTHON withouth been a package (containing a __init__.py file).py
Last active October 11, 2019 12:33
[PYTHON]import a module on sup folder PYTHON withouth been a package (containing a __init__.py file)
from os import path as ospath
from sys import path as syspath
# moving the path outside of the current dir
syspath.insert(1, ospath.join(syspath[0], '..'))
import module
# Or just in a specific parent directory in the sup folder:
# import sys
# sys.path.insert(0, '../module/')
@Sanix-Darker
Sanix-Darker / [PHP]Class_decoupage_Panda.php
Last active September 5, 2019 20:40
[PHP]Writing text on Animated GIF PHP
Class PANDA_decode {
var $PANDA_TR = - 1;
var $PANDA_TG = - 1;
var $PANDA_TB = - 1;
var $PANDA_TI = 0;
var $PANDA_buffer = Array();
var $PANDA_arrays = Array();
var $PANDA_delays = Array();
var $PANDA_dispos = Array();
var $PANDA_stream = "";
@Sanix-Darker
Sanix-Darker / [SHELL, MONGO]MONGODB CLI
Last active April 29, 2020 05:54
[SHELL, MONGO]MONGODB CLI
// Create database:
use database
// Create a collection by insering some thing in it:
db.testCollection.insert({"test":"test"})
show dbs
// LIst Data Base
show collections
@Sanix-Darker
Sanix-Darker / [JS] angular.merge FOR OLDER VERSIONS
Created February 21, 2018 07:32
[JS] angular merge angular.merge FOR OLDER VERSIONS
function merge(obj1,obj2){ // Our merge function
var result = {}; // return result
for(var i in obj1){ // for every property in obj1
if((i in obj2) && (typeof obj1[i] === "object") && (i !== null)){
result[i] = merge(obj1[i],obj2[i]); // if it's an object, merge
}else{
result[i] = obj1[i]; // add it to result
}
}
for(i in obj2){ // add the remaining properties from object 2
@Sanix-Darker
Sanix-Darker / Create_your_free_onion_website_on_Tor_network.sh
Last active November 7, 2023 12:37
Create your free onion website on Tor network
#Creating an .onion service in the Tor network is as simple as editing /etc/tor/torrc and adding:
HiddenServiceDir /var/lib/tor/www_service/
HiddenServicePort 80 127.0.0.1:80
# After restarting the tor service with
sudo service tor restart
# or
sudo service tor reload
# The directory will be created automagically, and inside the new directory, two files are generated, hostname and private_key.
@Sanix-Darker
Sanix-Darker / AngularJS IONIC upload file
Created November 6, 2017 13:13
AngularJS IONIC upload file
<div ng-if="!profile_tab">
<div class="card-item" ng-click="changeAvatar('id_front')">
<img ng-if="user.individual_profile.national_id_front=='/images/missing.png'"
ng-src="img/auth/missing_card.png" alt="" class="row no-padding">
<img ng-if="user.individual_profile.national_id_front!='/images/missing.png'"
ng-src="{{user.individual_profile.national_id_front}}" alt="" class="row no-padding">
<div class="row peex-first-background text-center card-id">
<span class="text-center">
National ID Front
</span>
@Sanix-Darker
Sanix-Darker / Github credentials (See - Modify - Delete)
Last active January 21, 2018 12:01
Github credentials (See - Modify - Delete)
Github credentials: Control Panel\User Accounts and Family Safety\Credential Manager
Then click on Windows Credentials
@Sanix-Darker
Sanix-Darker / [Rails] Add column via console
Created October 27, 2017 11:07
[Rails] Add column via console
rails generate migration AddPartNumberToProducts part_number:string
@Sanix-Darker
Sanix-Darker / [JS]Fixed a div when scroll
Last active October 28, 2017 00:10
[JS]Fixed a div when scroll
$.fn.followTo = function (pos) {
var $this = this,
$window = $(window);
$window.scroll(function (e) {
if ($window.scrollTop() > pos) {
$this.css({
position: 'fixed',
top: 0
@Sanix-Darker
Sanix-Darker / [SHELL] Helpfull rails commands
Created October 19, 2017 07:40
[SHELL] Helpfull rails commands
#basics:
rails console
rails server
rake
rails generate
rails dbconsole
rails new app_name
#create scaffold
rails generate scaffold level