Skip to content

Instantly share code, notes, and snippets.

View priyankamk's full-sized avatar
🎯
Focusing

Priya priyankamk

🎯
Focusing
  • Arkade
  • Melbourne
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<h1>Hey There!</h1>
<p>This is our interactive code editor</p>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<h1>Hey There!</h1>
<p>This is our interactive code editor</p>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<h1>Hey There!</h1>
<p>This is our interactive code editor</p>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<h1>Hey There!</h1>
<p>This is our interactive code editor</p>

Priya

I'm Priya from India(Chennai), A Budding Developer who thrives to learn new technology in a fast-paced environment.

I'm a experienced Recruiter who have managed all the aspects of Hr functions from administration,training and recruitment. As a recuriter, matching good candidates to potential employers have a specific set of requirement and it is hard to get a right employer in a limited time. So, I used various protals like seek to filter candidates but it limited my workflow and did not fix my manual work aka, keeping track of candidates already contacted etc. This led me to explore building simple application that would automate this for me. So, i started playing around with basic programming modules like HTML,CSS and working through JavaScript. This act of bringing things to life in browser got my creative and passionate artist.

Make Error to Progress

@priyankamk
priyankamk / giphy.rb
Last active March 31, 2019 01:18
sample giphy client
require 'httparty'
module Api
class Giphy
def self.fetch(query:)
response = HTTParty.get(
"http://giphyapi.com?q=#{query}&api_key=#{ENV['GIPHY_API_KEY']}&limit=15&offset=2"
)
return response['data'].map do |gif|
{
@priyankamk
priyankamk / rails_env.md
Created March 31, 2019 01:08
rails_console_env_example.md
~> rails c
Running via Spring preloader in process 54134
Loading development environment (Rails 5.2.2.1)

irb(main):001:0> ENV
=> { RAILS_ENV: "development }
@priyankamk
priyankamk / .env
Created March 31, 2019 01:13
.env example
GIPHY_API_KEY=some-awesome-key
@priyankamk
priyankamk / config.yml
Last active April 22, 2019 01:59
.circle/config.yml
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/ruby:2.5.0-node-browsers
environment:
RAILS_ENV: test
PGHOST: 127.0.0.1
PGUSER: app-user
@priyankamk
priyankamk / command_line_and_how_to_Read_other_txt_Folder.md
Last active May 3, 2019 01:00
ARGV - ruby command line arguments

Ruby command line arguments By Alvin Alexander. Last updated: June 3 2016 Ruby FAQ: How do I read command line arguments in a Ruby script (Ruby command line args)?

To read command line args in a Ruby script, use the special Ruby array ARGV to get the information you need. Here are a few examples.

  1. Getting the number of command line args To get the number of command line arguments passed in to your Ruby script, check ARGV.length, like this:

quit unless our script gets two command line arguments