(): <title>
View zsh-custom.sh
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
#!/bin/bash | |
set -e | |
# install zsh shell | |
brew install zsh | |
# install ohmyzsh for customizations | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# adding the syntax highlighting | |
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting |
View file.rb
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
First command | |
adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system | |
Second command | |
adb shell chmod 777 /system/etc |
View alphas
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
S- saby | |
T - gunjan | |
A - anmol | |
Y - Puneet | |
H - priyanka (komal's frend) | |
A - gaurav | |
P - Suman | |
P- Madu | |
Y!😀- Rahul |
View DataModel
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 java.util.ArrayList; | |
import java.util.List; | |
public class DataModel { | |
private String title = "GsonDemo"; | |
private int length = 1; | |
private float temperature = 37.5f; | |
private List<String> items = new ArrayList<String>() { |
View test
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
<?xml version="1.0"?> | |
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xalan="http://xml.apache.org/xalan"> | |
<xsl:output method="xml" indent="yes" xalan:indent-amount="2" omit-xml-declaration="no"/> | |
<xsl:template match="FlatRateSMSConfiguration"> | |
<FlatRateSMSConfiguration> | |
<xsl:attribute name="xsi:noNamespaceSchemaLocation"><xsl:value-of select="@xsi:noNamespaceSchemaLocation"/></xsl:attribute> | |
<xsl:for-each select="Configuration"> | |
<xsl:element name="Configuration"> | |
<xsl:attribute name="id"><xsl:value-of select="@id"/></xsl:attribute> | |
<xsl:copy-of select="SMSServiceDays"/> |