Giter Club home page Giter Club logo

xcode's Introduction

XCode license

one idea implemented by multi languages

requirement

python 2.7.7  
GCC 4.8.1  
JDK 1.7
PHP 5.5
Ruby 2.1.4

xcode's People

Contributors

jayin avatar jianzhiyao avatar

Stargazers

Fritz Lin avatar  avatar

Watchers

James Cloos avatar  avatar Jason_Lee avatar  avatar

xcode's Issues

对时间戳的操作

例如 根据时间戳 转成对应的格式,方法就脑洞一下

计算生日?

函数的覆写(hook)

var add = function add(a, b) { // original function
  return a + b
}

add = (function(fn){
  return function _add(a, b){ // wrapped function
    var c = fn(a, b)
    console.log('%d + %d = %d', a, b, c)  // extra
    return c
  }
})(add)

add(1, 2)

lodash等也有类似实现(_.wrap)

add = _.wrap(add, function(fn, a, b){
  var c = fn(a, b)
  console.log('%d + %d = %d', a, b, c) // extra
  return c
})

这种貌似叫hook,在其他主流语言大概如何实现?

对于P

刚update了Project-P 的README.md,小总结了正则的使用,发现java都要转义...
java的bug如下

mStr = mStr.replaceAll("\\{\\s*"+key+"\\s*\\}", val);

如果key ="\s" 估计就跪了

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.