
TypeScript code snippet – How to send attachments to api?
I would use multipart method
var y = 11; var x = 4; var remainder = (y % x); console.log(remainder);
var a = [1, 1, 2]; [... new Set(a)]
find . -type d -depth 1 -exec echo git --git-dir={}/.git --work-tree=$PWD/{} status \;
<Space android:layout_width="0dp" android:layout_height="1dp" android:layout_weight="1" > </Space> <ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:adjustViewBounds="true" android:background="@null" android:gravity="center_horizontal|center_vertical" android:src="@drawable/tars_active" /> <Space android:layout_width="0dp" android:layout_height="1dp" android:layout_weight="1" > </Space> <ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:adjustViewBounds="true" android:background="@null" android:gravity="center_horizontal|center_vertical" android:src="@drawable/videos_active" /> <Space android:layout_width="0dp" android:layout_height="1dp" android:layout_weight="1" > </Space>
# Remove Even index List Items evenList = [] listNumber = int(input("Enter the Total List Items = ")) for i in range(1, listNumber + 1): listValue = int(input("Enter the %d List Item = " %i)) evenList.append(listValue) print("List Items = ", evenList) i = 0 while (i < len(evenList)): if (evenList[i] % 2 == 0): evenList.remove(evenList[i]) i = i + 1 print("List Items after removing even Items = ", evenList)
tsc --project main/tsconfig.json { "extends": "./main/tsconfig.json", "compilerOptions": { "outDir": "dist", "target": "ESNext", "module": "CommonJS", "moduleResolution": "Node", "esModuleInterop": true, "allowSyntheticDefaultImports": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "allowUmdGlobalAccess": true, "downlevelIteration": true, "declaration": true, "noEmitOnError": true, "strict": true, "noImplicitAny": false, "noImplicitThis": false, "typeRoots": ["node_modules/@types", "src/server/types"] }, "include": ["src/**/*.ts", "configs/config.ts"], "exclude": [ "node_modules", "dist", "esm", "__test__/**/*.{test.ts,spec.ts}", "coverage", ".github", "configs/config.ts" ] }
I would use multipart method
var enumNames=[]; for (var log in LogEntry) { if (isNaN(Number(log))) { enumNames.push(log); } } console.log(enumNames); //Output //["ERROR", "WARN", "INFO", "DEBUG"]
if (cum) {yes}; if (max) {cum ()};
Use the TestVisible annotation.
require('zone.js/dist/zone-node'); require('reflect-metadata'); const express = require('express'); const fs = require('fs'); const { platformServer, renderModuleFactory } = require('@angular/platform-server'); const { ngExpressEngine } = require('@nguniversal/express-engine'); // Import the AOT compiled factory for your AppServerModule. // This import will change with the hash of your built server bundle. const { AppServerModuleNgFactory } = require(`./dist-server/main.bundle`); const app = express(); const port = 8000; const baseUrl = `http://localhost:${port}`; // Set the engine app.engine('html', ngExpressEngine({ bootstrap: AppServerModuleNgFactory })); app.set('view engine', 'html'); app.set('views', 'dist'); app.use('/', express.static('dist', {index: false})); app.get('*', (req, res) => { res.render('../dist/index.html', { req, res }); }); app.listen(port, () => { console.log(`Listening at ${baseUrl}`); });
const findUser = async function (params) { try { return await User.findOne(params) } catch(err) { console.log(err) } } const userSteve = findUser({firstName: Steve})
new Chart(ctx, { type: type, data: data, options: { plugins: { labels: { // render 'label', 'value', 'percentage', 'image' or custom function, default is 'percentage' render: 'value', // precision for percentage, default is 0 precision: 0, // identifies whether or not labels of value 0 are displayed, default is false showZero: true, // font size, default is defaultFontSize fontSize: 12, // font color, can be color array for each data or function for dynamic color, default is defaultFontColor fontColor: '#fff', // font style, default is defaultFontStyle fontStyle: 'normal', // font family, default is defaultFontFamily fontFamily: "'Helvetica Neue', 'Helvetica', 'Arial', sans-serif", // draw text shadows under labels, default is false textShadow: true, // text shadow intensity, default is 6 shadowBlur: 10, // text shadow X offset, default is 3 shadowOffsetX: -5, // text shadow Y offset, default is 3 shadowOffsetY: 5, // text shadow color, default is 'rgba(0,0,0,0.3)' shadowColor: 'rgba(255,0,0,0.75)', // draw label in arc, default is false // bar chart ignores this arc: true, // position to draw label, available value is 'default', 'border' and 'outside' // bar chart ignores this // default is 'default' position: 'default', // draw label even it's overlap, default is true // bar chart ignores this overlap: true, // show the real calculated percentages from the values and don't apply the additional logic to fit the percentages to 100 in total, default is false showActualPercentages: true, // set images when `render` is 'image' images: [ { src: 'image.png', width: 16, height: 16 } ], // add padding when position is `outside` // default is 2 outsidePadding: 4, // add margin of text when position is `outside` or `border` // default is 2 textMargin: 4 } } }}); // custom render{ render: function (args) { // args will be something like: // { label: 'Label', value: 123, percentage: 50, index: 0, dataset: {...} } return '$' + args.value; // return object if it is image // return { src: 'image.png', width: 16, height: 16 }; }} // dynamic fontColor{ fontColor: function (args) { // args will be something like: // { index: 0, dataset: {...} } return myColorTransfer(args.dataset.backgroundColor[index]); }}
if (comments_open()){ comments_template(); }
go to run->run configurations->select arguments tab->enter your arguments using space or enter in between. use args[i] in the program to access it.
npx NODE_OPTIONS='--max-old-space-size=1536' next NODE_OPTIONS='-r esm' next NODE_OPTIONS='--inspect' next
<form id="form"> <input type="search" id="query" name="q" placeholder="Search..."> <button>Search</button> </form>
Ultraviolet radiation is produced by high-temperature surfaces, such as the Sun
import styled, { css } from ‘styled-components’; const baseInputStyles = css` padding: 0.5em; `; const StyledA = styled.a` ${baseInputStyles} `; const StyledButton = styled.button` ${baseInputStyles} /* make changes as needed*/ `;
$ComputerNames = Get-ADComputer -filter * -Properties dnsHostName |select -Expand dnsHostName $Code = { param($Credentials,$ComputerName) $session = New-PSSession -ComputerName $ComputerName -Credential $Credentials Invoke-Command -Session $session -ScriptBlock {w32tm /resync /nowait /rediscover} } $creds = Get-Credential domain\user $rsPool = [runspacefactory]::CreateRunspacePool(1,8) $rsPool.Open() foreach($ComputerName in $ComputerNames) { $PSinstance = [powershell]::Create().AddScript($Code).AddArgument($creds).AddArgument($ComputerName) $PSinstance.RunspacePool = $rsPool $PSinstance.BeginInvoke() }
f.write(name) f.write(" ") f.write(score)
Place the cursor next to an opening or closing brace and punch Ctrl + Shift + P to find the matching brace. If Eclipse can't find one you'll get a "No matching bracket found" message.
while True: try: age = int(input("Please enter your age: ")) except ValueError: print("Sorry, I didn't understand that.") continue if age < 0: print("Sorry, your response must not be negative.") continue else: #age was successfully parsed, and we're happy with its value. #we're ready to exit the loop. break if age >= 18: print("You are able to vote in the United States!") else: print("You are not able to vote in the United States.")
#includre <stdio.h> int main() { printf("Aryan Basnet"); return 0; }
void Update() { if (Input.GetKeyDown(KeyCode.Space)) { TakeDamage(20); } } void TakeDamage(int damage) { currentHealth -= damage; healthbar.SetHealth(currentHealth); }
#include<stdio.h> void main() { float x1, y1, x2, y2; printf("Enter the x of point 1 \n",x1); scanf("%f",&x1); printf("Enter the y of point 1 \n",y1); scanf("%f",&y1); printf("Enter the x of point 2 \n",x2); scanf("%f",&x2); printf("Enter the y of point 2 \n",y2); scanf("%f",&y2); float slope = (y2 - y1) / (x2 - x1); if( x1 == x2 ) { printf("the slope is undefined"); } else { printf("the slope is %f", slope); } }
<!DOCTYPE html> <html> <head> ... </head> <body> <div id="root"></div> <script type="text/babel"> const linkData = [ { title: "React - A JavaScript Library for Building User Interfaces", url: "https://reactjs.org", shortUrl: "reactjs.org", excerpt: "React makes it painless to create interactive UIs." }, { title: "React (web framework) - Wikipedia", url: "https://en.wikipedia.org/wiki/React_(web_framework)", shortUrl: "en.wikipedia.org › wiki › React_(web_framework)", excerpt: "React is a JavaScript library for building user interfaces." }, { title: "React (@reactjs) | Twitter", url: "https://twitter.com/reactjs", shortUrl: "twitter.com › reactjs", excerpt: "The latest Tweets from React (@reactjs)." } ]; function Link(props) { return ( <div> <a href={props.url}>{props.title}</a> <div> <h3>{props.shortUrl}</h3> </div> <div>{props.excerpt}</div> </div> ); } function App() { return ( <section> {linkData.map(function(link) { return ( <Link key={link.url} title={link.title} url={link.url} shortUrl={link.shortUrl} excerpt={link.excerpt} /> ); })} </section> ); } ReactDOM.render(<App />, document.getElementById("root")); </script> </body> </html>
>>> input = "[2,3,4,5]" >>> map(float, input.strip('[]').split(',')) [2.0, 3.0, 4.0, 5.0] >>> A = map(float, input.strip('[]').split(',')) >>> print(A, type(A)) ([2.0, 3.0, 4.0, 5.0], <type 'list'>)
MyClass newClassObj = new MyClass(); int[] secondArray = newClassObj.getNumArray();
We can store elements only up to a [10000000] (10^7) in a array of integers
European settlement
// Using hashtable.keySet() package com.java2novice.hashtable; import java.util.Hashtable; import java.util.Set; public class MyHashtableKeys { public static void main(String a[]){ Hashtable<String, String> hm = new Hashtable<String, String>(); //add key-value pair to Hashtable hm.put("first", "FIRST INSERTED"); hm.put("second", "SECOND INSERTED"); hm.put("third","THIRD INSERTED"); System.out.println(hm); Set<String> keys = hm.keySet(); for(String key: keys){ System.out.println(key); } } }
local partA = script.Parent.PartA local partB = script.Parent.PartB local function join(part0, part1, jointClass, parent) local newJoint = Instance.new(jointClass or "ManualWeld") newJoint.Part0 = part0 newJoint.Part1 = part1 newJoint.C0 = CFrame.new() newJoint.C1 = part1.CFrame:toObjectSpace(part0.CFrame) newJoint.Parent = parent or part0 return newJoint end -- Create some joints and break them join(partA, partB) partA:BreakJoints() -- Glue joints are wobbly join(partA, partB, "Glue") partA:BreakJoints() -- Most of the time, joints ought to be put in JointsService join(partA, partB, "Weld", game:GetService("JointsService"))
code { font-size:1.2em; color: #1e1e1e; position: relative; border-radius: 4px; background: #e1e1e1 }
$arr = json_decode($str, true); $names = array_column($arr, "name"); $codes = array_column($arr, "code"); foreach(array_unique($names) as $name){ $new[$name] = array_intersect_key($codes, array_intersect($names, [$name])); } var_dump($new);
var name: string = 'Bulbul'; const age: number = 34; let email: string = 'bulbul.cse@outlook.com';
Location.find({ loc: { $near: { $geometry: { type: "Point", coordinates: coords }, $maxDistance: maxDistance } } }).then((err, locations) => { // do what you want here })
var new_something = Something.new()
@HostListener('window:resize', ['$event']) onResize(event) { event.target.innerWidth; }
ex3.Severity.value_counts().plot(kind='bar')
import math pi = math.pi def PointsInCircum(r,n=100): return [(math.cos(2*pi/n*x)*r,math.sin(2*pi/n*x)*r) for x in range(0,n+1)]
let temp: Criminal[] = [];
To pass data between requests in postman I would use Enviroment or Global Variable Lets say I want to pass my token between requests. Than I would create empty global variable and save the entire token response as json and print the accessToken from response and set the value of global variable to json field by writing like for example: var responseJson = pm.response.json(); console.log( responseJson.accessToken ); pm.globals.set("my_secret_token", responseJson.accessToken );
const data = [ [ {id: 1}, {id: 2} ], [ {id: 3}, {id: 4} ] ]; const newData = [].concat(...data); console.log(newData);
sudo opt/lampp/lampp start
web ansible_host=192.168.1.50
flights_speed %>% ggplot(aes(x=reorder(carrier,speed,na.rm = TRUE), y=speed)) + geom_boxplot() + labs(y="Speed", x="Carrier", subtitle="Reordering Boxplots after removing missing data")