インドの課題はインフラと宗教だろうな。環境さえ整えば、頭いいひとはいるしお金を出したい人も多いだろう。

インドの課題はインフラと宗教だろうな。環境さえ整えば、頭いいひとはいるしお金を出したい人も多いだろう。

 

ただ環境が悪いところが多いのと宗教がビジネスより優先されてしまうと

不確定リスク多いのよね

 

 

課題は、新たな景気の波が起きているにもかかわらず、

 

インドが中国から流出する資金をすべて吸収するほどの受け皿を持っていないこと

 

 

中国の経済力はいまだにインドの約5倍であり、中国には「時価総額1000億~2000億ドル(約15~30兆円)を超える企業がざらにある」

 

 

しかし、インドの好景気は国内投資家に支えられており、海外資金への依存度も減少。

 

 

中国国内の政治的リスクに対する警戒感が高まっており、多くの機関投資家は中国株の購入に慎重。

 

一方、インドは西側諸国や主要経済国と健全な関係を築き、大企業の工場建設誘致に積極的。

 

インドの発展を主眼において友好国との二国間投資協定の交渉が進められています。アナリストたちは、中国情勢とは無関係に、経済の魔神と化したインドを止めることは難しいと考えています。「インドの時代が到来した」との見方も

 

インドはめちゃ広いから場所には困らないけど、気候も暑いし課題も多いのね

 

 

インドに注目というのもそうだけど中国が期待外れの方向に向かってるという地政学的リスクがインド成長と日本リカバリーの要因よね

インドに注目というのもそうだけど中国が期待外れの方向に向かってるという地政学的リスクがインド成長と日本リカバリーの要因よね

 

世界第5位の経済国であるインドに注目が高まってる

 

 

しかし、一部の国際投資家は、インド銘柄の株価高騰に慎重な姿勢。

 

 

インドの株価は他の新興国と比較して常に高い水準にありましたが、

 

現在はさらに高騰している

 

個人投資家機関投資家を問わず、インド国内では高いバリュエーションを気にかけていない

 

インド株式市場が前代未聞の続伸を続けている要因

 

 

アナリストによれば、個人投資家はインド株式時価総額の9%を占めていますが、海外投資の割合は20%をわずかに下回っています。

 

だが

 

総選挙が終了すれば、海外投資も24年後半には増加する可能性が高いと予測

 

 

中国はvuejsなどの使えるオープンソースも増えてるから期待してるんだけどね。ちょっと怖いかな

最近のアドビの株価が下がってる理由はこれか

テキストから動画をつくれるのなら、おもしろい動画もうまれるのかな?

アニメーション賞とかもとるようになるか?

 

生成AIは、既存社会の置き換えではなくて新しい価値だからな

 

最近のアドビの株価が下がってる理由はこれか

 

米OpenAIは2月15日、テキストプロンプトから最長1分の動画を生成するAIモデル「Sora」を発表。

 

このモデルは、テキストの指示から現実的で想像力豊かなシーンを作成できる。

 

ただし、Soraはまだ複雑なシーンの物理を正確にシミュレートするのに苦労する可能性があるため、一般公開はされてない。

 

 

openapi20230108

openapi: 3.0.1
info:
  title: 'STEP1'
  description: ''
  version: ''

