This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [{"details":[{"key":"City","value":"Memphis, Tennessee"},{"key":"Slogan","value":"New Voice of Memphis"},{"key":"Frequency","value":"990"},{"key":"Format","value":", Talk"},{"key":"Class","value":"B"}, | |
| {"key":"Coordinates","value":"35°8′4.00″N 90°5′38.00″W"},{"key":"Website","value":"kwam990.com"},{"key":"Latitude","value":"35.134444444444"},{"key":"Longitude","value":"90.093888888889"}],"title":"KWAM","url":"https:\/\/en.wikipedia.org\/wiki\/KWAM","tags":["News\/Talk"],"formats":{}},{"details":[{"key":"City","value":"Union City, Tennessee"},{"key":"Frequency","value":"104.9"},{"key":"Format","value":", Country"},{"key":"Class","value":"A"},{"key":"Coordinates","value":"36°28′25.00″N 88°56′41.00″W"},{"key":"Website","value":"wcmt.com"},{"key":"Latitude","value":"36.473611111111"},{"key":"Longitude","value":"88.944722222222"}],"title":"KYTN","url":"https:\/\/en.wikipedia.org\/wiki\/KYTN","tags":["Country"],"formats":{}},{"details":[{"key":"City","value":"Crossville, Tennessee"},{"key":"Frequency","value":"1330 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let permute = function(nums) { | |
| let perms = {} | |
| p(nums, 0, nums.length - 1, perms) | |
| return Object.values(perms) | |
| }; | |
| let p = function(nums, start, end, perms) { | |
| perms[JSON.stringify(nums)] = nums |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Comment | Designator | Footprint | LCSC Part # | |
|---|---|---|---|---|
| 22pF | C1,C2 | C_0805_HandSoldering | C1804 | |
| 10uF | C3 | C_0805_HandSoldering | C15850 | |
| 1uF (±10%) | C4 | C_0805_HandSoldering | C28323 | |
| 1uF | C5 | C_0805_HandSoldering | C28323 | |
| 0.1uF | C6,C8,C7,C9 | C_0805_HandSoldering | C49678 | |
| D | D2,D6,D1,D7,D3,D4,D5,D8,D9,D10,D11,D12,D13,D14,D15,D16,D17,D18,D19,D20,D21,D22,D23,D24,D25,D26,D27,D28,D29,D30,D31,D32,D33,D34,D35,D36,D37,D38,D39,D40,D41,D42,D43,D44,D45,D46,D47,D48,D49,D50,D51,D52,D53,D54,D55,D56,D57,D58,D59,D60,D61,D62,D63,D64,D65,D66,D67 | D_SOD-123 | C81598 | |
| 22 | R1,R2 | R_0805_HandSoldering | C17561 | |
| 10K | R3,R4 | R_0805_HandSoldering | C17414 | |
| USBLC6-2SC6 | U1 | SOT-23-6_Handsoldering | C7519 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fragment Messages_query on Query | |
| @refetchable(queryName: "MessagesListRefetchQuery") | |
| @argumentDefinitions(count: { type: "Int", defaultValue: 30 }, cursor: { type: "String" }) { | |
| messages(first: $count, after: $cursor) @connection(key: "Messages_messages") { | |
| edges { | |
| cursor | |
| node { | |
| id | |
| user { | |
| id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export function getAxiosInstance(token: string) { | |
| const api = axios.create({ | |
| baseURL, | |
| }) | |
| api.interceptors.request.use( | |
| (request) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Prisma, PrismaClient } from '@prisma/client' | |
| import { Project, ScriptTarget, StructureKind } from 'ts-morph' | |
| import { camelize } from './camelize' | |
| import { getDMMF } from '@prisma/internals' | |
| import path from 'path' | |
| const project = new Project({ | |
| compilerOptions: { | |
| outDir: path.join(__dirname, '../dist'), | |
| target: ScriptTarget.Latest, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server { | |
| server_name foundry.henrysipp.dev; | |
| location / { | |
| proxy_pass http://FOUNDRY_HOST_COMPUTER_IP_ADDRESS; | |
| # include proxy_params; | |
| proxy_http_version 1.1; | |
| proxy_set_header Upgrade $http_upgrade; | |
| proxy_set_header Connection "upgrade"; |