- Atom
- Sublim Text
- Xcode
- Discord
- Slack
#Best CSS Framework
| const Joi = require('@hapi/joi'); | |
| const express = require('express'); | |
| const app = express(); | |
| app.use(express.json()) | |
| const people = [ | |
| {id: 1, name:"Jack",}, | |
| {id: 2, name:"Ben",}, | |
| {id: 3, name:"Well",}, | |
| {id: 4, name: "Niggan",}, |
| import React from "react"; | |
| import { | |
| RecoilRoot, | |
| atom, | |
| useRecoilState, | |
| useRecoilValue, | |
| selector, | |
| } from "recoil"; | |
| const numState = atom({ |
| import Cocoa | |
| let numbers = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15] | |
| var oneThousandNumbers = [Int]() | |
| for i in 1...1000{ | |
| oneThousandNumbers.append(i) | |
| } | |
| for num in oneThousandNumbers { |
| import SwiftUI | |
| import MapKit | |
| import Foundation | |
| // MARK: - Welcome | |
| struct DataSet: Codable { | |
| let nhits: Int | |
| let parameters: Parameters | |
| let records: [Record] | |
| } |
| import SwiftUI | |
| import MapKit | |
| import Foundation | |
| // MARK: - Nationality | |
| struct Nationality: Codable { | |
| let country: [Country] | |
| let name: String | |
| } |