paths:
  /dashboard/update:
    post:
      tags:
        - dashboard
      summary: dashboardupdate
      description: hoge
      operationId: updateDashboard
      requestBody:
        description: hoge
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Dashboard'
      responses:
        default:
          description: updatehoge
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'

 

  /dashboard/search:
    get:
      tags:
        - dashboard
      summary: searchlist Dashboards by ###
      description: hoge
      operationId: searchDashboard
      parameters:
        - $ref: '#/components/parameters/Dashboardquery2'
      responses:
        default:
          description: searchlist
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Dashboard'

  /dashboard/edit/{id}:
    get:
      tags:
        - dashboards
      summary: search Dashboards by ###
      description: hoge
      operationId: searchbyidDashboard
      parameters:
        - $ref: '#/components/parameters/Dashboardpath1'
      responses:
        default:
          description: xxx
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Dashboard'
  /dashboard/create:
    post:
      tags:
        - dashboard
      summary: create Dashboard
      description: hoge
      operationId: createDashboard
      requestBody:
        description: hoge
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Dashboard'
      responses:
        default:
          description: create
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
  /dashboard/delete:
    post:
      tags:
        - dashboard
      summary: delete Dashboard
      description: hoge
      operationId: deleteDashboard
      parameters:
        - $ref: '#/components/parameters/Dashboardquery2'
      responses:
        default:
          description: delete
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
components:
  schemas:
    ApiResponse:
      type: object
      properties:
        code:
          type: integer
          format: int32
        type:
          type: string
        message:
          type: string
    Dashboard:
      type: object
      properties:
        id: 
          type: integer
          format: int64  
          example: 9999
        account_id: 
          type: string
          example: hoge
        sub_category_code: 
          type: string
          example: hoge
        team_code: 
          type: string
          example: hoge
        tag_code: 
          type: string
          example: hoge
        dashboard_title: 
          type: string
          example: hoge
        tab_key: 
          type: string
          example: hoge
        display_order: 
          type: integer
          format: int64  
          example: 9999
        width: 
          type: integer
          format: int64  
          example: 9999
        term_key: 
          type: string
          example: hoge
        chart_link_id: 
          type: string
          example: hoge
        create_datetime: 
          type: string
          format: date-time
          example: 2020-01-31T23:59:59+09:00
        create_username: 
          type: string
          example: hoge
        update_datetime: 
          type: string
          format: date-time
          example: 2020-01-31T23:59:59+09:00
        update_username: 
          type: string
          example: hoge
        is_deleted: 
          type: boolean
          format: int64  
          example: 9999
        deleted_datetime: 
          type: string
          format: date-time
          example: 2020-01-31T23:59:59+09:00
        deleted_username: 
          type: string
          example: hoge
  parameters:
    Dashboardpath1:
      name: id
      in: path
      description: kkkkk
      required: true
      schema:
        type: integer
        format: int64
    Dashboardquery2:
      name: id
      in: query
      description: kkkkk
      required: true
      schema:
        type: integer
        format: int64
    Dashboardquery3:
      name: id
      in: query
      description: xxxx ID
      required: true
      schema:
        type: integer
        format: int64
        example: 9999

