Product: Sagitta Brutalis 980 (PN S2480-GTX-980)
Software: cudaHashcat 1.36b25, ForceWare 346.35
Accelerator: 8x Nvidia GTX 980 reference design, +250 clock offset
Product: Sagitta Brutalis 980 (PN S2480-GTX-980)
Software: cudaHashcat 1.36b25, ForceWare 346.35
Accelerator: 8x Nvidia GTX 980 reference design, +250 clock offset
# Result: http://i.imgur.com/thrh1TU.gif | |
from moviepy.editor import * | |
# We start with a looping gif, and we will add some text | |
clip = VideoFileClip("eugene.gif").speedx(0.7) # slow down a little | |
txt = (TextClip("Hey", fontsize=78, font='Impact-Normal', | |
color='yellow', stroke_color='black', | |
stroke_width=3, kerning=1.5) |
""" | |
This creates the following GIF, where the text appears to be "embedded" | |
in the video and "disappears" behind rapunzel. | |
http://i.imgur.com/gxEHfLX.gif | |
""" | |
from moviepy.editor import * | |
import numpy as np | |
import skimage.morphology as skm |
<?xml version='1.0' encoding='ASCII'?> | |
<flow_graph> | |
<timestamp>Tue Aug 12 14:13:51 2014</timestamp> | |
<block> | |
<key>options</key> | |
<param> | |
<key>id</key> | |
<value>fm_receiver</value> | |
</param> | |
<param> |
This entire guide is based on an old version of Homebrew/Node and no longer applies. It was only ever intended to fix a specific error message which has since been fixed. I've kept it here for historical purposes, but it should no longer be used. Homebrew maintainers have fixed things and the options mentioned don't exist and won't work.
I still believe it is better to manually install npm separately since having a generic package manager maintain another package manager is a bad idea, but the instructions below don't explain how to do that.
Installing node through Homebrew can cause problems with npm for globally installed packages. To fix it quickly, use the solution below. An explanation is also included at the end of this document.
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" B025 - RTC/EEPROM/TMP Example For the 24LC256 EEPROM | |
Copyright (c) 2013 Ciseco Ltd. | |
Author: Matt Lloyd | |
Requires wiringpi2-python for i2c interface | |
This code is distributed in the hope that it will be useful, |
<?xml version='1.0' encoding='ASCII'?> | |
<flow_graph> | |
<timestamp>Wed Sep 11 16:13:12 2013</timestamp> | |
<block> | |
<key>variable</key> | |
<param> | |
<key>id</key> | |
<value>xlate_filter_taps</value> | |
</param> | |
<param> |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
/** | |
* Retrieves all the rows in the active spreadsheet that contain data and logs the | |
* values for each row. | |
* For more information on using the Spreadsheet API, see | |
* https://developers.google.com/apps-script/service_spreadsheet | |
*/ | |
function readRows() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var rows = sheet.getDataRange(); | |
var numRows = rows.getNumRows(); |