Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. # My resume 8-)
  2. 1. Dmitriy Verkhovtsov
  3. 2. email - iwillbeback96@mail.ru or telegram - @ReactIT
  4. 3. I am on a mission to be a great programmer. I think when you road that sentence you began to wonder: "Why?","Why do you have such a goal?". During my admission exams to the University, the answer seemed very simple - I did not know which faculty to choose. At that time I had no idea about programming.And I chose another area.And after 5 years destiny brought me together with blockhain and then with programming.This year I was in Belarus for studying React. It was a brilliant experience for me.This summer I took part a Hackathon lasted an entire week, and honestly it was excting event.Because it was international Hackathon at that time we spoke only English and got first hand experience in React.That is a crucial value of this event.
  5. 4. My skills in programming language is JavaScript and framework is React.
  6. 5.
  7.  
  8. ```
  9. import React from 'react';
  10. import styled from 'styled-components';
  11. import { makeStyles } from '@material-ui/core/styles';
  12. import SpeedDial from '@material-ui/lab/SpeedDial';
  13. import SpeedDialIcon from '@material-ui/lab/SpeedDialIcon';
  14. import SpeedDialAction from '@material-ui/lab/SpeedDialAction';
  15. import FileCopyIcon from '@material-ui/icons/FileCopyOutlined';
  16. import SaveIcon from '@material-ui/icons/Save';
  17. import PrintIcon from '@material-ui/icons/Print';
  18.  
  19. const ActionButtonStyled = styled(SpeedDial)`
  20. .MuiFab-root {
  21. background-color: white;
  22. &:hover {
  23. background-color: white;
  24. }
  25. }
  26. .MuiFab-label {
  27. color: black;
  28. }
  29. `;
  30.  
  31. const useStyles = makeStyles(theme => ({
  32. speedDial: {
  33. position: 'absolute',
  34. bottom: '50%',
  35. right: theme.spacing(1)
  36. }
  37. }));
  38.  
  39. const actions = [
  40. { icon: <FileCopyIcon />, name: 'Copy' },
  41. { icon: <SaveIcon />, name: 'Save' },
  42. { icon: <PrintIcon />, name: 'Print' }
  43. ];
  44.  
  45. export const ActionButton = () => {
  46. const classes = useStyles();
  47. const [isOpen, setIsOpen] = React.useState(false);
  48.  
  49. const handleOpen = () => {
  50. setIsOpen(true);
  51. };
  52.  
  53. const handleClose = () => {
  54. setIsOpen(false);
  55. };
  56.  
  57. return (
  58. <ActionButtonStyled
  59. ariaLabel='SpeedDial tooltip example'
  60. className={classes.speedDial}
  61. icon={<SpeedDialIcon />}
  62. onBlur={handleClose}
  63. onClose={handleClose}
  64. onFocus={handleOpen}
  65. onMouseEnter={handleOpen}
  66. onMouseLeave={handleClose}
  67. open={isOpen}
  68. >
  69. {actions.map(action => (
  70. <SpeedDialAction
  71. key={action.name}
  72. icon={action.icon}
  73. tooltipTitle={action.name}
  74. />
  75. ))}
  76. </ActionButtonStyled>
  77. );
  78. };
  79. ```
  80.  
  81. 6. You can check my GitHub - https://github.com/dmitriy365377/socialNetwork
  82. 7. I had courses in Belarus name of this course - it-kamasutra.
  83. 8. I was working in USA,Florida.I participated in Work and Travel program.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement