This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = ""; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Github credentials: Control Panel\User Accounts and Family Safety\Credential Manager | |
Then click on Windows Credentials |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rails generate migration AddPartNumberToProducts part_number:string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.fn.followTo = function (pos) { | |
var $this = this, | |
$window = $(window); | |
$window.scroll(function (e) { | |
if ($window.scrollTop() > pos) { | |
$this.css({ | |
position: 'fixed', | |
top: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#basics: | |
rails console | |
rails server | |
rake | |
rails generate | |
rails dbconsole | |
rails new app_name | |
#create scaffold | |
rails generate scaffold level |
NewerOlder