Skip to content

Instantly share code, notes, and snippets.

View robostore's full-sized avatar

robostore robostore

View GitHub Profile
@robostore
robostore / DATA...1...CopyNonNumeric.java
Created October 27, 2025 16:53
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.30+commit.73712a01.js&optimize=false&runs=200&gist=
import java.io.*;
public class CopyNonNumeric {
public static void main(String[] args) throws IOException {
if (args.length < 2) {
return;
}
try (Reader r = new FileReader(args[0]);
Writer w = new FileWriter(args[1])) {
int ch;
@robostore
robostore / jupy...1...J1.txt
Created October 27, 2025 15:47
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.30+commit.73712a01.js&optimize=false&runs=200&gist=
import java.io.*;
class slip1
{
public static void main(String[] args) {
char ch;
for(ch = 'A'; ch <= 'Z';ch++)
System.out.println("the alphabets are :"+ch);
}
}
@robostore
robostore / DATA...1...CopyNonNumeric.java
Created October 27, 2025 15:45
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.30+commit.73712a01.js&optimize=false&runs=200&gist=
import java.io.*;
public class CopyNonNumeric {
public static void main(String[] args) throws IOException {
if (args.length < 2) {
return;
}
try (Reader r = new FileReader(args[0]);
Writer w = new FileWriter(args[1])) {
int ch;
@robostore
robostore / New folder (3)....vscode...c_cpp_properties.json
Created October 16, 2024 13:59
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
{
"configurations": [
{
"name": "windows-gcc-x64",
"includePath": [
"${workspaceFolder}/**"
],
"compilerPath": "gcc",
"cStandard": "${default}",
"cppStandard": "${default}",
@robostore
robostore / New folder (3)...1...BSTREE.C
Created October 14, 2024 17:39
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
struct node
{
int data;
struct node *left;
struct node *right;
};
struct node*create(int data)
@robostore
robostore / contracts...1_Storage.sol
Created October 14, 2024 13:59
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.8.2 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
* @custom:dev-run-script ./scripts/deploy_with_ethers.ts
*/
contract Storage {
@robostore
robostore / New folder (3)...1...BSTREE.C
Created October 14, 2024 13:35
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
struct node
{
int data;
struct node *left;
struct node *right;
};
struct node*create(int data)
@robostore
robostore / New folder (3)...1...BSTREE.C
Created October 14, 2024 06:46
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
struct node
{
int data;
struct node *left;
struct node *right;
};
struct node*create(int data)
@robostore
robostore / 2...CDLL.c
Created October 14, 2024 06:39
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
struct node {
int data;
struct node *prev;
struct node *next;
};
@robostore
robostore / 1...gameapp.html
Created October 13, 2024 10:14
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
<!DOCTYPE html>
<html ng-app="gameApp">
<head>
<title>Game List</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
</head>
<body ng-controller="GameController" ng-init="init()">
<h1 ng-bind="title"></h1>
<button ng-click="showGames()">Show Games</button>
<ul>