Skip to content

Instantly share code, notes, and snippets.

View sudiptamondal's full-sized avatar
🏠
Working from home

Sudipta Mondal sudiptamondal

🏠
Working from home
  • New Delhi, India
View GitHub Profile
@sudiptamondal
sudiptamondal / Hoppr_interview_question.rb
Last active December 16, 2015 08:59
Scope: Many programming languages implement scope for variables – and they are context sensitive. For example a global scope variable will be over-ridden using local variable definition. You need to implement simple interpreter which tells us current value of a variable, if its not defined then value should be zero, Input will start with ‘[‘ and…
puts "Enter your statements separated by a carriage return, The matching braces will terminate the loop"
variables = Hash.new(Hash.new)
opening_brackets = 0
closing_brackets = 0
while true
variable = nil
level = nil
value = nil
input = gets.chomp
@sudiptamondal
sudiptamondal / install_gem.sh
Created July 8, 2013 11:16 — forked from anonymous/install_gem.sh
Complementing a tutorial video with ruby code. Part 1. Installing ruby gem
# Steps
# 1. Install the gem sinatra
gem install sinatra
# you you skip rdoc and ri using
# gem install sinatra --no-rdoc --no-ri
@sudiptamondal
sudiptamondal / hello_world.rb
Last active December 19, 2015 11:29
Complementing a tutorial video with ruby code. Part 2. Hello World
# hello_world.rb
# This will manage routes and display the content.
# I am sure, you did watch the video before checking this out.
require "sinatra"
set :bind, '127.0.0.1'
set :port, '8080'
get '/hello/:name' do
@sudiptamondal
sudiptamondal / run_server.sh
Created July 8, 2013 11:29
Complementing a tutorial video with ruby code. Part 3. Running the code
# just simply run the ruby file that we created.
ruby hello_world.rb
@sudiptamondal
sudiptamondal / install_gem.sh
Last active December 19, 2015 12:09
MongoDB Class. Install mongo driver to connect with ruby source files. Part 1 - Install gem
# Steps
# 1. Install the gem mongo
gem install mongo
gem install bson_ext
# bson_ext is for optimal performance of using mongodb.
# You can still use mongo without it.
# But then, it will throw a warning.
# you you skip rdoc and ri using
# gem install mongo --no-rdoc --no-ri
@sudiptamondal
sudiptamondal / magic_sort.rb
Last active September 14, 2015 03:12
A simple program to sort a list of number ranging 1-130 in ascending order
require 'benchmark'
def smarter_way(unsorted_array, size, sorted_array)
maggic_array = Array.new(130) {|i| i = ({ i => 0 }) }
unsorted_array.each do |num|
maggic_array.each do |hash|
if hash.keys.first == num
hash[num] = hash[num] + 1
end
end
@sudiptamondal
sudiptamondal / CreateNotif.java
Created February 10, 2020 07:17
CreateNotif.java-1
private void createNotificationChannel() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel("1000111", "cld_notif_channel", NotificationManager.IMPORTANCE_DEFAULT);
channel.setDescription("cld_notif_desc");
NotificationManager notificationManager = getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(channel);
}
}
@sudiptamondal
sudiptamondal / CreateNotif.java
Created February 10, 2020 07:23
CreateNotif.java-2
final NotificationCompat.Builder builder = new NotificationCompat.Builder(this, "1000111")
.setContentTitle("Notification Title")
.setSmallIcon(R.drawable.ic_stat_name)
.setContentText("Notification Text")
.setPriority(NotificationCompat.PRIORITY_DEFAULT);
@sudiptamondal
sudiptamondal / CreateNotif.java
Created February 10, 2020 07:24
CreateNotif.java-3
final NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);
@sudiptamondal
sudiptamondal / CreateNotif.java
Created February 10, 2020 07:24
CreateNotif.java-4
notificationManager.notify("1001", builder.build());