Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
-13 | |
-11 | |
-15 | |
-9 | |
-12 | |
-11 | |
-19 | |
-9 | |
-11 | |
-8 |
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
<!DOCTYPE html> | |
<html lang="pt-BR"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Imagem Projetada</title> | |
<style> | |
:root { | |
--width: 1024px; | |
--height: 500px; | |
} |
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
using System; | |
using System.Windows; | |
using System.Windows.Threading; | |
namespace TratamentoGlobalExcecao | |
{ | |
public partial class App : Application | |
{ | |
[STAThread] | |
static void Main(string[] args) |
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
using System.Collections.Generic; | |
using System.IO; | |
using System.Text; | |
using Colorspace; | |
public class Digraph | |
{ | |
public List<Dependency> Dependencies = new List<Dependency>(); |
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
import numpy as np | |
import matplotlib.pyplot as plt | |
lenfft = len(sinal)/2. | |
nyq = sampling_rate/2. | |
freq_axis = np.linspace(0, nyq, lenfft+1) | |
spectrum = np.abs(np.fft.rfft(sinal)) | |
plt.plot(freq_axis, spectrum) |
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
const int pulsos = 7; | |
const int duracaoPulso = 17; | |
const int pausa = 360; | |
const int frequencia = 4000; | |
const int pinoFalante = 8; // 8 ohm speaker in series with potentiometer | |
void setup() { | |
pinMode(pinoFalante, OUTPUT); | |
} |
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
pdict = {} | |
for line in open('torso_points.txt'): | |
vals = [float(v) for v in line.strip().split('; ')] | |
indice = int(vals[0]) | |
valores = vals[1:] | |
pdict[indice] = valores | |
pList = [pdict[key] for key in sorted(pdict.keys())] |
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
using System; | |
using System.Linq; | |
using System.Reactive.Linq; | |
using System.Reactive.Subjects; | |
namespace UnzipRx | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
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
import json | |
footprint = json.load(open('both.json')) | |
shape = (44,52) | |
nonzero = 0 | |
for f in footprint: | |
for l in f: | |
if l > 0: |
NewerOlder