openapi20230108

 fastapi_crud]# cat -n z1.txt 
     1  openapi: 3.0.1
     2  info:
     3    title: 'STEP1'
     4    description: ''
     5    version: ''
     6 
     7  paths:
     8    /dashboard/update:
     9      post:
    10        tags:
    11          - dashboard
    12        summary: dashboardupdate
    13        description: hoge
    14        operationId: updateDashboard
    15        requestBody:
    16          description: hoge
    17          required: true
    18          content:
    19            application/json:
    20              schema:
    21                $ref: '#/components/schemas/Dashboard'
    22        responses:
    23          default:
    24            description: updatehoge
    25            content:
    26              application/json:
    27                schema:
    28                  $ref: '#/components/schemas/Dashboard'
    29 
    30 
    31 
    32    /dashboard/search:
    33      get:
    34        tags:
    35          - dashboard
    36        summary: searchlist Dashboards by ###
    37        description: hoge
    38        operationId: searchDashboard
    39        parameters:
    40          - $ref: '#/components/parameters/Dashboard2'
    41        responses:
    42          default:
    43            description: searchlist
    44            content:
    45              application/json:
    46                schema:
    47                  type: array
    48                  items:
    49                    $ref: '#/components/schemas/Dashboard'
    50 
    51    /dashboard/edit/{id}:
    52      get:
    53        tags:
    54          - dashboards
    55        summary: search Dashboards by ###
    56        description: hoge
    57        operationId: searchbyidDashboard
    58        parameters:
    59          - $ref: '#/components/parameters/Dashboardquery'
    60        responses:
    61          default:
    62            description: xxx
    63            content:
    64              application/json:
    65                schema:
    66                  $ref: '#/components/schemas/Dashboard'
    67    /dashboard/create:
    68      post:
    69        tags:
    70          - dashboard
    71        summary: create Dashboard
    72        description: hoge
    73        operationId: createDashboard
    74        requestBody:
    75          description: hoge
    76          required: true
    77          content:
    78            application/json:
    79              schema:
    80                $ref: '#/components/schemas/Dashboard'
    81        responses:
    82          default:
    83            description: create
    84            content:
    85              application/json:
    86                schema:
    87                  $ref: '#/components/schemas/Dashboard'
    88    /dashboard/delete:
    89      post:
    90        tags:
    91          - dashboard
    92        summary: delete Dashboard
    93        description: hoge
    94        operationId: deleteDashboard
    95        parameters:
    96          - $ref: '#/components/parameters/Dashboard2'
    97        responses:
    98          default:
    99            description: delete
   100            content:
   101              application/json:
   102                schema:
   103                  $ref: '#/components/schemas/ApiResponse'
   104  components:
   105    schemas:
   106      ApiResponse:
   107        type: object
   108        properties:
   109          code:
   110            type: integer
   111            format: int32
   112          type:
   113            type: string
   114          message:
   115            type: string
   116      Dashboard:
   117        type: object
   118        properties:
   119          id: 
   120            type: integer
   121            format: int64  
   122            example: 9999
   123          account_id: 
   124            type: string
   125            example: hoge
   126          sub_category_code: 
   127            type: string
   128            example: hoge
   129          team_code: 
   130            type: string
   131            example: hoge
   132          tag_code: 
   133            type: string
   134            example: hoge
   135          dashboard_title: 
   136            type: string
   137            example: hoge
   138          tab_key: 
   139            type: string
   140            example: hoge
   141          display_order: 
   142            type: integer
   143            format: int64  
   144            example: 9999
   145          width: 
   146            type: integer
   147            format: int64  
   148            example: 9999
   149          term_key: 
   150            type: string
   151            example: hoge
   152          chart_link_id: 
   153            type: string
   154            example: hoge
   155          create_datetime: 
   156            type: string
   157            format: date-time
   158            example: 2020-01-31T23:59:59+09:00
   159          create_username: 
   160            type: string
   161            example: hoge
   162          update_datetime: 
   163            type: string
   164            format: date-time
   165            example: 2020-01-31T23:59:59+09:00
   166          update_username: 
   167            type: string
   168            example: hoge
   169          is_deleted: 
   170            type: boolean
   171            format: int64  
   172            example: 9999
   173          deleted_datetime: 
   174            type: string
   175            format: date-time
   176            example: 2020-01-31T23:59:59+09:00
   177          deleted_username: 
   178            type: string
   179            example: hoge
   180    parameters:
   181      Dashboard2:
   182        name: id
   183        in: query
   184        description: kkkkk
   185        required: true
   186        schema:
   187          type: integer
   188          format: int64
   189      Dashboardquery:
   190        name: id
   191        in: path
   192        description: kkkkk
   193        required: true
   194        schema:
   195          type: integer
   196          format: int64
   197      Dashboard:
   198        name: id
   199        in: query
   200        description: xxxx ID
   201        required: true
   202        schema:
   203          type: integer
   204          format: int64
   205          example: 9999
 fastapi_crud]# 

日本の歪んだ解雇法制を緩和した方がどれだけいいか

雇用の流動性がないのが日本衰退の大きな理由の1つだよ

 

50以上とかもう1回現場でろよと思うよな

知識古いくせに 判断力があてにならんのよ

 

