Even if you think it might be ok, don’t!
Use pointer-events: none along with no opacity to hide elements
Rather, use choreography.
Even if you think it might be ok, don’t!
Use pointer-events: none along with no opacity to hide elements
Rather, use choreography.
| #include<stdio.h> | |
| #include<conio.h> | |
| #include<string.h> | |
| #define MAX 50 | |
| int stack[MAX]; | |
| char post[MAX]; | |
| int top = -1; | |
| void pushstack(int tmp); | |
| void evaluate(char c); |
| #include<stdio.h> | |
| #include<ctype.h> | |
| char stack[100]; | |
| int top = -1; | |
| void push(char x) | |
| { | |
| stack[++top] = x; | |
| } |
🚨 Introducing Alert Me for Google Meet
A Chrome extension that uses the live captioning from a Meet conference to detect when specific words are spoken. You can set your own alert words in the popup interface. Never get caught while slacking off again :)
You can try out the extension by downloading the latest release from GitHub and follow the instructions in README. Link: https://github.com/heytulsiprasad/alert-me-google-meet
I'd love to know your feedback on this and how it can improve. This was my first time getting hands dirty on extensions, I'd love to discuss more ideas in future.
| // ref: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining | |
| // fiddle: https://jsfiddle.net/tulsiprasad/hou3jrf8/120 | |
| const user = { | |
| firstName: "Jade", | |
| lastName: "Wilson", | |
| address: { | |
| home: { | |
| street: "2502 Bennie Dr", | |
| state: "Pearson, Georgia(GA)", |
| const origin = | |
| process.env.NODE_ENV === "production" | |
| ? process.env.FRONTEND_PROD_URL | |
| : process.env.FRONTEND_LOCAL_URL; | |
| app.use((req, res, next) => { | |
| res.header("Access-Control-Allow-Origin", origin); | |
| res.header("Access-Control-Allow-Credentials", true); | |
| if (req.method === "OPTIONS") { |
| MONGO_PROD_URI=mongodb+srv://admin:<password>@cluster.mongodb.net/<dbname>?retryWrites=true&w=majority | |
| MONGO_DEV_URI=mongodb://127.0.0.1:27017/<dbname> |
| module.exports = { | |
| theme: { | |
| extend: {}, | |
| screens: { | |
| xl: { max: "1279px" }, | |
| // => @media (max-width: 1279px) { ... } | |
| lg: { max: "1023px" }, | |
| // => @media (max-width: 1023px) { ... } |
| 1,Donnamarie,Jemison,djemison0@ifeng.com,Female | |
| 2,Herculie,Chadbourne,hchadbourne1@opensource.org,Male | |
| 3,Shepperd,Luquet,sluquet2@so-net.ne.jp,Male | |
| 4,Sinclare,Nuttey,snuttey3@tmall.com,Male | |
| 5,Deane,Crimp,dcrimp4@paginegialle.it,Female | |
| 6,Cayla,Solman,csolman5@abc.net.au,Female | |
| 7,Mose,Magnar,mmagnar6@360.cn,Male | |
| 8,Wilfrid,Robertet,wrobertet7@ted.com,Male | |
| 9,Carney,Bantick,cbantick8@techcrunch.com,Male | |
| 10,Angelique,Marklund,amarklund9@engadget.com,Female |