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
ALMOST EQUAL TO ≈ | |
ANGLE ∠ | |
ASTERISK OPERATOR ∗ | |
ASYMPTOTICALLY EQUAL TO ≃ | |
BALLOT X ✗ | |
BLACK RIGHTWARDS ARROWHEAD ➤ | |
BLACK SQUARE ■ | |
BOTTOM SQUARE BRACKET ⎵ | |
CHECK MARK ✓ | |
CIRCLED PLUS ⊕ |
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
~/git/MXNet make scalapkg feature/arange_inference M 22:52 | |
Makefile:276: WARNING: Significant performance increases can be achieved by installing and enabling gperftools or jemalloc development packages | |
(cd /Users/taliesinb/git/MXNet/scala-package; \ | |
mvn package -Posx-x86_64-cpu,scala-2.11 -Dcxx="g++" \ | |
-Dbuild.platform="osx-x86_64-cpu" \ | |
-Dcflags="-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/taliesinb/git/MXNet/3rdparty/mshadow/ -I/Users/taliesinb/git/MXNet/3rdparty/dmlc-core/include -fPIC -I/Users/taliesinb/git/MXNet/3rdparty/tvm/nnvm/include -I/Users/taliesinb/git/MXNet/3rdparty/dlpack/include -I/Users/taliesinb/git/MXNet/3rdparty/tvm/include -Iinclude -funroll-loops -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -mf16c -DMSHADOW_USE_CUDA=0 -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -I/System/Library/Framewo |
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
#include <cstdarg> | |
#include <stdio.h> | |
#include <stdarg.h> | |
WolframLibraryData logLibData = NULL; | |
void MLPrintString(const char* str) { | |
if (!logLibData) return; | |
MLINK link = logLibData->getWSLINK(logLibData); | |
MLPutFunction(link, "EvaluatePacket", 1); |
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
Equal | |
SameQ | |
MatchQ | |
MemberQ | |
Take | |
Drop | |
Head | |
Most | |
Rest | |
Part |
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="en"> | |
<head> | |
<meta charset="utf-8" > | |
<title>Slider example</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script> | |
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/blitzer/jquery-ui.css" type="text/css" media="all" /> | |
</head> |
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
package split | |
import "testing" | |
var long []byte | |
const sz = 24 | |
const runs = 32 | |
func init() { |
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
package main | |
import "split" | |
import "time" | |
func main() { | |
long := make([]byte, 2 << 24) | |
for i := uint(1); i < 23; i++ { |
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
package split | |
import "bytes" | |
func CountByte(s []byte, c byte) int { | |
count := 0 | |
i := 0 | |
for i < len(s) { | |
if s[i] != c { | |
o := bytes.IndexByte(s[i:], c) |
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
package split | |
import "bytes" | |
func CountByte(s []byte, c byte) int { | |
count := 0 | |
i := 0 | |
for i < len(s) { | |
if s[i] != c { | |
o := bytes.IndexByte(s[i:], c) |
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 java.util.Properties; | |
import javax.mail.Folder; | |
import javax.mail.Message; | |
import javax.mail.MessagingException; | |
import javax.mail.NoSuchProviderException; | |
import javax.mail.Session; | |
import javax.mail.Store; | |
import javax.mail.FetchProfile; | |
public class InboxReader |