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
| . | |
| ├── cmd | |
| │ ├── cli | |
| │ └── web | |
| ├── internal | |
| │ ├── database | |
| │ ├── request | |
| │ ├── response | |
| │ ├── templatefuncs | |
| │ ├── validator |
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
| defmodule CsvReader do | |
| @demo """ | |
| 1,18,tim | |
| 2,35,jon | |
| 5,23,tom | |
| """ | |
| def load(csv, type \\ :tuple) when is_binary(csv) and type in [:tuple, :map, :keyword_list] do | |
| csv | |
| |> parse_csv(type) | |
| end |
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 SwiftUI | |
| extension Calendar { | |
| func generateDates( | |
| inside interval: DateInterval, | |
| matching components: DateComponents | |
| ) -> [Date] { | |
| var dates: [Date] = [] | |
| dates.append(interval.start) |
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 'package:flutter/material.dart'; | |
| void main() => runApp( | |
| MaterialApp(home: MyHomePage()), | |
| ); | |
| class MyHomePage extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| const curveHeight = 50.0; |
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
| Shader "Sprites/GlowLevels" | |
| { | |
| Properties | |
| { | |
| [PerRendererData] _MainTex("Sprite Texture", 2D) = "white" {} | |
| _AlphaIntensity_Fade_1("_AlphaIntensity_Fade_1", Range(0, 3)) = 1 | |
| _TintRGBA_Color_1("_TintRGBA_Color_1", COLOR) = (1,1,1,1) | |
| _AlphaIntensity_Fade_2("_AlphaIntensity_Fade_2", Range(0, 3)) = 1 | |
| _TintRGBA_Color_2("_TintRGBA_Color_2", COLOR) = (1,1,1,1) |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
| ADP Andorran Peseta | |
| AED United Arab Emirates Dirham | |
| AFA Afghan Afghani (1927-2002) | |
| AFN Afghan Afghani | |
| ALK Albanian Lek (1946-1965) | |
| ALL Albanian Lek | |
| AMD Armenian Dram | |
| ANG Netherlands Antillean Guilder | |
| AOA Angolan Kwanza | |
| AOK Angolan Kwanza (1977-1991) |