Skip to content

Instantly share code, notes, and snippets.

View arn-ob's full-sized avatar
☠️
__worker__

Arnob arn-ob

☠️
__worker__
View GitHub Profile
@arn-ob
arn-ob / webview_code.cs
Last active August 29, 2015 14:10
WebView code at WinPhon 8.1
/*
paste this to xaml page
<WebView x:Name="WebViewControl"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
NavigationCompleted="Browser_NavigationCompleted" />
*/
@arn-ob
arn-ob / Line_of_text.c
Created December 31, 2014 09:26
Analyzing a link of text [Not solved]
#include<stdio.h>
#include<ctype.h>
// Function prototype
void scan_line(char line[], int *pv, int *pc, int *pd, int *pw, int *po);
void main(){
char line[80];
@arn-ob
arn-ob / WordReverse.c
Created December 31, 2014 09:27
Word reverse by using recursion ....
#include<stdio.h>
void reverse ()
{
char c;
scanf("%c",&c);
if(c!='\n')
{
reverse();
@arn-ob
arn-ob / Ftbonacei.c
Created December 31, 2014 09:29
Ftbonacei Series ...
#include<stdio.h>
int fib(int n)
{
if(n==0)
return 0;
else if (n==1)
return 1;
@arn-ob
arn-ob / Ftbonacei2.c
Created December 31, 2014 09:29
Ftbonacei Series ... 0 2 2 4 6 10 16 26 42 60
#include<stdio.h>
int fib(int n)
{
if(n==0)
return 0;
else if (n==1)
return 1;
else
@arn-ob
arn-ob / Self_referential_struct.c
Last active January 10, 2021 20:47
Main drive program to process a linked list of strings
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define NULL 0
struct list_element
{
char item[40];
struct list_element *next;
@arn-ob
arn-ob / decodeapk.bat
Last active August 29, 2015 14:15
Apk decoding program :D
@echo off
color 2
rename *.apk decodeapk.apk
rem copy apk file to the file folder
xcopy decodeapk.apk files
@arn-ob
arn-ob / MainPage.cs
Created February 21, 2015 05:11
Take a image one xaml page to another xaml page at win phone 8
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using PhotoChoose.Resources;
@arn-ob
arn-ob / CreateAprocess.C++
Last active August 29, 2015 14:16
Create a Child process ....... (Run only codeBlock GNU GCC compiler )
#include<stdio.h>
#include<Windows.h>
int main(VOID){
STARTUPINFO si;
PROCESS_INFORMATION pi;
// Allocate memory
ZeroMemory(&si, sizeof(si));
@arn-ob
arn-ob / DocManager.cs
Created March 23, 2015 16:14
A Simple Document Manager . ( Need Some suggestion and Modification )
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace learnFormEvent
{