じゃあ this の抜き打ちテストやるぞーをやってみた。
結果として、コードが読めなくて2問空欄解答をするしかなかったので調べてみました。
あ、やってない人は読む前に先にやってみてください。
ちなみにthisの話はあんまりしません。
そして今日調べたばかりなので間違っている可能性や、そもそも自分の知識不足のせいでバカ発見されただけかも知れません。
C:/Ruby193/bin/ruby.exe extconf.rb | |
creating Makefile | |
make | |
generating generator-i386-mingw32.def | |
compiling generator.c | |
In file included from c:/Ruby193/include/ruby-1.9.1/ruby/ruby.h:1381:0, | |
from c:/Ruby193/include/ruby-1.9.1/ruby.h:32, | |
from ../fbuffer/fbuffer.h:5, | |
from generator.c:1: |
#!/usr/sh | |
yum update -y | |
yum install -y git | |
yum install -y gcc gcc-c++ | |
yum install -y sqlite-devel | |
# こっち入れないとMissing OpenSSL lib?とエラーが出た | |
yum install -y openssl-devel | |
git clone git://github.com/sstephenson/rbenv.git ~/.rbenv | |
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile |
String.prototype.replaceFullCharacter = function() { | |
return this.replace(/[^!-~]/g, ""); | |
} |
# ./configure --target-os=linux --arch=arm --enable-cross-compile --cross-prefix=arm-linux-androideabi- --enable-shared --disable-symver --disable-doc --disable-ffplay --disable-ffmpeg --disable-ffprobe --disable-ffserver --disable-avdevice --disable-avfilter --disable-encoders --disable-muxers --disable-filters --disable-devices --disable-everything --enable-protocols --enable-parsers --enable-demuxers --enable-decoders --enable-bsfs --enable-network --enable-swscale --disable-demuxer=sbg --disable-demuxer=dts --disable-parser=dca --disable-decoder=dca --enable-asm --enable-version3 --prefix=/home/princess/Documents/FFmpeg-Android/build/ffmpeg/neon --extra-cflags='-O3 -Wall -mthumb -pipe -fpic -fasm -finline-limit=300 -ffast-math -fstrict-aliasing -Werror=strict-aliasing -fmodulo-sched -fmodulo-sched-allow-regmoves -Wno-psabi -Wa,--noexecstack -D__ARM_ARCH_5__ -D__ARM_ARCH_5E__ -D__ARM_ARCH_5T__ -D__ARM_ARCH_5TE__ -DANDROID -DNDEBUG -march=armv7-a -mfpu=neon -mfloat-abi=softfp -mvectorize-with-ne |
$.fn.extend({ | |
check : function() { | |
this.each(function() { | |
var elem = $(this).get(0); | |
if(elem.checked != null) { | |
elem.checked = true; | |
} | |
}); | |
return this; | |
}, |
Welcome to Scala version 2.10.2 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_03). | |
Type in expressions to have them evaluated. | |
Type :help for more information. | |
scala> val a = Map(java.lang.Float.valueOf(0f) -> -0f, java.lang.Float.valueOf(-0f) -> 0f) | |
a: scala.collection.immutable.Map[Float,Float] = Map(0.0 -> 0.0) | |
scala> val b = Map(java.lang.Float.valueOf(-0f) -> -0f, java.lang.Float.valueOf(0f) -> 0f) | |
b: scala.collection.immutable.Map[Float,Float] = Map(-0.0 -> 0.0) |
jQuery.Event.prototype.cancelEvent = function() { | |
this.stopPropagation(); | |
this.preventDefault(); | |
}; |
Number.prototype.isBetween = function(a, b) { | |
return a <= this && this <= b; | |
} |
echo "====== setup ======" | |
mysqlPassword="mysqlpassword" | |
wordpressDbname="wordpress" | |
wordpressUsername="wordpress" | |
wordpressPassword="wordpress" | |
# install command | |
yum install -y unzip wget | |
# install php mysql httpd |
じゃあ this の抜き打ちテストやるぞーをやってみた。
結果として、コードが読めなくて2問空欄解答をするしかなかったので調べてみました。
あ、やってない人は読む前に先にやってみてください。
ちなみにthisの話はあんまりしません。
そして今日調べたばかりなので間違っている可能性や、そもそも自分の知識不足のせいでバカ発見されただけかも知れません。