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
100001952744166 | |
100018081465177 | |
1404982057 | |
100004666724669 | |
100003816579517 | |
100001816807934 | |
1008746 | |
100000953883028 | |
791359691 | |
1009444628 |
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
Roshni Sahoo | |
Sara Du | |
Greg Foster | |
Khoi Le | |
Julia Moseyko | |
Andy Trattner | |
Jason Liang | |
Andrea Badillo | |
Phi Xu | |
Michael Chang |
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 FindProxyForURL(url, host) | |
{ | |
return "SOCKS 192.168.1.7:8889"; | |
} |
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 FindProxyForURL(url, host) | |
{ | |
return "SOCKS 192.168.1.7:8889"; | |
} |
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 Foo { | |
constructor(name) { | |
this.name = name; | |
} | |
callMeByMyName() { | |
return this.name; | |
} | |
} |
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
#!/usr/bin/ruby | |
# Protocol Buffers - Google's data interchange format | |
# Copyright 2008 Google Inc. All rights reserved. | |
# https://developers.google.com/protocol-buffers/ | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are | |
# met: | |
# | |
# * Redistributions of source code must retain the above copyright |
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
/* | |
* Original Author: David Robert Nadeau | |
* Site: http://NadeauSoftware.com/ | |
* License: Creative Commons Attribution 3.0 Unported License | |
* http://creativecommons.org/licenses/by/3.0/deed.en_US | |
*/ | |
#if defined(_WIN32) | |
#include <windows.h> | |
#include <psapi.h> |
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
Verifying my Blockstack ID is secured with the address 1ARZnf7GewXwy8YTnicPzusHkkJRpdF61r https://explorer.blockstack.org/address/1ARZnf7GewXwy8YTnicPzusHkkJRpdF61r |
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
[root@15d3c1a2801b speaker-diarization]# ./spk-diarization2.py meeting.wav | |
Reading file: meeting.wav | |
Writing output to: stdout | |
Using feacat from: /speaker-diarization/feacat | |
Writing temporal files in: /tmp | |
Writing lna files in: /speaker-diarization/lna | |
Writing exp files in: /speaker-diarization/exp | |
Writing features in: /speaker-diarization/fea | |
Performing exp generation and feacat concurrently | |
tokenpass: ./VAD/tokenpass/test_token_pass |
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
query = <<-SQL | |
SELECT c.id, array_agg(ind_t) AS top_industries, sum(ind.cnt) as ccnt | |
FROM | |
competitors c, | |
LATERAL ( | |
SELECT t.ind_t, count(*) as cnt | |
FROM ( | |
SELECT unnest(industry) as ind_t | |
FROM companies | |
) t |
NewerOlder