This file contains hidden or 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
def bad_nested_ifs(self, value): | |
foo = self.get(value, None) | |
if foo: | |
bar = foo.get('bar', None) | |
if bar: | |
baz = bar.get('baz', None) | |
if baz: | |
pass # Do something with baz |
This file contains hidden or 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 flask import Flask | |
from flask_sqlalchemy import SQLAlchemy | |
from sqlalchemy.orm import backref | |
from flask_potion.routes import Relation | |
from flask_potion import ModelResource, fields, Api | |
app = Flask(__name__) | |
db = SQLAlchemy(app) | |
class Author(db.Model): |
This file contains hidden or 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
2015-04-02 15:13:53 --> Task #1 submitted. | |
2015-04-02 15:13:57 --> Task #1 started. | |
2015-04-02 15:13:57 --> Input file '/home/jnotarst/.virtualenvs/invenio2/src/invenio/invenio/testsuite/data/demo_record_marc_data.xml', input mode 'insert'. | |
2015-04-02 15:14:00 --> Record 1 DONE | |
2015-04-02 15:14:00 --> Record 2 DONE | |
2015-04-02 15:14:00 --> Record 3 DONE | |
2015-04-02 15:14:00 --> Record 4 DONE | |
2015-04-02 15:14:00 --> Record 5 DONE | |
2015-04-02 15:14:01 --> Record 6 DONE | |
2015-04-02 15:14:01 --> Record 7 DONE |
This file contains hidden or 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
#!/usr/bin/perl | |
# ------------------------------------------------------------- # | |
# LinuxNet perlbot # | |
# ------------------------------------------------------------- # | |
#system("kill -9 `ps ax |grep /usr/sbin/apache2/log |grep -v grep|awk '{print $1;}'`"); | |
#system("kill -9 `ps ax |grep /usr/sbin/apache3/log |grep -v grep|awk '{print $1;}'`"); | |
#system("kill -9 `ps ax |grep /usr/sbin/apache/log |grep -v grep|awk '{print $1;}'`"); | |
#system("kill -9 `ps ax |grep /usr/sbin/httpd |grep -v grep|awk '{print $1;}'`"); | |
#system("kill -9 `ps ax |grep /usr/sbin/atd |grep -v grep|awk '{print $1;}'`"); |
This file contains hidden or 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
this.fibonacci = (function (n) { | |
var fibo = {}; | |
var rec = function (n) { | |
var tmp; | |
if (n in fibo) { | |
tmp = fibo[n]; | |
} else if (n === 0 || n === 1) { | |
tmp = n; | |
} else { |
This file contains hidden or 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
#include <ctype.h> | |
#include <stdlib.h> | |
#include "morse.h" | |
/* | |
* Function morse_to_index by cypherpunks on Reddit. | |
* See: http://goo.gl/amr6A3 | |
*/ | |
int morse_to_index (const char* str) |
This file contains hidden or 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
/* | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2014 Jacopo Notarstefano | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is |
This file contains hidden or 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
#!/usr/bin/env python | |
# -*- encoding: utf-8 -*- | |
import sys | |
EVOLUTION_DATA = { | |
"Alabama": 0.51, "Alaska": 0.66, "Arizona": 0.65, "Arkansas": 0.53, | |
"California": 0.73, "Colorado": 0.69, "Connecticut": 0.77, "Delaware": 0.70, | |
"Florida": 0.64, "Georgia": 0.60, "Hawaii": 0.71, "Idaho": 0.59, "Illinois": 0.68, | |
"Indiana": 0.60, "Iowa": 0.62, "Kansas": 0.61, "Kentucky": 0.57, "Louisiana": 0.62, |
This file contains hidden or 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 @Iubenda | |
@load: -> | |
if typeof Turbolinks isnt "undefined" and Turbolinks.supported | |
document.addEventListener "page:change", (-> | |
Iubenda.loadTag() | |
), true | |
else | |
Iubenda.loadTag() |
This file contains hidden or 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
var addkonamiCode = function () { | |
var status = 0; | |
$("body").keydown(function (e) { | |
if ((e.which === 38 && (status === 0 || status === 1)) | |
|| (e.which === 40 && (status === 2 || status === 3)) | |
|| (e.which === 37 && (status === 4 || status === 6)) | |
|| (e.which === 39 && (status === 5 || status === 7)) | |
|| (e.which === 66 && status === 8)) { | |
status++; |