Skip to content

Instantly share code, notes, and snippets.

View fakabbir's full-sized avatar
🎯
Focusing

Fakabbir Amin fakabbir

🎯
Focusing
View GitHub Profile
We can't make this file beautiful and searchable because it's too large.
NEWSID,SCRIP_CD,XML_NAME,NEWSSUB,DT_TM,NEWS_DT,CRITICALNEWS,ANNOUNCEMENT_TYPE,QUARTER_ID,FILESTATUS,ATTACHMENTNAME,MORE,HEADLINE,CATEGORYNAME,OLD,RN,PDFFLAG,NSURL,SLONGNAME,AGENDA_ID,TotalPageCnt,News_submission_dt,DissemDT,TimeDiff,Fld_Attachsize,SUBCATNAME,AUDIO_VIDEO_FILE,SOURCE
1b4850fe-5acf-45bf-835b-76ec752ce219,534976,ANN_534976_1B4850FE-5ACF-45BF-835B-76EC752CE219,V-Mart Retail Ltd - 534976 - Announcement under Regulation 30 (LODR)-Award_of_Order_Receipt_of_Order,2025-01-07T19:12:09.44,2025-01-07T19:12:09.44,1,A,,N ,c2ba0454-12cb-48c7-8ed1-ca32030519a0.pdf,,"Details of the order received by the Company under the Minimum Wages Act, 1948, and Industrial Dispute Act, 1947.",Company Update,1,1,1,https://www.bseindia.com/stock-share-price/v-mart-retail-ltd/vmart/534976/,V-Mart Retail Ltd,8,1,2025-01-07T19:12:09,2025-01-07T19:12:09.44,00:00:00,340722,Award of Order / Receipt of Order,,BSE_ANNOUNCEMENTS
a1341013-6086-497a-ab6e-a0001473d37c,500084,ANN_500084_A1341013-6086-497A-AB6E-A0001473D37C,CESC Ltd -
We can't make this file beautiful and searchable because it's too large.
instrument_key,exchange_token,tradingsymbol,name,last_price,expiry,strike,tick_size,lot_size,instrument_type,option_type,exchange,upstock-sector
BSE_EQ|INE092E01011,521054,KAKTEX,KAKATIYA TEXTILES LTD.,24.27,,,0.01,1.0,EQUITY,,BSE_EQ,textile-stocks
BSE_EQ|INE376L01013,514028,RAJKSYN,RAJKAMAL SYNTHETICS LTD.,36.46,,,0.01,1.0,EQUITY,,BSE_EQ,trading-stocks
BSE_EQ|INE310A01015,523385,NILKAMAL,NILKAMAL LTD.,1745.0,,,0.05,1.0,EQUITY,,BSE_EQ,unknown
BSE_EQ|INE053F08270,974629,775IRFC33,IRFC-7.75%-15-4-33-PVT,0.0,,,0.01,1.0,EQUITY,,BSE_EQ,unknown
BSE_EQ|INE040A08500,953957,835HDFCB26,HDFCB-8.35%-13-5-26-PVT,0.0,,,0.01,1.0,EQUITY,,BSE_EQ,unknown
BSE_EQ|INE514Q07296,975170,1350PFSP27,PFSPL-13.50%-30-10-27-PVT,0.0,,,0.01,1.0,EQUITY,,BSE_EQ,unknown
BSE_EQ|INE966H01019,532794,ZEEMEDIA,ZEE MEDIA CORPORATION LIMITED,13.92,,,0.01,1.0,EQUITY,,BSE_EQ,unknown
BSE_EQ|INE053F08288,974678,751IRFC26,IRFC-7.51%-15-4-26-PVT,0.0,,,0.01,1.0,EQUITY,,BSE_EQ,unknown
BSE_EQ|INE124B01018,523100,COSMOFE,COSMO FERRITES LTD.,254.2,,,0.05,1.0,E
apiVersion: apps/v1
kind: Deployment
metadata:
name: welcome-message-deployment
labels:
app: welcome-message
spec:
replicas: 3
selector:
matchLabels:
option request, pre flight
time-to-live
cross origin
get pr post kia
changing get to post
chrome vs postman
types of storage
jar war
tomcat , wildfly
authorization vs authentication
@fakabbir
fakabbir / docker-compose.yml
Created August 19, 2023 10:57
Elastic Search Quick Docker Compose File
version: "3"
services:
elasticsearch: # Elasticsearch Instance
container_name: gs-search
image: elasticsearch:7.9.1
volumes: # Persist ES data in seperate "esdata" volume
- esdata:/usr/share/elasticsearch/data
environment:
- bootstrap.memory_lock=true
chardet>=3.0.4
click>=6.7
numpy
opencv-python-headless
openpyxl==2.5.8
pandas
pdfminer.six>=20200726
PyPDF2>=1.26.0
tabulate>=0.8.9
matplotlib>=2.2.3
stages: # List of stages for jobs, and their order of execution
- build
build-job: # This job runs in the build stage, which runs first.
stage: build
script:
- echo "Compiling the code..."
- echo "Compile complete."
- ls
- cp ./README.md ../
<div class="flex flex-col">
<div class="bg-blue-500">
<div class="pt-2 pb-2">
<div class="flex flex-row justify-center space-x-5 w-10/12 mx-auto">
<div class="flex flex-col">
<div class="flex flex-col">
<img class="w-24" src="https://static-assets-web.flixcart.com/www/linchpin/fk-cp-zion/img/flipkart-plus_8d85f4.png" />
<div class="flex flex-row">
<p class="font-semibold italic text-white text-xs">Explore</p>
<p class="font-bold italic text-yellow-400 text-xs mx-1.5">Plus</p>
@fakabbir
fakabbir / index.html
Created April 29, 2021 08:21
render mock ui with tailwind
<div class="flex flex-row">
<div class="bg-light-blue-900 h-screen flex flex-col justify-between">
<div class="border-b border-gray-400">
<div class="flex flex-row space-x-3 m-4 pr-14">
<img class="w-7" src="https://dashboard.render.com/static/media/logo-redesign-02-icon.42687791.svg" />
<p class="text-white text-3xl font-norma">render</p>
</div>
</div>
<div class="flex flex-col space-y-3 ml-4 flex-auto mt-8">
@fakabbir
fakabbir / dict_to_dynamodb_item.py
Created April 26, 2020 12:23 — forked from JamieCressey/dict_to_dynamodb_item.py
Coverts a standard Python dictionary to a Boto3 DynamoDB item
def dict_to_item(raw):
if type(raw) is dict:
resp = {}
for k,v in raw.iteritems():
if type(v) is str:
resp[k] = {
'S': v
}
elif type(v) is int:
resp[k] = {