万年素人からHackerへの道

万年素人がHackerになれるまで殴り書きするぜ。

  • ・資産運用おすすめ
    10万円は1000円くらい利益
    資産運用ブログ アセマネ
    • ・寄付お願いします
      YENTEN:YYzNPzdsZWqr5THWAdMrKDj7GT8ietDc2W
      BitZenny:ZfpUbVya8MWQkjjGJMjA7P9pPkqaLnwPWH
      c0ban:8KG95GXdEquNpPW8xJAJf7nn5kbimQ5wj1
      Skycoin:KMqcn7x8REwwzMHPi9fV9fbNwdofYAWKRo

    Weex

    Androidのキーストア生成(Weex)

    まずは、 platforms/android/app/build.gradleの applicationId "com.weex.app"を修正。 https://alligator.io/vuejs/getting-started-vue-weex/ https://docs.oracle.com/cd/E19416-01/820-5959/ggezu/index.html これ見た。 keytool -genkey -v -keystore …

    Weexでuiのボタン色変え

    https://github.com/alibaba/weex-ui/blob/master/packages/wxc-button/type.js こんな感じにインポートして import { STYLE_MAP, TEXT_STYLE_MAP } from "weex-ui/packages/wxc-button/type"; こうする。 cssではなくてdata()での変数指定。 data() { retur…

    WeexでUI (weex-ui)

    WeexでUIを使うにはweex-uiを使うのがいい。 alibaba.github.io インストール -Dは--save-devの略 npm i babel-preset-stage-0 babel-plugin-component -D npm i weex-ui -S or yarn add --dev yarn add babel-preset-stage-0 yarn add --dev babel-plugin-c…

    WeexでPug(旧名:Jade)使う

    langへpugって書くだけ。 <template lang="pug"> div image.logo(style='width:500px;height:500px', :src='logo') text.greeting Big Numbers div(@click="jump('/game')") text.btn Start div(@click="jump('/setting')") text.btn Settings </template> でもその前に yarn add pugで入れる…

    Weexでfor

    リストレンダリング — Vue.js htmlで <ul id="example-2"> <li v-for="(item, index) in items"> {{ parentMessage }} - {{ index }} - {{ item.message }} </li> </ul> jsは var example2 = new Vue({ el: '#example-2', data: { parentMessage: 'Parent', items: [ { message: 'Foo' }, { message: 'Bar' } ] } }) これだと…

    Weexでいいサンプル

    GitHub - apuravchauhan/weex-base: Tutorial code to go with the below tutorial: https://medium.com/@apuravchauhan/weex-vs-react-native-from-scratch-2018-32ae41d1effc git clone https://github.com/apuravchauhan/weex-base cd apurav-app npm ins…

    Weexでのボタン押下処理

    src/HelloWorld.tsxを使った。 cssで背景色でボタンを擬似的に。 普通のクリックと長押しがある。 このサンプルではログとトースト表示。 @appear @disappearはなんか機能しないね。 <template> <div> <div class="box" @click="onclick" @longpress="onlongpress" @appear="onappear" @disappear="ondisappear"> <text class="box-text">test</text> </div> </div> </template> <script> co…

    Weexでページ

    結局はVue.jsなのでsrc/router.jsこれを利用。 qiita.com

    Weexのいろんなこと

    TypeScript zhuanlan.zhihu.com vue-class-component / typescript support? · Issue #3092 · alibaba/weex · GitHub この中国語読めば使える? iOS起動のエラー Error: You should config `CodeSign` and `Profile` in the `ios.config.json` We suggest th…