若手の育成に国絡みで力を入れるしかないんじゃないかな

直契約なので、メンバークラスなら月収60 70万円。

 

えぇ、IT系で働くことが決まってるのだが、、、かなしい

話してたらコミュニケーション能力〇と評価されるから

 

 

日本の歪んだ解雇法制を緩和した方がどれだけいいか。

トヨタなど労働組合と良い関係の会社は別ですけどね。

「最後に一言ずつ」って土居さん飛ばされちゃうんだ。

 

金泉氏はまとめが上手で聞き上手でとても良いです。

 

日本以外はショック後も投資したのが大きな違い・・


だから生産性低いし会社が成長しないんでしょうねぇ

 

 

 

ロボット化が進むのは、社畜ロードから脱出できる

 

IT開発の現場で、数年たったら再度マネージャから開発に戻ればいいのだがそれやらないもんね

プロジェクト計画は、現場側が必要なアクションの特定と必要なリソースを明らかにするために作られるが、最近は時代の流れが速くて数年でその手法が陳腐化するよね

 

結果、すぐに現場とかけ離れたマネジメントしかできない、マネージャが量産できる仕組み

また、マネージャから開発に戻ればいいのだがそれやらないもんね

 

 

西洋社会には罰則金がコンプライアンスのための費用より低い場合には、法を破って良いどころか、むしろCEOは法を破るべきフィデューシャリー・デューティーを負うと考える人々がいるんです
エンジニアリング文化を作るためにやってきたことと直面した問題。「自分が知っていること以上のことを、組織では実現できない」という原則

実力のある人に任せればそりゃ少人数でもうまくいくけど、能力ある人なんてそんな数いないのだから、普通の実力の人だけでも普通に回せるように、ってのがソフトウェア工学だと思うんだよね
まぁ実質実効為替レートが約50年ぶりの低水準(1972年並)って事なのでそうなんやろうな/目先の利益を追い求めた結果なんでしょうけど/未だに悪夢のなんとかを本気で信じてる人なんているのか?

『どうしてもITアレルギーな人はアナログな会社に移るほうが、結果的にお互いハッピーだと思う』会社が求めるスキルとマッチしない人材は、レベルのズレ方が上でも下でも互いに不幸になるよね… 考え方 work business
「「日本では」法律を破ってはいけない」「これは日本社会には、ちょっとない発想です。…こうした発想でコンプライアンスを軽視すれば一斉に糾弾される」

失敗したんだっけ、始まってもないやん。既存のJapanTaxi、DiDiとか配車アプリ使えなさすぎてイライラする。既存のタクシー権益を守りすぎる国土交通省は考えを改めてほしい。せめて過疎地域からでもいいので、始めて。
前々から感じてるんだが、プログラミングは研修か初年度経験くらいでいきなりマネージャーやらせるっていう土建屋の現場監督みたいなやり方で優秀な人材が育ってるのか、よいプロダクトが作れてるのか甚だ疑問 労働 企業 格差社会

"さて、それから3年がたった。人間というのはいい環境になれると対して喜びを感じなくなる、というのはそうだと思う。" / 当たり前の水準を上げていく人が増えれば世の中はもっとよくなっていく

 

私の中では法人のえらい人が通勤や打ち合わせの移動に使っているイメージがある 秒速で100万稼ぐけど週15時間しか働きたくない、みたいな人にとっては運転手雇うより安い(秒速の金額はてきとうです)

 

 

プロジェクトの計画は、現場側が必要なアクションの特定と必要なリソースを明らかにするために作られるものだが、これを現場から離れている経営管理層がコストやリスクの観点から管理しすぎると、管理過剰となる プロジェクト管理
"自分たちで開発をすることが重要です" COCOAの多重下請けとかオリンピックアプリ予算高騰とか、そんな日本の政府主導プロジェクトのような問題は起こらないんだろうな。