📝 企業を調べる時のメモ書きです。
- https://www.wantedly.com/
- https://jobs.forkwell.com/
- https://jp.indeed.com/
- 日本だとあんまり使ってる企業がいないけど、グローバルよりで日本でもやってる面白いものがたまに見つかる
- などの各種求人サイトを見る
- Note: 📝
AIでWebプログラミング(30分でやれんのか検証)計画Ver4.0 | |
セールスについてはこのリンクに集約する | |
https://gist.github.com/taroyanaka/12341726df1119b4adea09623bfb9259 | |
create.xyzが2週間で$99で価格の青天井感が満載だったからchatgptで代用する(chatgptにclient/server両方のコードを読み込ませて開発する) | |
app10をテンプレとして他プロジェクトで行う | |
https://github.com/taroyanaka/app10 | |
https://chatgpt.com/share/677e253c-ac24-8012-90e1-f5a733a0a579 | |
server側のglitch.comに今後は課金する(create.xyzのサポートに「お前らのサービス値段高すぎるんじゃ」って捨て台詞を吐いてもいい) |
📝 企業を調べる時のメモ書きです。
package main | |
import ( | |
"math/rand" | |
"github.com/goml/gobrain" | |
) | |
type FizzBuzz []float64 |
import { lensProp, lensPath, view, set, over, toUpper } from "ramda" | |
const me = { | |
firstName: "Sébastien", | |
lastName: "Nicolaïdis", | |
birthDate: new Date("1979-09-13T15:00Z"), | |
age: 38, | |
hobbies: ["Rock climbing", "Horse riding", "Chess"], | |
parents: { | |
brother: { |
import { | |
nth, | |
slice, | |
contains, | |
head, | |
last, | |
tail, | |
init, | |
length, | |
take, |
import { compose, inc, prop, assoc, evolve, always, add } from "ramda" | |
const nextAge = compose( | |
inc, | |
prop("age"), | |
) | |
console.log("nextAge", nextAge({ age: 21 })) | |
const celebrateBirthday = person => assoc("age", nextAge(person), person) | |
const person = { age: 24 } | |
console.log("celebrateBirthday", celebrateBirthday(person)) |
import { assoc, assocPath, dissoc, dissocPath, omit, compose, inc, prop } from "ramda" | |
const original = { | |
a: "Bingo", | |
b: { | |
c: "Bingo", | |
d: "Bingo", | |
}, | |
} |
import { has, path, propOr, pathOr, keys, values } from "ramda" | |
const one = { | |
a: "Bingo", | |
b: { | |
c: "Bingo", | |
}, | |
} | |
const two = { |
import { cond, always, lte, gte, T, __, identity } from "ramda" | |
const water = cond([ | |
[lte(__, 0), temp => `water freezes at ${temp}°C`], | |
[gte(__, 100), temp => `water boils at ${temp}°C`], | |
[T, temp => `nothing special happens at ${temp}°C`], | |
]) | |
console.log(water(-222)) |
import { ifElse, gte, lt, __, always, identity, when, unless } from "ramda" | |
// const forever21 = age => (age >= 21 ? 21 : age) | |
// const forever21 = ifElse(gte(__, 21), always(21), identity) | |
// const forever21 = unless(lt(__, 21), always(21)) | |
const forever21 = when(gte(__, 21), always(21)) | |
console.log("forever21(24)", forever21(24)) | |
console.log("forever21(16)", forever21(16)) |