This file contains 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 express from 'express'; | |
import dotenv from 'dotenv'; | |
import { Telegraf } from 'telegraf'; | |
import { DateTime } from 'luxon'; | |
import { MongoClient } from 'mongodb'; | |
dotenv.config(); | |
// MongoDB Connection Setup | |
const URI = process.env.ATLAS_URI; |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Home</title> | |
<style> | |
.amma { | |
display: flex; | |
flex-direction: column; |
This file contains 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
// SPDX-License-Identifier: MIT | |
pragma solidity >=0.4.22 <0.9.0; | |
library console { | |
address constant CONSOLE_ADDRESS = | |
0x000000000000000000636F6e736F6c652e6c6f67; | |
function _sendLogPayloadImplementation(bytes memory payload) internal view { | |
address consoleAddress = CONSOLE_ADDRESS; | |
/// @solidity memory-safe-assembly |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>AlternateMouseScroll</key> | |
<true/> | |
<key>AppleAntiAliasingThreshold</key> | |
<integer>1</integer> | |
<key>ApplePressAndHoldEnabled</key> | |
<false/> |
This file contains 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
Hope you guys are ready to finish this small task. | |
Tasks | |
01 - Using create-react-app create react application. | |
02 - Create two fields in App.js file with following information | |
Field 01 - Name input | |
Field 02 - Age Input | |
Button 03 - Submit Button | |
03 - When user submit the Button, it should create a file inside `public/user/`, pick supported file type to read it. | |
04 - Create another Button called Read Data. When click Read Data Button it should read the file created at `task 03` |
This file contains 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, { Component } from 'react' | |
import { InputGroup, Button, FormControl, Row, Col, Modal } from 'react-bootstrap' | |
import { addDoc, collection, serverTimestamp } from "firebase/firestore"; | |
import { getAuth, onAuthStateChanged } from "firebase/auth"; | |
import { db } from '../../../../Firebase' | |
import { Cluster, clusterApiUrl, Connection, PublicKey, Keypair, LAMPORTS_PER_SOL, } from '@solana/web3.js'; |
This file contains 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
putFeaturedImagetoStorage(key){ | |
// the return value will be a Promise | |
let set = this | |
let time = Date.now(); | |
let name = '/FOLDER_NAME/' + 'featured-' + time | |
return firebase.storage().ref().child(name).put(set.state.featured_image[0]).then(function(snapshot) { | |
snapshot.ref.getDownloadURL().then(function(downloadURL) { | |
let imagePath = { |
This file contains 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, { useState, useEffect } from 'react' | |
//i'm using react-bootstrap for UI elements | |
import { Table, Button, ButtonGroup } from "react-bootstrap"; | |
//firebase config | |
import firebase from './../../Firebase' | |
export default function App() { | |
const [list, setList] = useState([]); | |
const [page, setPage] = useState(1); |
This file contains 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 data = { | |
"trackedEntityType": "SXtGAk7eCxX", | |
"orgUnit": set.props.org, | |
"attributes": [ | |
{ "attribute": "gvP9uZqEtM5", "value": set.state.name }, | |
{ "attribute": "DDleOZ1LGAq", "value": set.state.gender }, | |
{ "attribute": "Js9Vbj0osNl", "value": set.state.age }, | |
{ "attribute": "pNOTaJeFbPo", "value": set.state.address }, | |
{ "attribute": "GO2w5l0aFjl", "value": set.props.moh }, | |
{ "attribute": "ihz1qXLws99", "value": set.state.telephone }, |
This file contains 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
getPlaceInfo() { | |
//setting address_components from GooglePlacesAutocomplete Return | |
let place = this.state.address_components | |
//creating object for namespaces from GooglePlacesAutocomplete | |
var place_info = { | |
street_number: 'short_name', | |
route: 'long_name', | |
locality: 'long_name', | |
administrative_area_level_1: 'short_name', |
NewerOlder