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
.mr-version-controls.mr-version-menus-container { | |
display: none !important; | |
} | |
.merge-request-tabs-container, | |
.breadcrumbs-containe, | |
.detail-page-header-body, | |
.detail-page-header, | |
.nav-sidebar, | |
.navbar-gitlab, |
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, {Suspense} from "react" | |
import {useAuth} from "./contexts/Auth" | |
import {useHistory} from "react-router-dom"; | |
const AuthenticatedApp = React.lazy(() => import('./AuthenticatedApp')) | |
const UnauthenticatedApp = React.lazy(() => import('./UnauthenticatedApp')) | |
const App = () => { | |
const {user} = useAuth(); | |
const history = useHistory(); |
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
[ | |
{"id": 0, "url":"https://i.picsum.photos/id/484/100/100.jpg?hmac=htnVVKFLLoNjX015NaqVX_ri2Od01F1pUEfxN7Vr6ls"}, | |
{"id": 1, "url":"https://i.picsum.photos/id/1039/200/200.jpg?hmac=VpGJWDIq64ZdzDD5NAREaY7l5gX14vU5NBH84b5Fj-o"}, | |
{"id": 2, "url":"https://i.picsum.photos/id/134/300/300.jpg?hmac=b3gMz-pfa737vVp8dKmvrVyW-eLFdbJ6Zju4XLUr62k"}, | |
{"id": 3, "url":"https://i.picsum.photos/id/484/100/100.jpg?hmac=htnVVKFLLoNjX015NaqVX_ri2Od01F1pUEfxN7Vr6ls"} | |
] |
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
[ | |
{ | |
"userId": 1, | |
"id": 1, | |
"title": "فیات 500 سفید", | |
"completed": false | |
}, | |
{ | |
"userId": 1, | |
"id": 2, |
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
{ | |
"id": 22, | |
"user_id": 22, | |
"original_tweet_id": 22, | |
"is_draft": false, | |
"publish_date": 1600200128, | |
"tweet_content": { | |
"text": "mention @HadiZare hastag #Forex hyperlink\nsecond line innerlink.com", | |
"entities": [ | |
{ "type": "USER", "offset": 8 , "length": 9 , "dest": "hadizare" }, |
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
/** | |
* @author Hadi Zare | |
* | |
*/ | |
import java.io.File; | |
import java.io.FileNotFoundException; | |
import java.util.Arrays; | |
import java.util.Scanner; | |
public class readFromFile { |