- Tell me about yourself.
- Tell me about the most boring job you have ever had.
- What changes would you make if you came on board?
- What would you say to your boss if he is crazy about an idea, but you think it stinks?
- Assuming that you are selected, what will be your strategy for next 60 days?
- why are not you earning more money at this stage of your career?
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
MIT License | |
Copyright (c) 2022-present, cayter | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
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
// has to be exported - triggers should be stored in the same folder as table schemas | |
export const insertTrigger = new Trigger({ | |
name: "update_product_meta_on_new_review", | |
type: "INSERT", | |
on: review, | |
when: ({ newRow }) => eq(newRow.isPrivate, false), | |
do: ({ newRow }) => | |
db | |
.insert(productMeta) | |
.values({ |
Please see the upgrade guide at buzzard.docs.feathersjs.com/migrating.html
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
#!/usr/bin/env python | |
# assuming a csv file with a name in column 0 and the image url in column 1 | |
import urllib | |
filename = "images" | |
# open file to read | |
with open("{0}.csv".format(filename), 'r') as csvfile: |