Author: | draftcode |
---|---|
Date: | 2011-11-11T13:18:07+09:00 |
ID: | 289a0136-0c1c-11e1-a06b-040ccee352e6 |
This benchmark has been misleading for a while. It was originally made to demonstrate how JIT compilers can do all sorts of crazy stuff to your code - especially LuaJIT - and was meant to be a starting point of discussion about what exactly LuaJIT does and how.
As a result, its not indicative of what its performance may be on more realistic data. Differences can be expected because
- the text will not consist of hard-coded constants
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
#!/usr/bin/env python | |
# | |
# Copyright (C) 2013 Stanislav Golovanov <[email protected]> | |
# Strahinja Val Markovic <[email protected]> | |
# | |
# This file is part of YouCompleteMe. | |
# | |
# YouCompleteMe is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or |
原文 : Tutorial 38
- WindowsでGit(Github for Windowsとかのアレ)を使うときに
git add
とかをga
みたいなaliasにして楽をしようというアレ - ちなみに、PowerShellのバージョンは4.0です。確認はPowerShell上で
$PSVersionTable
をすればPSVersionとかいうのがでてくる
- PowerShellでもよくあるエイリアスというものを設定できる。
Alias
とPowerShellで打ち込んであげると設定されているエイリアスを見ることができる。- エイリアスを設定するときは
Set-Alias 設定したいエイリアス コマンドレット
みたいな感じでできる。