Skip to content

Instantly share code, notes, and snippets.

View SoHotSoup's full-sized avatar

Ivan Vuković SoHotSoup

View GitHub Profile

Keybase proof

I hereby claim:

  • I am sohotsoup on github.
  • I am sohotsoup (https://keybase.io/sohotsoup) on keybase.
  • I have a public key ASBLTCUo7uj4ba7oSrfuq3E8uHMm2MOI-JUJZoqWVPz25go

To claim this, I am signing this object:

@SoHotSoup
SoHotSoup / ArticleDetailsScreen.js
Created April 19, 2017 18:06
Article Details screen with connectAnimation.js
import React from 'react';
import { connectStyle } from '@shoutem/theme';
import {
ScrollView,
Screen,
Title,
Caption,
Icon,
Image,
Tile,
@SoHotSoup
SoHotSoup / ArticleDetailsScreen.js
Created April 18, 2017 15:23
Article Details Screen with declarative animations
import React from 'react';
import { ScrollView } from 'react-native';
import { connectStyle } from '@shoutem/theme';
import {
Screen,
Title,
Caption,
Icon,
Image,
Overlay,
@SoHotSoup
SoHotSoup / ArticleDetailsScreen.js
Last active April 20, 2017 13:46
Article details screen RE2016
import React, {
View,
ScrollView,
Dimensions,
Animated,
Text,
} from 'react-native';
import { INCLUDE, connectStyle } from 'shoutem/theme';
import { RichMedia, ShoutemIconButton, GridBox, InfoFields } from 'shoutem.ui';
import * as _ from 'lodash';
@SoHotSoup
SoHotSoup / .bash_profile
Created October 31, 2014 13:38
.bash_profile for mac web developers. Prompt includes username, current folder and git branch. Start simple server from current folder with server XXXX, where XXXX port number.
startServer()
{
open http://localhost:$1 | python -m SimpleHTTPServer $1
}
alias server=startServer
# Configure colors, if available.
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
c_reset='\[\e[0m\]'