membahas tentang apa saya yang dibutuhkan dalam pengembangan bot telegram
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
<div class="bg-white h-auto p-5"> | |
<!-- header --> | |
<div class="flex flex-row justify-between items-center"> | |
<div class="flex flex-row"> | |
<div class=" rounded-full bg-violet-400 h-12 w-12 mr-3"> | |
<figure> | |
<img class="h-12 w-12 object-cover rounded-full" | |
src="https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1588&q=80" | |
alt="" srcset="" /> |
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
<div class="bg-white h-auto p-5"> | |
<!-- header --> | |
<div class="flex flex-row justify-between items-center"> | |
<div class="flex flex-row"> | |
<div class=" rounded-full bg-violet-400 h-12 w-12 mr-3"> | |
<figure> | |
<img class="h-12 w-12 object-cover rounded-full" | |
src="https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1588&q=80" | |
alt="" srcset="" /> |
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
#Cloning into 'trunk'... | |
#fatal: unable to access 'https://cdn.cocoapods.org/': The requested URL returned error: 403 | |
source 'https://github.com/CocoaPods/Specs.git' |
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
#Cloning into 'trunk'... | |
#fatal: unable to access 'https://cdn.cocoapods.org/': The requested URL returned error: 403 | |
source 'https://github.com/CocoaPods/Specs.git' |
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 React from "react"; | |
import { Container, Nav, Navbar } from "react-bootstrap"; | |
import { Link, Outlet } from "react-router-dom"; | |
const Layout = ({ childen }) => { | |
return ( | |
<> | |
<Navbar bg="primary" variant="dark"> | |
<Container> | |
<Navbar.Brand href="#home">Sms Broadcast</Navbar.Brand> |
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'; | |
import 'package:wastemecha/screens/home/dashboard.dart'; | |
import 'package:wastemecha/screens/welcome/welcome_screen.dart'; | |
import 'package:wastemecha/services/shared_pref.dart'; | |
class LandingScreen extends StatefulWidget { | |
const LandingScreen({Key key}) : super(key: key); | |
@override | |
_LandingScreenState createState() => _LandingScreenState(); |
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
// const csv = require('csv-parser'); | |
// const fs = require('fs'); | |
// const results = []; | |
fs.createReadStream('../../example/message_kuisioner.csv') | |
.pipe(csv()) | |
// .on('data', (row) => { | |
// console.log(row); | |
// }) | |
.on('data', (data) => results.push(data)) |
NewerOlder