This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import matplotlib.pyplot as plt | |
from matplotlib.ticker import FuncFormatter | |
companies = ['Apple', 'Microsoft', 'Nvidia', 'Alphabet'] | |
rd_spending = [29900000, 27200000, 8800000, 45400000] | |
# Add bars and labels | |
bars = plt.bar(companies, rd_spending) | |
plt.bar_label(bars, labels=[f'${x/1e6:.2f}M' for x in rd_spending]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
struct ContentView: View { | |
@State private var isSheetPresented = false | |
@State private var name = "Guest" | |
var body: some View { | |
VStack { | |
Text("Hello, \(name)!") | |
.font(.title) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ContentView.swift | |
// Scratch | |
// | |
// Created by Roi Jacob on 1/26/24. | |
// | |
import SwiftUI | |
struct InputView: View { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Table creation for the 2023 Stack Overflow survey results | |
CREATE TABLE survey_results_so23 ( | |
"ResponseId" INTEGER PRIMARY KEY, | |
"Q120" VARCHAR(255), | |
"MainBranch" VARCHAR(255), | |
"Age" VARCHAR(255), | |
"Employment" VARCHAR(255), | |
"RemoteWork" VARCHAR(255), | |
"CodingActivities" VARCHAR(255), | |
"EdLevel" VARCHAR(255), |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.