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
{ | |
"meta": { | |
"theme": "elegant" | |
}, | |
"basics": { | |
"name": "Guyllaume Cardinal", | |
"label": "Vice-President at Majisti Inc. – Team Lead - Senior Web developer and coach.", | |
"image": "https://i.imgur.com/7C7xIP1.png", | |
"email": "[email protected]", | |
"summary": "A passionate geek who spends a lot of time thinking about code, tabletop roleplaying games, dog training and running.", |
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
// Routing configuration | |
// All my imports | |
const defaultComponents = { | |
footer: FooterSection, | |
header: HeaderSection, | |
} | |
export default () => ( | |
<Route path='/'> |
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 { connect } from 'react-redux' | |
import ProfilePicture from 'components/ProfilePicture' | |
import { changeProfilePicture } from '../actions' | |
export function mapStateToProps(state:any, ownProps:any):any | |
{ | |
return { | |
profilePictureUrl: state.user.profilePictureUrl, | |
} | |
} |
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
var path = require('path'); | |
var webpack = require('webpack'); | |
var path = require('path'); | |
var ExtractTextPlugin = require("extract-text-webpack-plugin"); | |
var root = __dirname + '/../../'; | |
module.exports = { | |
module: { | |
loaders: [{ | |
test: /\.scss|\.sass|\.css$/, |
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 * as React from 'react' | |
const CSSModules = require('react-css-modules') as any | |
const styles = require("./ChatBubble.scss") as any | |
@CSSModules(styles) | |
export default class ChatBubble extends React.Component<any, any> | |
{ | |
render():JSX.Element | |
{ | |
return ( |
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 "helpers/all"; | |
@import "libraries/priority-libraries"; | |
@import "base/all"; | |
@import "libraries/all"; | |
@import "libraries-extensions/all"; | |
@import "components/all"; | |
@import "layout/all"; | |
@import "pages/all"; |
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 from 'react'; | |
import styles from './user-profile.css'; | |
export default class UserProfile extends React.Component { | |
render () { | |
return ( | |
<div className={styles.container}> | |
<div className={styles.name}>John Doe</div> | |
<div className={styles.role}>Captain</div> | |
</div> |
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
<Router history={history}> | |
<Route path='/' component={BaseLayout}> | |
<IndexRedirect to="/conversations" /> | |
<Route path="conversations" component={ConversationsView}> | |
<Route path=":currentConversationId" /> | |
</Route> | |
<Route path='*' component={ErrorView} /> | |
</Route> | |
</Router> |
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
<?php | |
// Nous vérifions que l'utilisateur est bien du bon type pour ne pas appeler getLastActivity() sur un objet autre objet User | |
if ($user instanceof User && $user->getLastActivity() < $delay) { | |
$user->setActiveNow(); | |
$this->em->flush($user); | |
} | |
// Pourquoi tu met un commentaire? Fais une méthode pour me l'expliquer. |