Skip to content

Instantly share code, notes, and snippets.

View yasyf's full-sized avatar

Yasyf Mohamedali yasyf

View GitHub Profile
100001952744166
100018081465177
1404982057
100004666724669
100003816579517
100001816807934
1008746
100000953883028
791359691
1009444628
Roshni Sahoo
Sara Du
Greg Foster
Khoi Le
Julia Moseyko
Andy Trattner
Jason Liang
Andrea Badillo
Phi Xu
Michael Chang
function FindProxyForURL(url, host)
{
return "SOCKS 192.168.1.7:8889";
}
function FindProxyForURL(url, host)
{
return "SOCKS 192.168.1.7:8889";
}
class Foo {
constructor(name) {
this.name = name;
}
callMeByMyName() {
return this.name;
}
}
#!/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
/*
* 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>
Verifying my Blockstack ID is secured with the address 1ARZnf7GewXwy8YTnicPzusHkkJRpdF61r https://explorer.blockstack.org/address/1ARZnf7GewXwy8YTnicPzusHkkJRpdF61r
[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
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