This file contains hidden or 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
user@localhost:~$ telnet localhost 25 | |
Trying ::1... | |
Trying 127.0.0.1... | |
Connected to localhost. | |
Escape character is '^]'. | |
220 localhost ESMTP Postfix (Ubuntu) | |
mail from:root@localhost | |
250 2.1.0 Ok | |
rcpt to:harshad@localhost | |
250 2.1.5 Ok |
This file contains hidden or 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
/* this code is meant to run on MS DOS machines and uses bios bit setting to turn CAPS LOCK on or off */ | |
/* it contains far keyword, which is not used in gcc */ | |
#include <stdio.h> | |
void main() | |
{ | |
char *kb; | |
kb = (char *)0x417; | |
*kb = 64; |
This file contains hidden or 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
Full script used in blog post at http://h6o6.com/2013/03/using-python-and-the-nltk-to-find-haikus-in-the-public-twitter-stream | |
4-clause license (original "BSD License") | |
Copyright (c) 2013, h6o6 | |
All rights reserved. |
This file contains hidden or 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
a=open("text1.txt","r") | |
b=[] | |
for i in a.readlines(): | |
b.append(i) | |
if b.__contains__("hello"): | |
print "Yes" | |
else: | |
print "No" |
This file contains hidden or 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
class A: | |
def __init__(self,a): | |
self.a=a | |
print self.a | |
def show(self): | |
print self.a | |
a=A(1) | |
a.show() |
This file contains hidden or 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=harshad joshi */ | |
package com.harshad.cellinfo2; | |
import android.os.Bundle; | |
import android.app.Activity; | |
import android.view.Menu; | |
This file contains hidden or 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
[ 265.138732] ieee80211 phy0: >brcms_c_prec_enq_head: No where to go, prec == 4 | |
[ 265.138755] ieee80211 phy0: >brcms_c_prec_enq_head: No where to go, prec == 4 | |
[ 265.138778] ieee80211 phy0: >brcms_c_prec_enq_head: No where to go, prec == 4 | |
[ 265.138801] ieee80211 phy0: >brcms_c_prec_enq_head: No where to go, prec == 4 | |
[ 265.138824] ieee80211 phy0: >brcms_c_prec_enq_head: No where to go, prec == 4 | |
[ 265.138846] ieee80211 phy0: >brcms_c_prec_enq_head: No where to go, prec == 4 | |
[ 265.138868] ieee80211 phy0: >brcms_c_prec_enq_head: No where to go, prec == 4 | |
[ 265.138891] ieee80211 phy0: >brcms_c_prec_enq_head: No where to go, prec == 4 | |
[ 265.138913] ieee80211 phy0: >brcms_c_prec_enq_head: No where to go, prec == 4 | |
[ 265.138935] ieee80211 phy0: >brcms_c_prec_enq_head: No where to go, prec == 4 |
This file contains hidden or 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
/* | |
LinConnect: Mirror Android notifications on Linux Desktop | |
Copyright (C) 2013 Will Hauck | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or | |
(at your option) any later version. |
This file contains hidden or 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": "5e47003a.bd96b", | |
"type": "tab", | |
"label": "Flow 2" | |
}, | |
{ | |
"id": "265fd756.cc0488", | |
"type": "tab", | |
"label": "Flow 1" |
This file contains hidden or 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
ets Jun 8 2016 00:22:57 | |
rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT) | |
ets Jun 8 2016 00:22:57 | |
rst:0x10 (RTCWDT_RTC_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT) | |
configsip: 0, SPIWP:0xee | |
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00 | |
mode:DIO, clock div:2 | |
load:0x3fff0030,len:4 |