I hereby claim:
- I am ilhamsa1 on github.
- I am ilhamsa1 (https://keybase.io/ilhamsa1) on keybase.
- I have a public key ASDfoptGtwwFFXUeRU2hNmMh8eQF74zbCTE-MYvm2r7mbwo
To claim this, I am signing this object:
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.13; | |
| import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; | |
| import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol"; | |
| import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; | |
| import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; | |
| import "@openzeppelin/contracts/access/Ownable.sol"; |
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.4; | |
| import "@openzeppelin/[email protected]/access/AccessControl.sol"; | |
| import "@openzeppelin/contracts/utils/Counters.sol"; | |
| contract ProjectTest is AccessControl { | |
| using Counters for Counters.Counter; | |
| bytes32 public constant ADMIN_ROLE = keccak256("ADMIN"); |
| // SPDX-License-Identifier: MIT | |
| pragma solidity >= 0.4.22 <0.9.0; | |
| library console { | |
| address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67); | |
| function _sendLogPayload(bytes memory payload) private view { | |
| uint256 payloadLength = payload.length; | |
| address consoleAddress = CONSOLE_ADDRESS; | |
| assembly { |
| import { useState } from 'react' | |
| import { makeStyles } from '@material-ui/core/styles' | |
| import { Tabs, Tab, Container } from '@material-ui/core' | |
| import styles from './styles' | |
| const useStyles = makeStyles(styles) | |
| const PageBodyClientAndPartner = ({ data }) => { | |
| const [value, setValue] = useState(0) |
| import React, { useEffect, useState } from 'react' | |
| import { hot } from 'react-hot-loader/root' | |
| import { setConfig } from 'react-hot-loader' | |
| import { CssBaseline } from 'lib_site/components' | |
| import { | |
| ThemeProvider, | |
| makeStyles, | |
| } from 'lib_site/styles' | |
| import { Auth, Hub } from 'aws-amplify' |
| CREATE OR REPLACE FUNCTION lawkin.create_person_agent_func ( | |
| sub_id uuid, | |
| first_name varchar, | |
| last_name varchar, | |
| email varchar, | |
| phone_number varchar, | |
| country varchar, | |
| practice_since varchar, | |
| profesional_qualification text, | |
| agent_type_id uuid, |
I hereby claim:
To claim this, I am signing this object:
| const puppeteer = require('puppeteer'); | |
| async function wait(timeInMills) { | |
| return new Promise((resolve) => { | |
| setTimeout(() => { | |
| resolve(); | |
| }, timeInMills); | |
| }); | |
| } |
| import React from 'react' | |
| import { useQuery } from '@apollo/react-hooks' | |
| import { LoadingDots } from 'site_library/components' | |
| const Query = ({ children, query, id, where }) => { | |
| const { data, loading, error } = useQuery(query, { | |
| variables: { | |
| id, | |
| where, | |
| }, |
| $ timedatectl | |
| Local time: Fri 2020-06-19 22:54:58 WIB <--- wrong | |
| Universal time: Fri 2020-06-19 15:54:58 UTC <--- wrong | |
| RTC time: Fri 2020-06-19 16:10:32 <--- Correct time | |
| Time zone: Asia/Jakarta (WIB, +0700) | |
| NTP enabled: n/a | |
| NTP synchronized: no | |
| RTC in local TZ: yes | |
| DST active: n/a |