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
{ | |
"chain": [ | |
{ | |
"index": 1, | |
"previous_hash": 1, | |
"proof": 100, | |
"timestamp": 1521515418.229695, | |
"transactions": [] | |
}, | |
{ |
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
... | |
WARNING: Using default arg, failed lookup: GATE_OP, repr: 1 | |
Writing docs for tf.assert_less (<function assert_less at 0x10db64578>). | |
Writing docs for tf.gfile.DeleteRecursively (<function delete_recursively at 0x10de7a500>). | |
Writing docs for tf.image.decode_png (<function decode_png at 0x10dc71848>). | |
Writing docs for tf.contrib.cloud.BigQueryReader (<class 'tensorflow.contrib.cloud.python.ops.bigquery_reader_ops.BigQueryReader'>). | |
Writing docs for tf.contrib.keras.backend.log (<function log at 0x110972578>). | |
Writing docs for tf.contrib.nccl.all_max (<function all_max at 0x110d2aed8>). | |
Writing docs for tf.contrib.keras.backend.update_sub (<function update_sub at 0x1109719b0>). | |
Writing docs for tf.get_default_session (<function get_default_session at 0x10d64e398>). |
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
#include <string> | |
#include <vector> | |
#include <algorithm> | |
using namespace std; | |
struct One { | |
string name; | |
vector<string> values; | |
}; |
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
// ---------------------------------------------------------------------- | |
// A Verilog module for a simple divider | |
// Written by Gandhi Puvvada Date: 7/17/98, 2/15/2008, 10/13/08, 2/21/2010 | |
// File name: divider_combined_cu_dpu.v | |
// ------------------------------------------------------------------------ | |
// This is an improvement over divider.v | |
// We combined the two separate case statements in the divider.v | |
// into one single case statement. | |
// Notice the following lines added because of this combining | |
// X <= 4'bXXXX; // to avoid recirculating mux controlled by Reset |
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
//---------------------------------------------------------------------------- | |
// A verilog module for a ff_reset (based on my vhdl module ff_reset.vhd) | |
// Written by Gandhi Puvvada Date: 2/15/2008 | |
// File name: ff_reset.v | |
// Analyze and simulate for 550ns in modelsim. | |
// Answer all questions posted below. | |
//---------------------------------------------------------------------------- | |
// When you compile this design in synopsys, use the following command so that, | |
// the mapped design can NOT use complex cells with builtin muxes. | |
// set_dont_use lcb500kv/FDS* |
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
`timescale 1ns / 1ps | |
module ee201_roller(Clk, Reset, NewX, X); | |
/* INPUTS */ | |
// Clock & Reset | |
input Clk, Reset; | |
input NewX; | |
/** |
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
////////////////////////////////////////////////////////////////////////////////// | |
// Author: Brandon Franzke | |
// Create Date: 2013-02-04 | |
// Modified: | |
// File Name: ee201_clk_60Hz.v | |
// Description: | |
// | |
// | |
// Revision: 1.1 | |
// Additional Comments: |
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
$('#book').animate({ | |
opacity: 0.25, | |
left: '+=50', | |
height: 'toggle' | |
}, 5000, function() { | |
// Animation complete. | |
}); |
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
# Implementation of Application.Memory.Index class | |
jQuery -> | |
@module "Application.Memory", -> | |
class @Index | |
# Needed because the height depends on window size | |
setHeightOfLifeTimeFrame: -> | |
height = `$(document).height()` | |
$('#life_time_frame').css('height', height-50 + 'px'); | |
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
$(".memory").hover -> | |
memory = $(this).attr('id') | |
id = memory.split('_')[1] # get id of e.g. memory_4 | |
#find memory | |
time_frames = <% Memory.find(id).time_frames %> | |
for time_frame in time_frames | |
tf_id = time_frame.id | |
$("#"+tf_id).toggle() |
NewerOlder