- There is no prize money for this hackathon
- All participants are expected to work on the problem statements shared by the organizers. Other problem statements will be validated by the organizers and accordingly scheduled
- Form Group of min 1 and max 4 participants
- Each group will be working on a pre-defined Problem Statement assisted by a mentor
- Group can reach out to Mentor for any clarifications
- Participants are expected to build a workable solution for the problem statement chosen. The organizing committee will reach out later to plug any gaps/platformize the solution if needed
-- Get GCP billing from billing export | |
SELECT | |
invoice.month AS billing_month, | |
service.description AS service_name, | |
sku.description AS sku_description, | |
usage.amount AS usage_amount, | |
usage.unit AS usage_unit, | |
USAGE.amount_in_pricing_units AS amount_in_pricing_units, | |
USAGE.pricing_unit AS pricing_unit, | |
price.effective_price AS unit_price, |
name: Android CI/CD | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: |
Heartathon is a community event intended for learning, collaboration, and engagement in the Heartfulness Technology community. We value the participation of each member of the community and want everyone involved to have an enjoyable and fulfilling experience.
Accordingly, all members are expected to show respect and courtesy to others throughout the event. To make clear what is expected - all participants, mentors and volunteers in the hackathon are required to conform to the following Code of Conduct.
Be Respectful: Be kind to others. Do not insult or put down other attendees. Behave professionally. Remember that harassment and racist, sexist, or exclusionary jokes are not appropriate for this event. Harassment includes offensive verbal comments related to gender, sexual orientation, disability, physical appearance, body size, race, religion, deliberate intimidation, stalking, following, harassing photography or recording, sustained disruption of talks or other
@startuml | |
[Web Browser] --> [Service Provider] : Get /my-data | |
[Service Provider] --> [Web Browser]: Permit to authenticate with identity.com/oauth? | |
[Web Browser] --> [Identity Provider]: Can you authenticate me, use clientid, scope and give me Auth code | |
[Identity Provider] --> [Web Browser]: You are authenticated, authcode `code` | |
[Web Browser] -->[Service Provider]: Please use the code and fetch details | |
[Service Provider] -->[Identity Provider]: Use auth code, clientid, client secret and return access token | |
[Identity Provider]-->[Service Provider]: Take the access token |
import pandas as pd | |
def calculate_demographic_data(print_data=True): | |
# Read data from file | |
df = pd.read_csv("boilerplate-demographic-data-analyzer/adult.data.csv") | |
# How many of each race are represented in this dataset? This should be a Pandas series with race names as the index labels. | |
# How many people of each race are represented in this dataset? This should be a Pandas series with race names as the index labels. (race column) | |
race_count = df["race"].value_counts() |
import numpy as np | |
def calculate(lst): | |
if len(lst) != 9: | |
raise ValueError("List must contain nine numbers.") | |
arr = np.array(lst) | |
reshapedarr = arr.reshape(3, 3) |
-- STEP 2 | |
-- All these commands in sequence can be run from psql or dbeaver et al | |
-- create extension | |
create extension mysql_fdw; | |
-- create remote server | |
CREATE SERVER mysql_server FOREIGN DATA WRAPPER mysql_fdw OPTIONS (host 'localhost', port '3306'); |
#!/bin/bash | |
# Its a fork of code available at https://github.com/FabioBaroni/CVE-2024-3094-checker/blob/ebd22e6e2943cf56af7032324f17cf589aafc09b/CVE-2024-3094-checker.sh | |
# Added commands for MacOS | |
# script to detect CVE-2024-3094 | |
# original script: | |
# https://www.openwall.com/lists/oss-security/2024/03/29/4 |
import java.util.HashMap; | |
import java.util.Map; | |
import java.util.concurrent.ThreadLocalRandom; | |
public class LRU { | |
// Modulus for HashMap Keys, i.e. Range (0, 9) | |
final static int LIMIT = 10; | |
// Evict the least recently used, once the load factor is reached. |