Skip to content

Instantly share code, notes, and snippets.

View Rosaniline's full-sized avatar

Rosaniline Rosaniline

  • shopee
  • Singapore
View GitHub Profile
Item Remarks
Duffel bag (80~120L) Provided by the travel agency
Day pack (20~40L)
Hardshell jacket
Waterproof trousers
Down jacket It varies depending on your tolerance for cold. Personally, the Montbell Permafrost Light Down Parka suits me perfectly.
Fleece jacket
2 Long sleeve tops “merino” (1 thin, 1 thick)
2 T-shirts “merino”
Date Trek Accommodation Attached Bathroom Cell phone signal Wifi Bottle Water (1L) (NPR) Boiled Water (1L) (NPR)
Day 1 Lukla (2,860 m) to Phakding (2,610 m) Hotel Pine Forest Y Y 150
Day 2 Phakding (2,610 m) to Namche Bazaar (3,440 m) Hotel Camp de Base Y Y 150
Day 3 (Acclimatization) Namche Bazaar (3,440 m) to Everest View Hotel (3,880 m) Hotel Camp de Base Y Y 150
Day 4 Namche Bazaar (3,440 m) to Tengboche (3,867 m) Tashi Delek Lodge & Restaurant N Y 250 400
Day 5 Tengboche (3,867 m) to Dingboche (4,410 m) Hotel Good Luck Y N 800/24hr
1300/48hr
250 500
Day 6 (Acclimatization) Dingboche (4,410 m) to Narkang Hill [Ho
@Rosaniline
Rosaniline / Dockerfile
Created August 11, 2018 07:43
Jenkins with docker installed
FROM jenkins/jenkins:lts
USER root
RUN apt-get update
RUN apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
# -*- coding: utf-8 -*-
def reverseString(s):
"""
Q1. Write a function that takes a string as input and returns the string reversed.
:type s: String
:rtype: String
"""
// Explicitly render
<TableHeaderColumn dataField="status" dataSort filter={{type: 'TextFilter'}}> status </TableHeaderColumn>
//
// Dynamically render
{
colDef.map(col => {
return <TableHeaderColumn
key={col.name}
@Rosaniline
Rosaniline / gist:fdd8dfdd259c512551beb745e6d3b61c
Last active August 25, 2016 09:26
MichaelGodHelpPlease
Child Component
onChangeHandler (val) {
// Is there anyway that I can share the handler among different Select while keeping in mind that which Select(corresponding to entry) is called ?
this.props.onChange(entry, val)
}
render () {
<Select name="select1" value={this.props.data["select1"]} options=this.props.options onChange={this.onChangeHandler} />
<Select name="select2" value={this.props.data["select2"]} options=this.props.options onChange={this.onChangeHandler} />
<Select name="select3" value={this.props.data["select3"]} options=this.props.options onChange={this.onChangeHandler} />
<Select name="select4" value={this.props.data["select4"]} options=this.props.options onChange={this.onChangeHandler} />