Skip to content

Instantly share code, notes, and snippets.

@writer0713
writer0713 / nomad_assignment6.py
Created September 6, 2025 08:34
nomad_assignment6.py
# BLUEPRINT | DONT EDIT
import requests
movie_ids = [238, 680, 550, 185, 641, 515042, 152532, 120467, 872585, 906126, 840430]
# /BLUEPRINT
# πŸ‘‡πŸ» YOUR CODE πŸ‘‡πŸ»:
for movie_id in movie_ids:
@writer0713
writer0713 / nomad_assignment4.py
Created September 4, 2025 01:04
nomad_assignment4.py
playing = True
while(playing):
a = int(input("Choose a number:\n"))
b = int(input("Choose another one:\n"))
operation = input(
"Choose an operation:\n Options are: + , - , * or /.\n Write 'exit' to finish.\n"
)
@writer0713
writer0713 / nomad_assignment3.py
Created September 3, 2025 00:39
nomadcoders python challenge - Assignment 3
# πŸ‘‡πŸ» YOUR CODE πŸ‘‡πŸ»:
# /YOUR CODE
def get_yearly_revenue(monthly_revenue):
"""
μ›”κ°„λ§€μΆœμ„ 인자둜 λ°›μ•„μ„œ μ—°κ°„ λ§€μΆœμ„ λ¦¬ν„΄ν•˜λŠ” ν•¨μˆ˜
"""
return monthly_revenue * 12
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
package hello;
import java.util.concurrent.atomic.AtomicLong;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class GreetingController {