Formula | Identity | Formula | Identity |
---|---|---|---|
sin(π/2–A) | cos A | cos(π/2–A) | sinA |
sin(π/2+A) | cos A | cos(π/2+A) | –sinA |
sin(3π/2–A) | – cos A | cos(3π/2–A) | –sinA |
sin(3π/2+A) | – cos A | cos(3π/2+A) | sinA |
sin(π–A) | sin A | cos(π–A) | –cosA |
sin(π+A) | – sin A | cos(π+A) | –cosA |
sin(2π–A) | – sin A | cos(2π–A) | cosA |
This file contains 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
const index = { | |
'Prelims': '#00FF00', | |
'Pounce Bounce': '#3366cc', | |
'Anime': '#FF00FF', | |
'Reject': '#FF0000' | |
} | |
function myFunction() { | |
const presentation = SlidesApp.getActivePresentation(); | |
const slides = presentation.getSlides(); |
This file contains 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
const fs = require("fs"); | |
const { parse } = require("csv-parse"); | |
const { finished } = require("stream/promises"); | |
const admin = require("firebase-admin"); | |
const serviceAccount = require("./ig-rmp-firebase-adminsdk-bxw6w-9d61f4b78a.json"); | |
admin.initializeApp({ | |
credential: admin.credential.cert(serviceAccount), | |
}); |
This file contains 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
package gitinternals | |
import java.io.File | |
import java.io.FileInputStream | |
import java.util.zip.InflaterInputStream | |
import java.time.LocalDateTime | |
import java.time.ZoneOffset | |
import java.time.format.DateTimeFormatter |
This file contains 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
""" | |
SChema For https://api.politicsandwar.com/graphql | |
""" | |
type Alliance { | |
acceptmem: Boolean | |
acronym: String | |
""" | |
This field will return null unless you are in this alliance and have access to view its bank | |
""" |
This file contains 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
const | |
server = require('express')() | |
server.get('/*',(req,res)=>{ | |
if(req.url){ | |
res.sendFile(__dirname+'/krew-wiki/docs/'+req.url) | |
} | |
else res.sendFile(__dirname+'/krew-wiki/docs/index.html') | |
}) | |
server.listen(8080) |